summaryrefslogtreecommitdiff
path: root/src/wx/config_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-11-14 11:39:10 +0000
committerCarl Hetherington <cth@carlh.net>2013-11-14 11:39:10 +0000
commitf60d6f84708e2ff568089732cb9fbdbdc8cef3db (patch)
tree7cd71914258671bdd4ffedf974ad40faef15519c /src/wx/config_dialog.h
parent0eed8c6c205fe85fb1094d7a9b0a2f3d7eeeb698 (diff)
Add server configuration back in.
Diffstat (limited to 'src/wx/config_dialog.h')
-rw-r--r--src/wx/config_dialog.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wx/config_dialog.h b/src/wx/config_dialog.h
index 2492f4899..3a196cce3 100644
--- a/src/wx/config_dialog.h
+++ b/src/wx/config_dialog.h
@@ -32,6 +32,7 @@ class DirPickerCtrl;
class wxNotebook;
class PresetColourConversion;
class PresetColourConversionDialog;
+class ServerDialog;
/** @class ConfigDialog
* @brief A dialogue to edit DCP-o-matic configuration.
@@ -60,10 +61,12 @@ private:
void mail_server_changed ();
void kdm_from_changed ();
void kdm_email_changed ();
+ void use_any_servers_changed ();
void setup_language_sensitivity ();
void make_misc_panel ();
+ void make_servers_panel ();
void make_tms_panel ();
void make_metadata_panel ();
void make_colour_conversions_panel ();
@@ -71,6 +74,7 @@ private:
wxNotebook* _notebook;
wxPanel* _misc_panel;
+ wxPanel* _servers_panel;
wxPanel* _tms_panel;
EditableList<PresetColourConversion, PresetColourConversionDialog>* _colour_conversions_panel;
wxPanel* _metadata_panel;
@@ -97,5 +101,7 @@ private:
wxSpinCtrl* _default_j2k_bandwidth;
wxPanel* _kdm_email_panel;
wxTextCtrl* _kdm_email;
+ wxCheckBox* _use_any_servers;
+ EditableList<std::string, ServerDialog>* _servers_list;
};