summaryrefslogtreecommitdiffstats
path: root/src/SampleWindow.hh
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-08-19 21:54:11 +0000
committerLennart Poettering <lennart@poettering.net>2004-08-19 21:54:11 +0000
commit33b0d86c66158b9aa0e1ab7b4b1c689fd83ab5ac (patch)
tree507283ce15b901dc31a372c0e9c0c1325f66ab2c /src/SampleWindow.hh
parent72f6cf7ca0d0baaef7fb0171e0d14cce50d1ef04 (diff)
sample cache stuff
git-svn-id: file:///home/lennart/svn/public/paman/trunk@16 cdefa82f-4ce1-0310-97f5-ab6066f37c3c
Diffstat (limited to 'src/SampleWindow.hh')
-rw-r--r--src/SampleWindow.hh29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/SampleWindow.hh b/src/SampleWindow.hh
new file mode 100644
index 0000000..61c8535
--- /dev/null
+++ b/src/SampleWindow.hh
@@ -0,0 +1,29 @@
+#ifndef foosamplewindowhhfoo
+#define foosamplewindowhhfoo
+
+#include <gtkmm.h>
+#include <libglademm.h>
+
+class SampleWindow;
+
+#include "ServerInfoManager.hh"
+
+class SampleWindow : public Gtk::Window {
+public:
+ SampleWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& refGlade);
+ static SampleWindow* create();
+
+ Gtk::Label *nameLabel,
+ *indexLabel,
+ *volumeLabel,
+ *sampleTypeLabel,
+ *durationLabel;
+
+ Gtk::Button *closeButton;
+
+ void updateInfo(const SampleInfo &i);
+
+ virtual void onCloseButton();
+};
+
+#endif