Merge branch 'dead-wood'
[dcpomatic.git] / src / wx / config_dialog.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 /** @file src/config_dialog.h
21  *  @brief A dialogue to edit DVD-o-matic configuration.
22  */
23
24 #include <wx/wx.h>
25 #include <wx/spinctrl.h>
26 #include <wx/listctrl.h>
27 #include <wx/filepicker.h>
28
29 class DirPickerCtrl;
30
31 class ServerDescription;
32
33 /** @class ConfigDialog
34  *  @brief A dialogue to edit DVD-o-matic configuration.
35  */
36 class ConfigDialog : public wxDialog
37 {
38 public:
39         ConfigDialog (wxWindow *);
40
41 private:
42         void tms_ip_changed (wxCommandEvent &);
43         void tms_path_changed (wxCommandEvent &);
44         void tms_user_changed (wxCommandEvent &);
45         void tms_password_changed (wxCommandEvent &);
46         void num_local_encoding_threads_changed (wxCommandEvent &);
47         void default_directory_changed (wxCommandEvent &);
48         void colour_lut_changed (wxCommandEvent &);
49         void j2k_bandwidth_changed (wxCommandEvent &);
50         void reference_scaler_changed (wxCommandEvent &);
51         void edit_reference_filters_clicked (wxCommandEvent &);
52         void reference_filters_changed (std::vector<Filter const *>);
53         void add_server_clicked (wxCommandEvent &);
54         void edit_server_clicked (wxCommandEvent &);
55         void remove_server_clicked (wxCommandEvent &);
56         void server_selection_changed (wxListEvent &);
57
58         void add_server_to_control (ServerDescription *);
59         
60         wxTextCtrl* _tms_ip;
61         wxTextCtrl* _tms_path;
62         wxTextCtrl* _tms_user;
63         wxTextCtrl* _tms_password;
64         wxSpinCtrl* _num_local_encoding_threads;
65 #ifdef __WXMSW__        
66         DirPickerCtrl* _default_directory;
67 #else
68         wxDirPickerCtrl* _default_directory;
69 #endif  
70         wxComboBox* _colour_lut;
71         wxSpinCtrl* _j2k_bandwidth;
72         wxComboBox* _reference_scaler;
73         wxStaticText* _reference_filters;
74         wxButton* _reference_filters_button;
75         wxListCtrl* _servers;
76         wxButton* _add_server;
77         wxButton* _edit_server;
78         wxButton* _remove_server;
79 };
80