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