Right align left-hand-size labels and suffix them with a colon on OS X.
[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 DVDOMATIC_WX_UTIL_H
21 #define DVDOMATIC_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 #ifdef __WXGTK__
28 #include <gtk/gtk.h>
29 #endif
30
31 class wxFilePickerCtrl;
32 class wxSpinCtrl;
33 class wxGridBagSizer;
34
35 #define DVDOMATIC_SIZER_X_GAP 8
36 #define DVDOMATIC_SIZER_Y_GAP 8
37
38 /** @file src/wx/wx_util.h
39  *  @brief Some utility functions and classes.
40  */
41
42 extern void error_dialog (wxWindow *, wxString);
43 extern bool confirm_dialog (wxWindow *, wxString);
44 extern wxStaticText* add_label_to_sizer (wxSizer *, wxWindow *, wxString, bool left, int prop = 0);
45 extern wxStaticText* add_label_to_grid_bag_sizer (wxGridBagSizer *, wxWindow *, wxString, bool, wxGBPosition, wxGBSpan span = wxDefaultSpan);
46 extern std::string wx_to_std (wxString);
47 extern wxString std_to_wx (std::string);
48 extern void dvdomatic_setup_i18n ();
49
50 /** @class ThreadedStaticText
51  *
52  *  @brief A wxStaticText whose content is computed in a separate thread, to avoid holding
53  *  up the GUI while work is done.
54  */
55 class ThreadedStaticText : public wxStaticText
56 {
57 public:
58         ThreadedStaticText (wxWindow* parent, wxString initial, boost::function<std::string ()> fn);
59         ~ThreadedStaticText ();
60
61 private:
62         void run (boost::function<std::string ()> fn);
63         void thread_finished (wxCommandEvent& ev);
64
65         /** Thread to do our work in */
66         boost::thread* _thread;
67         
68         static const int _update_event_id;
69 };
70
71 extern std::string string_client_data (wxClientData* o);
72
73 extern void checked_set (wxFilePickerCtrl* widget, std::string value);
74 extern void checked_set (wxSpinCtrl* widget, int value);
75 extern void checked_set (wxChoice* widget, int value);
76 extern void checked_set (wxChoice* widget, std::string value);
77 extern void checked_set (wxTextCtrl* widget, std::string value);
78 extern void checked_set (wxCheckBox* widget, bool value);
79 extern void checked_set (wxRadioButton* widget, bool value);
80 extern void checked_set (wxStaticText* widget, std::string value);
81
82 /* GTK 2.24.17 has a buggy GtkFileChooserButton and it was put in Ubuntu 13.04.
83    Use our own dir picker as this is the least bad option I can think of.
84 */
85 #if defined(__WXMSW__) || (GTK_MAJOR_VERSION == 2 && GTK_MINOR_VERSION == 24 && GTK_MICRO_VERSION == 17)
86 #define DVDOMATIC_USE_OWN_DIR_PICKER
87 #endif
88
89 #endif