summaryrefslogtreecommitdiffstats
path: root/src/gui/NewSubpatchWindow.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-10-22 03:08:06 +0000
committerDavid Robillard <d@drobilla.net>2011-10-22 03:08:06 +0000
commitac1d6d135bda8d739fdb8bf564f89c38b664c097 (patch)
treed750da79dd88b64ab2a88cca1651c2a5a240bd72 /src/gui/NewSubpatchWindow.cpp
parent143968e38cc2f058dd7c500e984904a39864d652 (diff)
downloadingen-ac1d6d135bda8d739fdb8bf564f89c38b664c097.tar.gz
ingen-ac1d6d135bda8d739fdb8bf564f89c38b664c097.tar.bz2
ingen-ac1d6d135bda8d739fdb8bf564f89c38b664c097.zip
De-singleton-ify GUI.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3584 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/NewSubpatchWindow.cpp')
-rw-r--r--src/gui/NewSubpatchWindow.cpp17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/gui/NewSubpatchWindow.cpp b/src/gui/NewSubpatchWindow.cpp
index a21c65f8..504bc506 100644
--- a/src/gui/NewSubpatchWindow.cpp
+++ b/src/gui/NewSubpatchWindow.cpp
@@ -77,8 +77,8 @@ NewSubpatchWindow::name_changed()
if (!Path::is_valid_name(name)) {
_message_label->set_text("Name contains invalid characters.");
_ok_button->property_sensitive() = false;
- } else if (App::instance().store()->find(_patch->path().base() + name)
- != App::instance().store()->end()) {
+ } else if (_app->store()->find(_patch->path().base() + name)
+ != _app->store()->end()) {
_message_label->set_text("An object already exists with that name.");
_ok_button->property_sensitive() = false;
} else if (name.length() == 0) {
@@ -93,21 +93,20 @@ NewSubpatchWindow::name_changed()
void
NewSubpatchWindow::ok_clicked()
{
- App& app = App::instance();
const Path path = _patch->path().base() + Path::nameify(_name_entry->get_text());
const uint32_t poly = _poly_spinbutton->get_value_as_int();
// Create patch
Resource::Properties props;
- props.insert(make_pair(app.uris().rdf_type, app.uris().ingen_Patch));
- props.insert(make_pair(app.uris().ingen_polyphony, Atom(int32_t(poly))));
- props.insert(make_pair(app.uris().ingen_enabled, Atom(bool(true))));
- app.engine()->put(path, props, Resource::INTERNAL);
+ props.insert(make_pair(_app->uris().rdf_type, _app->uris().ingen_Patch));
+ props.insert(make_pair(_app->uris().ingen_polyphony, Atom(int32_t(poly))));
+ props.insert(make_pair(_app->uris().ingen_enabled, Atom(bool(true))));
+ _app->engine()->put(path, props, Resource::INTERNAL);
// Set external (node perspective) properties
props = _initial_data;
- props.insert(make_pair(app.uris().rdf_type, app.uris().ingen_Patch));
- app.engine()->put(path, _initial_data, Resource::EXTERNAL);
+ props.insert(make_pair(_app->uris().rdf_type, _app->uris().ingen_Patch));
+ _app->engine()->put(path, _initial_data, Resource::EXTERNAL);
hide();
}