Update frames computed label in a separate thread to avoid holding up the GUI.
[dcpomatic.git] / src / wx / wx_util.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file src/wx/wx_util.cc
21  *  @brief Some utility functions and classes.
22  */
23
24 #include <boost/thread.hpp>
25 #include "wx_util.h"
26
27 using namespace std;
28 using namespace boost;
29
30 wxStaticText *
31 add_label_to_sizer (wxSizer* s, wxWindow* p, string t, int prop)
32 {
33         wxStaticText* m = new wxStaticText (p, wxID_ANY, std_to_wx (t));
34         s->Add (m, prop, wxALIGN_CENTER_VERTICAL | wxALL, 6);
35         return m;
36 }
37
38 void
39 error_dialog (wxWindow* parent, string m)
40 {
41         wxMessageDialog* d = new wxMessageDialog (parent, std_to_wx (m), wxT ("DVD-o-matic"), wxOK);
42         d->ShowModal ();
43         d->Destroy ();
44 }
45
46 string
47 wx_to_std (wxString s)
48 {
49         return string (s.mb_str ());
50 }
51
52 wxString
53 std_to_wx (string s)
54 {
55         return wxString (s.c_str(), wxConvUTF8);
56 }
57
58 int const ThreadedStaticText::_update_event_id = 10000;
59
60 /** @param parent Parent for the wxStaticText.
61  *  @param initial Initial text for the wxStaticText while the computation is being run.
62  *  @param fn Function which works out what the wxStaticText content should be and returns it.
63  */
64 ThreadedStaticText::ThreadedStaticText (wxWindow* parent, string initial, function<string ()> fn)
65         : wxStaticText (parent, wxID_ANY, std_to_wx (initial))
66 {
67         Connect (_update_event_id, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (ThreadedStaticText::thread_finished), 0, this);
68         thread t (bind (&ThreadedStaticText::run, this, fn));
69 }
70
71 void
72 ThreadedStaticText::run (function<string ()> fn)
73 {
74         /* Run the thread and post the result to the GUI thread via AddPendingEvent */
75         wxCommandEvent ev (wxEVT_COMMAND_TEXT_UPDATED, _update_event_id);
76         ev.SetString (std_to_wx (fn ()));
77         GetEventHandler()->AddPendingEvent (ev);
78 }
79
80 void
81 ThreadedStaticText::thread_finished (wxCommandEvent& ev)
82 {
83         SetLabel (ev.GetString ());
84 }