From 33b0d86c66158b9aa0e1ab7b4b1c689fd83ab5ac Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 19 Aug 2004 21:54:11 +0000 Subject: sample cache stuff git-svn-id: file:///home/lennart/svn/public/paman/trunk@16 cdefa82f-4ce1-0310-97f5-ab6066f37c3c --- src/SampleWindow.hh | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/SampleWindow.hh (limited to 'src/SampleWindow.hh') 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 +#include + +class SampleWindow; + +#include "ServerInfoManager.hh" + +class SampleWindow : public Gtk::Window { +public: + SampleWindow(BaseObjectType* cobject, const Glib::RefPtr& refGlade); + static SampleWindow* create(); + + Gtk::Label *nameLabel, + *indexLabel, + *volumeLabel, + *sampleTypeLabel, + *durationLabel; + + Gtk::Button *closeButton; + + void updateInfo(const SampleInfo &i); + + virtual void onCloseButton(); +}; + +#endif -- cgit