diff options
Diffstat (limited to 'src/gui/PatchView.cpp')
-rw-r--r-- | src/gui/PatchView.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/gui/PatchView.cpp b/src/gui/PatchView.cpp index 5fd643a2..3048a46b 100644 --- a/src/gui/PatchView.cpp +++ b/src/gui/PatchView.cpp @@ -36,7 +36,6 @@ using namespace Raul; namespace Ingen { namespace GUI { - PatchView::PatchView(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& xml) : Gtk::Box(cobject) , _breadcrumb_container(NULL) @@ -61,7 +60,6 @@ PatchView::PatchView(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::X } - void PatchView::set_patch(SharedPtr<PatchModel> patch) { @@ -112,7 +110,6 @@ PatchView::set_patch(SharedPtr<PatchModel> patch) _canvas->grab_focus(); } - SharedPtr<PatchView> PatchView::create(SharedPtr<PatchModel> patch) { @@ -124,7 +121,6 @@ PatchView::create(SharedPtr<PatchModel> patch) return SharedPtr<PatchView>(result); } - void PatchView::on_editable_sig(bool editable) { @@ -132,7 +128,6 @@ PatchView::on_editable_sig(bool editable) _canvas->lock(!editable); } - void PatchView::editable_toggled() { @@ -140,7 +135,6 @@ PatchView::editable_toggled() set_editable(editable); } - void PatchView::set_editable(bool editable) { @@ -148,7 +142,6 @@ PatchView::set_editable(bool editable) _canvas->lock(!editable); } - void PatchView::canvas_item_entered(Gnome::Canvas::Item* item) { @@ -161,7 +154,6 @@ PatchView::canvas_item_entered(Gnome::Canvas::Item* item) signal_object_entered.emit(p->model().get()); } - void PatchView::canvas_item_left(Gnome::Canvas::Item* item) { @@ -176,7 +168,6 @@ PatchView::canvas_item_left(Gnome::Canvas::Item* item) signal_object_left.emit(p->model().get()); } - void PatchView::process_toggled() { @@ -188,7 +179,6 @@ PatchView::process_toggled() (bool)_process_but->get_active()); } - void PatchView::poly_changed() { @@ -197,14 +187,12 @@ PatchView::poly_changed() _poly_spin->get_value_as_int()); } - void PatchView::refresh_clicked() { App::instance().engine()->get(_patch->path()); } - void PatchView::property_changed(const Raul::URI& predicate, const Raul::Atom& value) { @@ -218,6 +206,5 @@ PatchView::property_changed(const Raul::URI& predicate, const Raul::Atom& value) _enable_signal = true; } - } // namespace GUI } // namespace Ingen |