diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-03-02 00:40:23 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-03-02 00:40:23 +0100 |
| commit | f1c4d11e07f143888fdf82aa533712b675741303 (patch) | |
| tree | 3db2a0fbbbd9561f492e4d397aa8aa60fd5ff178 /src/wx/config_dialog.h | |
| parent | 7bf9cf9c047a2df19e19d557a86f34585453660d (diff) | |
Move config file location config up to the general dialogue.
Diffstat (limited to 'src/wx/config_dialog.h')
| -rw-r--r-- | src/wx/config_dialog.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wx/config_dialog.h b/src/wx/config_dialog.h index 736562384..77b8b2b5e 100644 --- a/src/wx/config_dialog.h +++ b/src/wx/config_dialog.h @@ -98,6 +98,7 @@ public: protected: void add_language_controls(wxGridBagSizer* table, int& r); + void add_config_file_controls(wxGridBagSizer* table, int& r); void add_update_controls(wxGridBagSizer* table, int& r); void config_changed() override; @@ -105,11 +106,16 @@ private: void setup_sensitivity(); void set_language_changed(); void language_changed(); + void config_file_changed(); + void cinemas_file_changed(); + void export_cinemas_file(); void check_for_updates_changed(); void check_for_test_updates_changed(); CheckBox* _set_language; wxChoice* _language; + FilePickerCtrl* _config_file; + FilePickerCtrl* _cinemas_file; CheckBox* _check_for_updates; CheckBox* _check_for_test_updates; }; |
