Rename Server -> EncodeServer, ServerFinder -> EncodeServerFinder, ServerDescription...
[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/encode_server_finder.h"
23 #include "lib/encode_server_description.h"
24 #include <boost/lexical_cast.hpp>
25 #include <boost/foreach.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 (400, 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 (100);
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         BOOST_FOREACH (EncodeServerDescription i, EncodeServerFinder::instance()->servers ()) {
79                 wxListItem list_item;
80                 list_item.SetId (n);
81                 _list->InsertItem (list_item);
82
83                 _list->SetItem (n, 0, std_to_wx (i.host_name ()));
84                 _list->SetItem (n, 1, std_to_wx (lexical_cast<string> (i.threads ())));
85
86                 ++n;
87         }
88 }