summaryrefslogtreecommitdiff
path: root/src/wx/servers_list_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-07-06 13:37:35 +0100
committerCarl Hetherington <cth@carlh.net>2015-07-06 13:37:35 +0100
commit7ae514af0aea1b953a93f88d5507e6c1dd675908 (patch)
treed14505318a517a3f86944fc194d9b4f5ce05a3e3 /src/wx/servers_list_dialog.cc
parent8fb1e87dc19210dc29a1eabc4e410af4a3fb740b (diff)
Better updating of servers list when things change.
Diffstat (limited to 'src/wx/servers_list_dialog.cc')
-rw-r--r--src/wx/servers_list_dialog.cc28
1 files changed, 17 insertions, 11 deletions
diff --git a/src/wx/servers_list_dialog.cc b/src/wx/servers_list_dialog.cc
index 13c6df707..b678da073 100644
--- a/src/wx/servers_list_dialog.cc
+++ b/src/wx/servers_list_dialog.cc
@@ -17,10 +17,11 @@
*/
-#include <boost/lexical_cast.hpp>
-#include "lib/server_finder.h"
#include "servers_list_dialog.h"
#include "wx_util.h"
+#include "lib/server_finder.h"
+#include <boost/lexical_cast.hpp>
+#include <boost/foreach.hpp>
using std::list;
using std::string;
@@ -61,19 +62,24 @@ ServersListDialog::ServersListDialog (wxWindow* parent)
s->Layout ();
s->SetSizeHints (this);
- _server_finder_connection = ServerFinder::instance()->connect (boost::bind (&ServersListDialog::server_found, this, _1));
+ _server_finder_connection = ServerFinder::instance()->ServersListChanged.connect (boost::bind (&ServersListDialog::servers_list_changed, this));
+ servers_list_changed ();
}
void
-ServersListDialog::server_found (ServerDescription s)
+ServersListDialog::servers_list_changed ()
{
- wxListItem list_item;
- int const n = _list->GetItemCount ();
- list_item.SetId (n);
- _list->InsertItem (list_item);
+ _list->DeleteAllItems ();
+
+ int n = 0;
+ BOOST_FOREACH (ServerDescription i, ServerFinder::instance()->servers ()) {
+ wxListItem list_item;
+ list_item.SetId (n);
+ _list->InsertItem (list_item);
- _list->SetItem (n, 0, std_to_wx (s.host_name ()));
- _list->SetItem (n, 1, std_to_wx (lexical_cast<string> (s.threads ())));
+ _list->SetItem (n, 0, std_to_wx (i.host_name ()));
+ _list->SetItem (n, 1, std_to_wx (lexical_cast<string> (i.threads ())));
- _servers.push_back (s);
+ ++n;
+ }
}