Basic config dialogue.
[dcpomatic.git] / src / wx / config_dialog.cc
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.cc
21  *  @brief A dialogue to edit DVD-o-matic configuration.
22  */
23
24 #include <iostream>
25 #include <boost/lexical_cast.hpp>
26 #include "lib/config.h"
27 #include "lib/server.h"
28 #include "lib/screen.h"
29 #include "lib/format.h"
30 #include "lib/scaler.h"
31 #include "lib/filter.h"
32 #include "config_dialog.h"
33 #include "wx_util.h"
34 //#include "filter_dialog.h"
35
36 using namespace std;
37 using namespace boost;
38
39 ConfigDialog::ConfigDialog (wxWindow* parent)
40         : wxDialog (parent, wxID_ANY, _("DVD-o-matic Configuration"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
41 {
42         wxFlexGridSizer* table = new wxFlexGridSizer (3, 6, 6);
43         table->AddGrowableCol (1, 1);
44
45         add_label_to_sizer (table, this, "TMS IP address");
46         _tms_ip = new wxTextCtrl (this, wxID_ANY);
47         table->Add (_tms_ip, 1, wxEXPAND);
48         table->AddSpacer (0);
49
50         add_label_to_sizer (table, this, "TMS target path");
51         _tms_path = new wxTextCtrl (this, wxID_ANY);
52         table->Add (_tms_path, 1, wxEXPAND);
53         table->AddSpacer (0);
54
55         add_label_to_sizer (table, this, "TMS user name");
56         _tms_user = new wxTextCtrl (this, wxID_ANY);
57         table->Add (_tms_user, 1, wxEXPAND);
58         table->AddSpacer (0);
59
60         add_label_to_sizer (table, this, "TMS password");
61         _tms_password = new wxTextCtrl (this, wxID_ANY);
62         table->Add (_tms_password, 1, wxEXPAND);
63         table->AddSpacer (0);
64
65         add_label_to_sizer (table, this, "Threads to use for encoding on this host");
66         _num_local_encoding_threads = new wxSpinCtrl (this);
67         table->Add (_num_local_encoding_threads, 1, wxEXPAND);
68         table->AddSpacer (0);
69
70         add_label_to_sizer (table, this, "Colour look-up table");
71         _colour_lut = new wxComboBox (this, wxID_ANY);
72         _colour_lut->Append (wxT ("sRGB"));
73         _colour_lut->Append (wxT ("Rec 709"));
74         _colour_lut->SetSelection (0);
75         table->Add (_colour_lut, 1, wxEXPAND);
76         table->AddSpacer (0);
77
78         add_label_to_sizer (table, this, "JPEG2000 bandwidth");
79         _j2k_bandwidth = new wxSpinCtrl (this, wxID_ANY);
80         table->Add (_j2k_bandwidth, 1, wxEXPAND);
81         add_label_to_sizer (table, this, "MBps");
82
83         add_label_to_sizer (table, this, "Reference scaler for A/B");
84         _reference_scaler = new wxComboBox (this, wxID_ANY);
85         vector<Scaler const *> const sc = Scaler::all ();
86         for (vector<Scaler const *>::const_iterator i = sc.begin(); i != sc.end(); ++i) {
87                 _reference_scaler->Append (std_to_wx ((*i)->name ()));
88         }
89
90         table->Add (_reference_scaler, 1, wxEXPAND);
91         table->AddSpacer (0);
92
93         {
94                 add_label_to_sizer (table, this, "Reference filters for A/B");
95                 wxPanel* p = new wxPanel (this);
96                 wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
97                 _reference_filters = new wxStaticText (p, wxID_ANY, wxT (""));
98                 s->Add (_reference_filters, 1, wxEXPAND);
99                 _reference_filters_button = new wxButton (p, wxID_ANY, _("Edit..."));
100                 s->Add (_reference_filters_button, 0);
101                 table->Add (p, 1, wxEXPAND);
102                 table->AddSpacer (0);
103         }
104
105         add_label_to_sizer (table, this, "Encoding Servers");
106         _servers = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT | wxLC_SINGLE_SEL);
107         wxListItem ip;
108         ip.SetId (0);
109         ip.SetText (_("IP address"));
110         ip.SetWidth (100);
111         _servers->InsertColumn (0, ip);
112         ip.SetId (1);
113         ip.SetText (_("Threads"));
114         ip.SetWidth (90);
115         _servers->InsertColumn (1, ip);
116         table->Add (_servers, 1, wxEXPAND);
117
118         {
119                 wxPanel* p = new wxPanel (this);
120                 wxSizer* s = new wxBoxSizer (wxVERTICAL);
121                 p->SetSizer (s);
122                 _add_server = new wxButton (p, wxID_ANY, _("Add"));
123                 s->Add (_add_server);
124                 _remove_server = new wxButton (p, wxID_ANY, _("Remove"));
125                 s->Add (_remove_server);
126                 table->Add (p, 0);
127         }
128                 
129         Config* config = Config::instance ();
130
131         _tms_ip->SetValue (std_to_wx (config->tms_ip ()));
132         _tms_ip->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (ConfigDialog::tms_ip_changed), 0, this);
133         _tms_path->SetValue (std_to_wx (config->tms_path ()));
134         _tms_path->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (ConfigDialog::tms_path_changed), 0, this);
135         _tms_user->SetValue (std_to_wx (config->tms_user ()));
136         _tms_user->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (ConfigDialog::tms_user_changed), 0, this);
137         _tms_password->SetValue (std_to_wx (config->tms_password ()));
138         _tms_password->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (ConfigDialog::tms_password_changed), 0, this);
139
140         _num_local_encoding_threads->SetRange (1, 128);
141         _num_local_encoding_threads->SetValue (config->num_local_encoding_threads ());
142         _num_local_encoding_threads->Connect (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED, wxCommandEventHandler (ConfigDialog::num_local_encoding_threads_changed), 0, this);
143
144         _colour_lut->Connect (wxID_ANY, wxEVT_COMMAND_COMBOBOX_SELECTED, wxCommandEventHandler (ConfigDialog::colour_lut_changed), 0, this);
145         
146         _j2k_bandwidth->SetRange (50, 250);
147         _j2k_bandwidth->SetValue (config->j2k_bandwidth() / 1e6);
148         _j2k_bandwidth->Connect (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED, wxCommandEventHandler (ConfigDialog::j2k_bandwidth_changed), 0, this);
149
150         _reference_scaler->SetSelection (Scaler::as_index (config->reference_scaler ()));
151         _reference_scaler->Connect (wxID_ANY, wxEVT_COMMAND_COMBOBOX_SELECTED, wxCommandEventHandler (ConfigDialog::reference_scaler_changed), 0, this);
152
153         pair<string, string> p = Filter::ffmpeg_strings (config->reference_filters ());
154         _reference_filters->SetLabel (std_to_wx (p.first + " " + p.second));
155         _reference_filters_button->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (ConfigDialog::edit_reference_filters_clicked), 0, this);
156
157         vector<Server*> servers = config->servers ();
158         for (vector<Server*>::iterator i = servers.begin(); i != servers.end(); ++i) {
159                 add_server_to_control (*i);
160         }
161         
162         _add_server->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (ConfigDialog::add_server_clicked), 0, this);
163         _remove_server->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (ConfigDialog::remove_server_clicked), 0, this);
164
165         _servers->Connect (wxID_ANY, wxEVT_COMMAND_LIST_ITEM_SELECTED, wxListEventHandler (ConfigDialog::server_selection_changed));
166         wxListEvent ev;
167         server_selection_changed (ev);
168
169         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
170         overall_sizer->Add (table, 1, wxEXPAND);
171
172         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
173         if (buttons) {
174                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
175         }
176
177         SetSizer (overall_sizer);
178         overall_sizer->Layout ();
179         overall_sizer->SetSizeHints (this);
180 }
181
182 void
183 ConfigDialog::tms_ip_changed (wxCommandEvent &)
184 {
185         Config::instance()->set_tms_ip (wx_to_std (_tms_ip->GetValue ()));
186 }
187
188 void
189 ConfigDialog::tms_path_changed (wxCommandEvent &)
190 {
191         Config::instance()->set_tms_path (wx_to_std (_tms_path->GetValue ()));
192 }
193
194 void
195 ConfigDialog::tms_user_changed (wxCommandEvent &)
196 {
197         Config::instance()->set_tms_user (wx_to_std (_tms_user->GetValue ()));
198 }
199
200 void
201 ConfigDialog::tms_password_changed (wxCommandEvent &)
202 {
203         Config::instance()->set_tms_password (wx_to_std (_tms_password->GetValue ()));
204 }
205
206
207 void
208 ConfigDialog::num_local_encoding_threads_changed (wxCommandEvent &)
209 {
210         Config::instance()->set_num_local_encoding_threads (_num_local_encoding_threads->GetValue ());
211 }
212
213 void
214 ConfigDialog::colour_lut_changed (wxCommandEvent &)
215 {
216         Config::instance()->set_colour_lut_index (_colour_lut->GetSelection ());
217 }
218
219 void
220 ConfigDialog::j2k_bandwidth_changed (wxCommandEvent &)
221 {
222         Config::instance()->set_j2k_bandwidth (_j2k_bandwidth->GetValue() * 1e6);
223 }
224
225 void
226 ConfigDialog::add_server_to_control (Server* s)
227 {
228         wxListItem item;
229         int const n = _servers->GetItemCount ();
230         item.SetId (n);
231         _servers->InsertItem (item);
232         _servers->SetItem (n, 0, std_to_wx (s->host_name ()));
233         _servers->SetItem (n, 1, std_to_wx (boost::lexical_cast<string> (s->threads ())));
234 }
235
236 void
237 ConfigDialog::add_server_clicked (wxCommandEvent &)
238 {
239         Server s ("localhost", 1);
240         add_server_to_control (&s);
241 }
242
243 void
244 ConfigDialog::remove_server_clicked (wxCommandEvent &)
245 {
246         int i = _servers->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
247         if (i >= 0) {
248                 _servers->DeleteItem (i);
249         }
250 }
251
252 void
253 ConfigDialog::server_selection_changed (wxListEvent& ev)
254 {
255 //      _remove_server->Enable (ev.GetIndex() >= 0);
256 }
257
258 void
259 ConfigDialog::reference_scaler_changed (wxCommandEvent &)
260 {
261         int const n = _reference_scaler->GetSelection ();
262         if (n >= 0) {
263                 Config::instance()->set_reference_scaler (Scaler::from_index (n));
264         }
265 }
266
267 void
268 ConfigDialog::edit_reference_filters_clicked (wxCommandEvent &)
269 {
270 //      FilterDialog d (Config::instance()->reference_filters ());
271 //      d.ActiveChanged.connect (sigc::mem_fun (*this, &ConfigDialog::reference_filters_changed));
272 //      d.run ();
273 }
274
275 void
276 ConfigDialog::reference_filters_changed (vector<Filter const *> f)
277 {
278         Config::instance()->set_reference_filters (f);
279         pair<string, string> p = Filter::ffmpeg_strings (Config::instance()->reference_filters ());
280         _reference_filters->SetLabel (std_to_wx (p.first + " " + p.second));
281 }