summaryrefslogtreecommitdiffstats
path: root/src/ModuleWindow.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/ModuleWindow.hh')
-rw-r--r--src/ModuleWindow.hh29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/ModuleWindow.hh b/src/ModuleWindow.hh
new file mode 100644
index 0000000..c28af52
--- /dev/null
+++ b/src/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