summaryrefslogtreecommitdiffstats
path: root/ClientWindow.hh
diff options
context:
space:
mode:
Diffstat (limited to 'ClientWindow.hh')
-rw-r--r--ClientWindow.hh32
1 files changed, 32 insertions, 0 deletions
diff --git a/ClientWindow.hh b/ClientWindow.hh
new file mode 100644
index 0000000..61a1973
--- /dev/null
+++ b/ClientWindow.hh
@@ -0,0 +1,32 @@
+#ifndef fooclientwindowhhfoo
+#define fooclientwindowhhfoo
+
+#include <gtkmm.h>
+#include <libglademm.h>
+
+class ClientWindow;
+
+#include "ServerInfo.hh"
+
+class ClientWindow : public Gtk::Window {
+public:
+ ClientWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& refGlade);
+ static ClientWindow* create();
+
+ Gtk::Label *nameLabel,
+ *protocolLabel,
+ *indexLabel,
+ *ownerModuleLabel;
+
+ Gtk::Button *closeButton,
+ *toOwnerModuleButton;
+
+ uint32_t owner_module;
+
+ void updateInfo(const ClientInfo &i);
+
+ virtual void onCloseButton();
+ virtual void onToOwnerModuleButton();
+};
+
+#endif