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