summaryrefslogtreecommitdiffstats
path: root/src/gui/PatchView.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-19 02:24:38 +0000
committerDavid Robillard <d@drobilla.net>2012-08-19 02:24:38 +0000
commit800c329a0b77f9044923885abe0728028eca8350 (patch)
treef2d4a9d06fd6978e193de95ba60bfffe3d15a998 /src/gui/PatchView.cpp
parent317627ef40f7654c298aa1ac707851c852259e3a (diff)
downloadingen-800c329a0b77f9044923885abe0728028eca8350.tar.gz
ingen-800c329a0b77f9044923885abe0728028eca8350.tar.bz2
ingen-800c329a0b77f9044923885abe0728028eca8350.zip
Patch => Graph
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4721 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/PatchView.cpp')
-rw-r--r--src/gui/PatchView.cpp206
1 files changed, 0 insertions, 206 deletions
diff --git a/src/gui/PatchView.cpp b/src/gui/PatchView.cpp
deleted file mode 100644
index efb37d11..00000000
--- a/src/gui/PatchView.cpp
+++ /dev/null
@@ -1,206 +0,0 @@
-/*
- This file is part of Ingen.
- Copyright 2007-2012 David Robillard <http://drobilla.net/>
-
- Ingen is free software: you can redistribute it and/or modify it under the
- terms of the GNU Affero General Public License as published by the Free
- Software Foundation, either version 3 of the License, or any later version.
-
- Ingen is distributed in the hope that it will be useful, but WITHOUT ANY
- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- A PARTICULAR PURPOSE. See the GNU Affero General Public License for details.
-
- You should have received a copy of the GNU Affero General Public License
- along with Ingen. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#include <cassert>
-#include <fstream>
-
-#include "ingen/Interface.hpp"
-#include "ingen/client/PatchModel.hpp"
-
-#include "App.hpp"
-#include "LoadPluginWindow.hpp"
-#include "NewSubpatchWindow.hpp"
-#include "PatchCanvas.hpp"
-#include "PatchTreeWindow.hpp"
-#include "PatchView.hpp"
-#include "WidgetFactory.hpp"
-
-using namespace std;
-
-namespace Ingen {
-
-using namespace Client;
-
-namespace GUI {
-
-PatchView::PatchView(BaseObjectType* cobject,
- const Glib::RefPtr<Gtk::Builder>& xml)
- : Gtk::Box(cobject)
- , _app(NULL)
- , _breadcrumb_container(NULL)
- , _enable_signal(true)
-{
- property_visible() = false;
-
- xml->get_widget("patch_view_breadcrumb_container", _breadcrumb_container);
- xml->get_widget("patch_view_toolbar", _toolbar);
- xml->get_widget("patch_view_process_but", _process_but);
- xml->get_widget("patch_view_poly_spin", _poly_spin);
- xml->get_widget("patch_view_refresh_but", _refresh_but);
- xml->get_widget("patch_view_save_but", _save_but);
- xml->get_widget("patch_view_zoom_full_but", _zoom_full_but);
- xml->get_widget("patch_view_zoom_normal_but", _zoom_normal_but);
- xml->get_widget("patch_view_scrolledwindow", _canvas_scrolledwindow);
-
- _toolbar->set_toolbar_style(Gtk::TOOLBAR_ICONS);
- _canvas_scrolledwindow->property_hadjustment().get_value()->set_step_increment(10);
- _canvas_scrolledwindow->property_vadjustment().get_value()->set_step_increment(10);
-}
-
-void
-PatchView::init(App& app)
-{
- _app = &app;
-}
-
-void
-PatchView::set_patch(SharedPtr<const PatchModel> patch)
-{
- assert(!_canvas); // FIXME: remove
-
- assert(_breadcrumb_container); // ensure created
-
- _patch = patch;
- _canvas = SharedPtr<PatchCanvas>(new PatchCanvas(*_app, patch, 1600*2, 1200*2));
- _canvas->build();
-
- _canvas_scrolledwindow->add(_canvas->widget());
-
- _poly_spin->set_range(1, 128);
- _poly_spin->set_increments(1, 4);
- _poly_spin->set_value(patch->internal_poly());
-
- for (GraphObject::Properties::const_iterator i = patch->properties().begin();
- i != patch->properties().end(); ++i)
- property_changed(i->first, i->second);
-
- // Connect model signals to track state
- patch->signal_property().connect(
- sigc::mem_fun(this, &PatchView::property_changed));
-
- // Connect widget signals to do things
- _process_but->signal_toggled().connect(
- sigc::mem_fun(this, &PatchView::process_toggled));
- _refresh_but->signal_clicked().connect(
- sigc::mem_fun(this, &PatchView::refresh_clicked));
-
- _zoom_normal_but->signal_clicked().connect(sigc::bind(sigc::mem_fun(
- _canvas.get(), &PatchCanvas::set_zoom), 1.0));
-
- _zoom_full_but->signal_clicked().connect(
- sigc::mem_fun(_canvas.get(), &PatchCanvas::zoom_full));
-
- _poly_spin->signal_value_changed().connect(
- sigc::mem_fun(*this, &PatchView::poly_changed));
-
- #if 0
- _canvas->signal_item_entered.connect(
- sigc::mem_fun(*this, &PatchView::canvas_item_entered));
-
- _canvas->signal_item_left.connect(
- sigc::mem_fun(*this, &PatchView::canvas_item_left));
- #endif
-
- _canvas->widget().grab_focus();
-}
-
-SharedPtr<PatchView>
-PatchView::create(App& app, SharedPtr<const PatchModel> patch)
-{
- PatchView* result = NULL;
- Glib::RefPtr<Gtk::Builder> xml = WidgetFactory::create("warehouse_win");
- xml->get_widget_derived("patch_view_box", result);
- result->init(app);
- result->set_patch(patch);
- return SharedPtr<PatchView>(result);
-}
-
-#if 0
-void
-PatchView::canvas_item_entered(Gnome::Canvas::Item* item)
-{
- NodeModule* m = dynamic_cast<NodeModule*>(item);
- if (m)
- signal_object_entered.emit(m->block().get());
-
- const Port* p = dynamic_cast<const Port*>(item);
- if (p)
- signal_object_entered.emit(p->model().get());
-}
-
-void
-PatchView::canvas_item_left(Gnome::Canvas::Item* item)
-{
- NodeModule* m = dynamic_cast<NodeModule*>(item);
- if (m) {
- signal_object_left.emit(m->block().get());
- return;
- }
-
- const Port* p = dynamic_cast<const Port*>(item);
- if (p)
- signal_object_left.emit(p->model().get());
-}
-#endif
-
-void
-PatchView::process_toggled()
-{
- if (!_enable_signal)
- return;
-
- _app->interface()->set_property(
- _patch->uri(),
- _app->uris().ingen_enabled,
- _app->forge().make((bool)_process_but->get_active()));
-}
-
-void
-PatchView::poly_changed()
-{
- const int poly = _poly_spin->get_value_as_int();
- if (_enable_signal && poly != (int)_patch->internal_poly()) {
- _app->interface()->set_property(
- _patch->uri(),
- _app->uris().ingen_polyphony,
- _app->forge().make(poly));
- }
-}
-
-void
-PatchView::refresh_clicked()
-{
- _app->interface()->get(_patch->uri());
-}
-
-void
-PatchView::property_changed(const Raul::URI& predicate, const Raul::Atom& value)
-{
- _enable_signal = false;
- if (predicate == _app->uris().ingen_enabled) {
- if (value.type() == _app->uris().forge.Bool) {
- _process_but->set_active(value.get_bool());
- }
- } else if (predicate == _app->uris().ingen_polyphony) {
- if (value.type() == _app->uris().forge.Int) {
- _poly_spin->set_value(value.get_int32());
- }
- }
- _enable_signal = true;
-}
-
-} // namespace GUI
-} // namespace Ingen