b678da073d498f0e55ebc006fa89dfda85116b28
[dcpomatic.git] / src / wx / servers_list_dialog.cc
1 /*
2     Copyright (C) 2013-2015 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 "servers_list_dialog.h"
21 #include "wx_util.h"
22 #include "lib/server_finder.h"
23 #include <boost/lexical_cast.hpp>
24 #include <boost/foreach.hpp>
25
26 using std::list;
27 using std::string;
28 using boost::lexical_cast;
29
30 ServersListDialog::ServersListDialog (wxWindow* parent)
31         : wxDialog (parent, wxID_ANY, _("Encoding Servers"))
32 {
33         wxBoxSizer* s = new wxBoxSizer (wxVERTICAL);
34         SetSizer (s);
35
36         _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (400, 200), wxLC_REPORT | wxLC_SINGLE_SEL);
37
38         {
39                 wxListItem ip;
40                 ip.SetId (0);
41                 ip.SetText (_("Host"));
42                 ip.SetWidth (300);
43                 _list->InsertColumn (0, ip);
44         }
45
46         {
47                 wxListItem ip;
48                 ip.SetId (1);
49                 ip.SetText (_("Threads"));
50                 ip.SetWidth (100);
51                 _list->InsertColumn (1, ip);
52         }
53
54         s->Add (_list, 1, wxEXPAND | wxALL, 12);
55
56         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
57         if (buttons) {
58                 s->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
59         }
60
61         SetSizer (s);
62         s->Layout ();
63         s->SetSizeHints (this);
64
65         _server_finder_connection = ServerFinder::instance()->ServersListChanged.connect (boost::bind (&ServersListDialog::servers_list_changed, this));
66         servers_list_changed ();
67 }
68
69 void
70 ServersListDialog::servers_list_changed ()
71 {
72         _list->DeleteAllItems ();
73
74         int n = 0;
75         BOOST_FOREACH (ServerDescription i, ServerFinder::instance()->servers ()) {
76                 wxListItem list_item;
77                 list_item.SetId (n);
78                 _list->InsertItem (list_item);
79
80                 _list->SetItem (n, 0, std_to_wx (i.host_name ()));
81                 _list->SetItem (n, 1, std_to_wx (lexical_cast<string> (i.threads ())));
82
83                 ++n;
84         }
85 }