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