summaryrefslogtreecommitdiffstats
path: root/SourceWindow.hh
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-08-15 11:27:34 +0000
committerLennart Poettering <lennart@poettering.net>2004-08-15 11:27:34 +0000
commit4b682a9eba6590d8fe090f68dda6afe59ae64f85 (patch)
tree75345c90f9174dd45c9b5196645a5054c889b698 /SourceWindow.hh
parentf8b436993e3ea7059984538cd65d50bd50671fe6 (diff)
Move everything to src/ directory
git-svn-id: file:///home/lennart/svn/public/paman/trunk@8 cdefa82f-4ce1-0310-97f5-ab6066f37c3c
Diffstat (limited to 'SourceWindow.hh')
-rw-r--r--SourceWindow.hh32
1 files changed, 0 insertions, 32 deletions
diff --git a/SourceWindow.hh b/SourceWindow.hh
deleted file mode 100644
index 964d64f..0000000
--- a/SourceWindow.hh
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef foosourcewindowhhfoo
-#define foosourcewindowhhfoo
-
-#include <gtkmm.h>
-#include <libglademm.h>
-
-class SourceWindow : public Gtk::Window {
-public:
- SourceWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& refGlade);
- static SourceWindow* create();
-
- Gtk::Label *nameLabel,
- *descriptionLabel,
- *indexLabel,
- *sampleTypeLabel,
- *ownerModuleLabel,
- *monitorOfSinkLabel;
-
- Gtk::Button *closeButton,
- *toParentSinkButton,
- *toOwnerModuleButton;
-
- uint32_t monitor_of_sink, owner_module;
-
- void updateInfo(const SourceInfo &i);
-
- virtual void onCloseButton();
- virtual void onParentSinkButton();
- virtual void onToOwnerModuleButton();
-};
-
-#endif