From 4d38b0a057c9c78c3e400c953b6ab5ea6d2a37b0 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 12 Aug 2004 23:26:31 +0000 Subject: add support for listing clients and modules git-svn-id: file:///home/lennart/svn/public/paman/trunk@5 cdefa82f-4ce1-0310-97f5-ab6066f37c3c --- ModuleWindow.hh | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ModuleWindow.hh (limited to 'ModuleWindow.hh') 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 +#include + +class ModuleWindow; + +#include "ServerInfo.hh" + +class ModuleWindow : public Gtk::Window { +public: + ModuleWindow(BaseObjectType* cobject, const Glib::RefPtr& refGlade); + static ModuleWindow* create(); + + Gtk::Label *nameLabel, + *argumentLabel, + *indexLabel, + *autoloadedLabel, + *usageLabel; + + Gtk::Button *closeButton; + + void updateInfo(const ModuleInfo &i); + + virtual void onCloseButton(); +}; + +#endif -- cgit