summaryrefslogtreecommitdiffstats
path: root/ModuleWindow.hh
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-08-12 23:26:31 +0000
committerLennart Poettering <lennart@poettering.net>2004-08-12 23:26:31 +0000
commit4d38b0a057c9c78c3e400c953b6ab5ea6d2a37b0 (patch)
tree1ee7b5dbf2b1f210169ce7453b8f11d098581150 /ModuleWindow.hh
parent1f9bb4bea5427c1bf236e8698855048ef35f3a81 (diff)
add support for listing clients and modules
git-svn-id: file:///home/lennart/svn/public/paman/trunk@5 cdefa82f-4ce1-0310-97f5-ab6066f37c3c
Diffstat (limited to 'ModuleWindow.hh')
-rw-r--r--ModuleWindow.hh29
1 files changed, 29 insertions, 0 deletions
diff --git a/ModuleWindow.hh b/ModuleWindow.hh
new file mode 100644
index 0000000..c28af52
--- /dev/null
+++ b/ModuleWindow.hh
@@ -0,0 +1,29 @@
+#ifndef foomodulewindowhhfoo
+#define foomodulewindowhhfoo
+
+#include <gtkmm.h>
+#include <libglademm.h>
+
+class ModuleWindow;
+
+#include "ServerInfo.hh"
+
+class ModuleWindow : public Gtk::Window {
+public:
+ ModuleWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& refGlade);
+ static ModuleWindow* create();
+
+ Gtk::Label *nameLabel,
+ *argumentLabel,
+ *indexLabel,
+ *autoloadedLabel,
+ *usageLabel;
+
+ Gtk::Button *closeButton;
+
+ void updateInfo(const ModuleInfo &i);
+
+ virtual void onCloseButton();
+};
+
+#endif