Very basics of colour conversion configuration.
[dcpomatic.git] / src / wx / server_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 #include "lib/server.h"
21 #include "server_dialog.h"
22 #include "wx_util.h"
23
24 using boost::shared_ptr;
25
26 ServerDialog::ServerDialog (wxWindow* parent, shared_ptr<ServerDescription> server)
27         : wxDialog (parent, wxID_ANY, _("Server"))
28 {
29         if (server) {
30                 _server = server;
31         } else {
32                 _server.reset (new ServerDescription (wx_to_std (N_("localhost")), 1));
33         }
34                 
35         wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
36         table->AddGrowableCol (1, 1);
37
38         add_label_to_sizer (table, this, _("Host name or IP address"), true);
39         _host = new wxTextCtrl (this, wxID_ANY);
40         table->Add (_host, 1, wxEXPAND);
41
42         add_label_to_sizer (table, this, _("Threads to use"), true);
43         _threads = new wxSpinCtrl (this, wxID_ANY);
44         table->Add (_threads, 1, wxEXPAND);
45
46         _host->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&ServerDialog::host_changed, this));
47         _threads->SetRange (0, 256);
48         _threads->Bind (wxEVT_COMMAND_SPINCTRL_UPDATED, boost::bind (&ServerDialog::threads_changed, this));
49
50         _host->SetValue (std_to_wx (_server->host_name ()));
51         _threads->SetValue (_server->threads ());
52
53         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
54         overall_sizer->Add (table, 1, wxEXPAND | wxALL, 6);
55
56         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
57         if (buttons) {
58                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
59         }
60
61         SetSizer (overall_sizer);
62         overall_sizer->Layout ();
63         overall_sizer->SetSizeHints (this);
64 }
65
66 void
67 ServerDialog::host_changed ()
68 {
69         _server->set_host_name (wx_to_std (_host->GetValue ()));
70 }
71
72 void
73 ServerDialog::threads_changed ()
74 {
75         _server->set_threads (_threads->GetValue ());
76 }
77
78 shared_ptr<ServerDescription>
79 ServerDialog::server () const
80 {
81         return _server;
82 }
83