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