summaryrefslogtreecommitdiffstats
path: root/src/SampleWindow.hh
diff options
context:
space:
mode:
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