diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-05-02 22:36:41 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-05-02 22:36:41 +0100 |
| commit | ccf029f29d128a6cc92a8d77b1e0d0e483fd1beb (patch) | |
| tree | db7759ca24e28c1b350d9516a9f83b369dcaa829 /src/wx/config_dialog.h | |
| parent | a8ed320d887056ab84dd7068e9a9560d955e416d (diff) | |
Back-port tabbed config dialog from 1.0
Diffstat (limited to 'src/wx/config_dialog.h')
| -rw-r--r-- | src/wx/config_dialog.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/wx/config_dialog.h b/src/wx/config_dialog.h index f6f3b3707..598279e86 100644 --- a/src/wx/config_dialog.h +++ b/src/wx/config_dialog.h @@ -18,7 +18,7 @@ */ /** @file src/config_dialog.h - * @brief A dialogue to edit DVD-o-matic configuration. + * @brief A dialogue to edit DCP-o-matic configuration. */ #include <wx/wx.h> @@ -27,11 +27,12 @@ #include <wx/filepicker.h> class DirPickerCtrl; +class wxNotebook; class ServerDescription; /** @class ConfigDialog - * @brief A dialogue to edit DVD-o-matic configuration. + * @brief A dialogue to edit DCP-o-matic configuration. */ class ConfigDialog : public wxDialog { @@ -59,6 +60,16 @@ private: void add_server_to_control (ServerDescription *); void setup_language_sensitivity (); + void make_misc_panel (); + void make_tms_panel (); + void make_ab_panel (); + void make_servers_panel (); + + wxNotebook* _notebook; + wxPanel* _misc_panel; + wxPanel* _tms_panel; + wxPanel* _ab_panel; + wxPanel* _servers_panel; wxCheckBox* _set_language; wxChoice* _language; wxTextCtrl* _tms_ip; |
