summaryrefslogtreecommitdiffstats
path: root/src/gui/ingen_gui_lv2.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-20 05:51:23 +0000
committerDavid Robillard <d@drobilla.net>2012-03-20 05:51:23 +0000
commit6720dc9cab2d0cb82ca7d45fb143ad4dfcafbf81 (patch)
treeda3df2cd6f430d9f43266353e941c84171c4fb8d /src/gui/ingen_gui_lv2.cpp
parent0a84eeb07fcf02db803079bf5d4c97792ae76766 (diff)
downloadingen-6720dc9cab2d0cb82ca7d45fb143ad4dfcafbf81.tar.gz
ingen-6720dc9cab2d0cb82ca7d45fb143ad4dfcafbf81.tar.bz2
ingen-6720dc9cab2d0cb82ca7d45fb143ad4dfcafbf81.zip
Show entire UI (with menu and status bar) for LV2 UI.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4091 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/ingen_gui_lv2.cpp')
-rw-r--r--src/gui/ingen_gui_lv2.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/ingen_gui_lv2.cpp b/src/gui/ingen_gui_lv2.cpp
index 0004b935..6fde9f93 100644
--- a/src/gui/ingen_gui_lv2.cpp
+++ b/src/gui/ingen_gui_lv2.cpp
@@ -27,7 +27,7 @@
#include "lv2/lv2plug.in/ns/extensions/ui/ui.h"
#include "App.hpp"
-#include "PatchView.hpp"
+#include "PatchBox.hpp"
#define INGEN_LV2_UI_URI "http://drobilla.net/ns/ingen#ui"
@@ -68,7 +68,7 @@ struct IngenLV2UI {
Ingen::Shared::World* world;
IngenLV2AtomSink* sink;
SharedPtr<Ingen::GUI::App> app;
- SharedPtr<Ingen::GUI::PatchView> view;
+ SharedPtr<Ingen::GUI::PatchBox> view;
SharedPtr<Ingen::Interface> engine;
SharedPtr<Ingen::Shared::AtomReader> reader;
SharedPtr<Ingen::Client::SigClientInterface> client;
@@ -137,10 +137,10 @@ instantiate(const LV2UI_Descriptor* descriptor,
ui->app->uris().ingen_Patch));
ui->app->store()->put("path:/", props);
- // Create a PatchView for the root and set as the UI widget
+ // Create a PatchBox for the root and set as the UI widget
SharedPtr<const Ingen::Client::PatchModel> root = PtrCast<const Ingen::Client::PatchModel>(
ui->app->store()->object("path:/"));
- ui->view = Ingen::GUI::PatchView::create(*ui->app, root);
+ ui->view = Ingen::GUI::PatchBox::create(*ui->app, root);
ui->view->unparent();
*widget = ui->view->gobj();