Setup Butler::_prepare_only_proxy on construction.
[dcpomatic.git] / src / wx / servers_list_dialog.cc
1 /*
2     Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "servers_list_dialog.h"
22 #include "wx_util.h"
23 #include "lib/encode_server_finder.h"
24 #include "lib/encode_server_description.h"
25 #include <boost/lexical_cast.hpp>
26
27 using std::list;
28 using std::string;
29 using boost::lexical_cast;
30
31 ServersListDialog::ServersListDialog (wxWindow* parent)
32         : wxDialog (parent, wxID_ANY, _("Encoding Servers"))
33 {
34         wxBoxSizer* s = new wxBoxSizer (wxVERTICAL);
35         SetSizer (s);
36
37         _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (500, 200), wxLC_REPORT | wxLC_SINGLE_SEL);
38
39         {
40                 wxListItem ip;
41                 ip.SetId (0);
42                 ip.SetText (_("Host"));
43                 ip.SetWidth (300);
44                 _list->InsertColumn (0, ip);
45         }
46
47         {
48                 wxListItem ip;
49                 ip.SetId (1);
50                 ip.SetText (_("Threads"));
51                 ip.SetWidth (150);
52                 _list->InsertColumn (1, ip);
53         }
54
55         s->Add (_list, 1, wxEXPAND | wxALL, 12);
56
57         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
58         if (buttons) {
59                 s->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
60         }
61
62         SetSizer (s);
63         s->Layout ();
64         s->SetSizeHints (this);
65
66         _server_finder_connection = EncodeServerFinder::instance()->ServersListChanged.connect (
67                 boost::bind (&ServersListDialog::servers_list_changed, this)
68                 );
69         servers_list_changed ();
70 }
71
72 void
73 ServersListDialog::servers_list_changed ()
74 {
75         _list->DeleteAllItems ();
76
77         int n = 0;
78
79         for (auto i: EncodeServerFinder::instance()->servers()) {
80                 wxListItem list_item;
81                 list_item.SetId (n);
82                 _list->InsertItem (list_item);
83
84                 _list->SetItem (n, 0, std_to_wx (i.host_name ()));
85                 if (i.current_link_version()) {
86                         _list->SetItem (n, 1, std_to_wx (lexical_cast<string> (i.threads ())));
87                 } else {
88                         _list->SetItem (n, 1, _("Incorrect version"));
89                 }
90                 ++n;
91         }
92 }