summaryrefslogtreecommitdiff
path: root/src/wx/config_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-05-04 11:08:46 +0100
committerCarl Hetherington <cth@carlh.net>2013-05-04 11:08:46 +0100
commit1738f2e7336734190bed7e94ce3d691d4a9c9e4c (patch)
tree5e057dd6522e72a443a5be3d2ef4dd554c783c53 /src/wx/config_dialog.h
parentcc56fc111c742ed5ec072fa0bbe0b950150d40c1 (diff)
Add config options for some of the DCP XML metadata (#122).
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 c926b0937..526480912 100644
--- a/src/wx/config_dialog.h
+++ b/src/wx/config_dialog.h
@@ -58,12 +58,15 @@ private:
void server_selection_changed (wxListEvent &);
void default_format_changed (wxCommandEvent &);
void default_dcp_content_type_changed (wxCommandEvent &);
+ void issuer_changed (wxCommandEvent &);
+ void creator_changed (wxCommandEvent &);
void add_server_to_control (ServerDescription *);
void setup_language_sensitivity ();
void make_misc_panel ();
void make_tms_panel ();
+ void make_metadata_panel ();
void make_ab_panel ();
void make_servers_panel ();
@@ -72,6 +75,7 @@ private:
wxPanel* _tms_panel;
wxPanel* _ab_panel;
wxPanel* _servers_panel;
+ wxPanel* _metadata_panel;
wxCheckBox* _set_language;
wxChoice* _language;
wxChoice* _default_format;
@@ -94,5 +98,7 @@ private:
wxButton* _add_server;
wxButton* _edit_server;
wxButton* _remove_server;
+ wxTextCtrl* _issuer;
+ wxTextCtrl* _creator;
};