Merge master.
[dcpomatic.git] / src / wx / wx_util.h
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 #ifndef DCPOMATIC_WX_UTIL_H
21 #define DCPOMATIC_WX_UTIL_H
22
23 #include <wx/wx.h>
24 #include <wx/gbsizer.h>
25 #include <boost/function.hpp>
26 #include <boost/thread.hpp>
27 #include <boost/signals2.hpp>
28 #ifdef __WXGTK__
29 #include <gtk/gtk.h>
30 #endif
31
32 class wxFilePickerCtrl;
33 class wxSpinCtrl;
34 class wxGridBagSizer;
35
36 #define DCPOMATIC_SIZER_X_GAP 8
37 #define DCPOMATIC_SIZER_Y_GAP 8
38 #define DCPOMATIC_DIALOG_BORDER 12
39
40 /** @file src/wx/wx_util.h
41  *  @brief Some utility functions and classes.
42  */
43
44 extern void error_dialog (wxWindow *, wxString);
45 extern bool confirm_dialog (wxWindow *, wxString);
46 extern wxStaticText* add_label_to_sizer (wxSizer *, wxWindow *, wxString, bool left, int prop = 0);
47 extern wxStaticText* add_label_to_grid_bag_sizer (wxGridBagSizer *, wxWindow *, wxString, bool, wxGBPosition, wxGBSpan span = wxDefaultSpan);
48 extern std::string wx_to_std (wxString);
49 extern wxString std_to_wx (std::string);
50 extern void dcpomatic_setup_i18n ();
51 extern void run_gui_loop ();
52
53 /** @class ThreadedStaticText
54  *
55  *  @brief A wxStaticText whose content is computed in a separate thread, to avoid holding
56  *  up the GUI while work is done.
57  */
58 class ThreadedStaticText : public wxStaticText
59 {
60 public:
61         ThreadedStaticText (wxWindow* parent, wxString initial, boost::function<std::string ()> fn);
62         ~ThreadedStaticText ();
63
64         /** Emitted in the UI thread when the text has been set up */
65         boost::signals2::signal<void()> Finished;
66
67 private:
68         void run (boost::function<std::string ()> fn);
69         void thread_finished (wxCommandEvent& ev);
70
71         /** Thread to do our work in */
72         boost::thread* _thread;
73         
74         static const int _update_event_id;
75 };
76
77 extern std::string string_client_data (wxClientData* o);
78
79 extern void checked_set (wxFilePickerCtrl* widget, std::string value);
80 extern void checked_set (wxSpinCtrl* widget, int value);
81 extern void checked_set (wxChoice* widget, int value);
82 extern void checked_set (wxChoice* widget, std::string value);
83 extern void checked_set (wxTextCtrl* widget, std::string value);
84 extern void checked_set (wxCheckBox* widget, bool value);
85 extern void checked_set (wxRadioButton* widget, bool value);
86 extern void checked_set (wxStaticText* widget, std::string value);
87
88 extern int wx_get (wxChoice* widget);
89 extern int wx_get (wxSpinCtrl* widget);
90
91 /* GTK 2.24.17 has a buggy GtkFileChooserButton and it was put in Ubuntu 13.04.
92    This also seems to apply to 2.24.20 in Ubuntu 13.10
93    Use our own dir picker as this is the least bad option I can think of.
94 */
95 #if defined(__WXMSW__) || (GTK_MAJOR_VERSION == 2 && GTK_MINOR_VERSION == 24 && (GTK_MICRO_VERSION == 17 || GTK_MICRO_VERSION == 20))
96 #define DCPOMATIC_USE_OWN_DIR_PICKER
97 #endif
98
99 #endif