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