summaryrefslogtreecommitdiffstats
path: root/src/gui/PatchTreeWindow.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
committerDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
commit9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2 (patch)
tree089c1366a567dfbf88c0473288236b276ef24bf6 /src/gui/PatchTreeWindow.cpp
parent987710474b824cb92d83ff6fa7a090f50e10756f (diff)
downloadingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.gz
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.bz2
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.zip
Squeeze blank lines and delete trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3152 a436a847-0d15-0410-975c-d299462d15a1
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