summaryrefslogtreecommitdiffstats
path: root/src/gui/PatchTreeWindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/PatchTreeWindow.cpp')
-rw-r--r--src/gui/PatchTreeWindow.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/gui/PatchTreeWindow.cpp b/src/gui/PatchTreeWindow.cpp
index b1462459..637c41f6 100644
--- a/src/gui/PatchTreeWindow.cpp
+++ b/src/gui/PatchTreeWindow.cpp
@@ -34,7 +34,6 @@ using namespace Raul;
namespace Ingen {
namespace GUI {
-
PatchTreeWindow::PatchTreeWindow(BaseObjectType* cobject,
const Glib::RefPtr<Gnome::Glade::Xml>& xml)
: Window(cobject)
@@ -68,14 +67,12 @@ PatchTreeWindow::PatchTreeWindow(BaseObjectType* cobject,
_patches_treeview->columns_autosize();
}
-
void
PatchTreeWindow::init(ClientStore& store)
{
store.signal_new_object.connect(sigc::mem_fun(this, &PatchTreeWindow::new_object));
}
-
void
PatchTreeWindow::new_object(SharedPtr<ObjectModel> object)
{
@@ -84,7 +81,6 @@ PatchTreeWindow::new_object(SharedPtr<ObjectModel> object)
add_patch(patch);
}
-
void
PatchTreeWindow::add_patch(SharedPtr<PatchModel> pm)
{
@@ -126,7 +122,6 @@ PatchTreeWindow::add_patch(SharedPtr<PatchModel> pm)
pm));
}
-
void
PatchTreeWindow::remove_patch(SharedPtr<PatchModel> pm)
{
@@ -135,7 +130,6 @@ PatchTreeWindow::remove_patch(SharedPtr<PatchModel> pm)
_patch_treestore->erase(i);
}
-
Gtk::TreeModel::iterator
PatchTreeWindow::find_patch(
Gtk::TreeModel::Children root,
@@ -154,7 +148,6 @@ PatchTreeWindow::find_patch(
return root.end();
}
-
/** Show the context menu for the selected patch in the patches treeview.
*/
void
@@ -169,7 +162,6 @@ PatchTreeWindow::show_patch_menu(GdkEventButton* ev)
}
}
-
void
PatchTreeWindow::event_patch_activated(const Gtk::TreeModel::Path& path, Gtk::TreeView::Column* col)
{
@@ -180,7 +172,6 @@ PatchTreeWindow::event_patch_activated(const Gtk::TreeModel::Path& path, Gtk::Tr
App::instance().window_factory()->present_patch(pm);
}
-
void
PatchTreeWindow::event_patch_enabled_toggled(const Glib::ustring& path_str)
{
@@ -196,7 +187,6 @@ PatchTreeWindow::event_patch_enabled_toggled(const Glib::ustring& path_str)
App::instance().uris().ingen_enabled, (bool)!pm->enabled());
}
-
void
PatchTreeWindow::patch_property_changed(const URI& key, const Atom& value,
SharedPtr<PatchModel> patch)
@@ -215,7 +205,6 @@ PatchTreeWindow::patch_property_changed(const URI& key, const Atom& value,
_enable_signal = true;
}
-
void
PatchTreeWindow::patch_moved(SharedPtr<PatchModel> patch)
{
@@ -234,6 +223,5 @@ PatchTreeWindow::patch_moved(SharedPtr<PatchModel> patch)
_enable_signal = true;
}
-
} // namespace GUI
} // namespace Ingen