Supporters update.
[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
22 #include "servers_list_dialog.h"
23 #include "wx_util.h"
24 #include "lib/encode_server_finder.h"
25 #include "lib/encode_server_description.h"
26 #include <boost/lexical_cast.hpp>
27
28
29 using std::list;
30 using std::string;
31 using boost::lexical_cast;
32
33
34 ServersListDialog::ServersListDialog (wxWindow* parent)
35         : wxDialog (parent, wxID_ANY, _("Encoding Servers"))
36 {
37         wxBoxSizer* s = new wxBoxSizer (wxVERTICAL);
38         SetSizer (s);
39
40         _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (500, 200), wxLC_REPORT | wxLC_SINGLE_SEL);
41
42         {
43                 wxListItem ip;
44                 ip.SetId (0);
45                 ip.SetText (_("Host"));
46                 ip.SetWidth (300);
47                 _list->InsertColumn (0, ip);
48         }
49
50         {
51                 wxListItem ip;
52                 ip.SetId (1);
53                 ip.SetText (_("Threads"));
54                 ip.SetWidth (150);
55                 _list->InsertColumn (1, ip);
56         }
57
58         s->Add (_list, 1, wxEXPAND | wxALL, 12);
59
60         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
61         if (buttons) {
62                 s->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
63         }
64
65         SetSizer (s);
66         s->Layout ();
67         s->SetSizeHints (this);
68
69         _server_finder_connection = EncodeServerFinder::instance()->ServersListChanged.connect (
70                 boost::bind (&ServersListDialog::servers_list_changed, this)
71                 );
72         servers_list_changed ();
73 }
74
75 void
76 ServersListDialog::servers_list_changed ()
77 {
78         _list->DeleteAllItems ();
79
80         int n = 0;
81
82         for (auto i: EncodeServerFinder::instance()->servers()) {
83                 wxListItem list_item;
84                 list_item.SetId (n);
85                 _list->InsertItem (list_item);
86
87                 _list->SetItem (n, 0, std_to_wx (i.host_name ()));
88                 if (i.current_link_version()) {
89                         _list->SetItem (n, 1, std_to_wx (lexical_cast<string> (i.threads ())));
90                 } else {
91                         _list->SetItem (n, 1, _("Incorrect version"));
92                 }
93                 ++n;
94         }
95 }