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