From 72f6cf7ca0d0baaef7fb0171e0d14cce50d1ef04 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 18 Aug 2004 01:01:12 +0000 Subject: add support for statwindow git-svn-id: file:///home/lennart/svn/public/paman/trunk@15 cdefa82f-4ce1-0310-97f5-ab6066f37c3c --- src/StatWindow.hh | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/StatWindow.hh (limited to 'src/StatWindow.hh') diff --git a/src/StatWindow.hh b/src/StatWindow.hh new file mode 100644 index 0000000..092404a --- /dev/null +++ b/src/StatWindow.hh @@ -0,0 +1,32 @@ +#ifndef foostatwindowhhfoo +#define foostatwindowhhfoo + +#include +#include + +class StatWindow; + +#include "ServerInfoManager.hh" + +class StatWindow : public Gtk::Window { +public: + StatWindow(BaseObjectType* cobject, const Glib::RefPtr& refGlade); + virtual ~StatWindow(); + static StatWindow* create(); + + Gtk::Label *totalLabel, + *totalSizeLabel, + *allocatedLabel, + *allocatedSizeLabel; + + Gtk::Button *closeButton, *refreshButton; + + virtual void onCloseButton(); + virtual void onRefreshButton(); + + struct pa_operation *operation; + + virtual void present(); +}; + +#endif -- cgit