diff options
author | David Robillard <d@drobilla.net> | 2012-07-31 00:14:50 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-07-31 00:14:50 +0000 |
commit | 629fb50716083c71146340de97eb8651679ca9fb (patch) | |
tree | 9c5f25fdfd24f3cdb89924062f291a6647580878 /src/gui/PropertiesWindow.cpp | |
parent | 6297b8805c95dd1831ee9a0b9639ae41d00a1473 (diff) | |
download | ingen-629fb50716083c71146340de97eb8651679ca9fb.tar.gz ingen-629fb50716083c71146340de97eb8651679ca9fb.tar.bz2 ingen-629fb50716083c71146340de97eb8651679ca9fb.zip |
Merge Ingen::Shared namespace into Ingen namespace and core libingen library.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4579 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/PropertiesWindow.cpp')
-rw-r--r-- | src/gui/PropertiesWindow.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/gui/PropertiesWindow.cpp b/src/gui/PropertiesWindow.cpp index 6f92d0d3..1a4228b8 100644 --- a/src/gui/PropertiesWindow.cpp +++ b/src/gui/PropertiesWindow.cpp @@ -22,12 +22,13 @@ #include <gtkmm/label.h> #include <gtkmm/spinbutton.h> -#include "raul/log.hpp" -#include "ingen/shared/World.hpp" -#include "ingen/client/NodeModel.hpp" -#include "ingen/client/PluginModel.hpp" #include "App.hpp" #include "PropertiesWindow.hpp" +#include "ingen/Interface.hpp" +#include "ingen/World.hpp" +#include "ingen/client/NodeModel.hpp" +#include "ingen/client/PluginModel.hpp" +#include "raul/log.hpp" #define LOG(s) s << "[PropertiesWindow] " @@ -37,7 +38,6 @@ using namespace Raul; namespace Ingen { using namespace Client; -using namespace Shared; namespace GUI { @@ -105,7 +105,7 @@ PropertiesWindow::present(SharedPtr<const ObjectModel> model) /** Get all the types which this model is an instance of */ static URISet -get_types(Shared::World* world, SharedPtr<const ObjectModel> model) +get_types(World* world, SharedPtr<const ObjectModel> model) { typedef Resource::Properties::const_iterator PropIter; typedef std::pair<PropIter, PropIter> PropRange; @@ -152,7 +152,7 @@ get_types(Shared::World* world, SharedPtr<const ObjectModel> model) /** Get all the properties with domains appropriate to this model */ static URISet -get_properties(Shared::World* world, SharedPtr<const ObjectModel> model) +get_properties(World* world, SharedPtr<const ObjectModel> model) { URISet properties; URISet types = get_types(world, model); @@ -197,7 +197,7 @@ get_properties(Shared::World* world, SharedPtr<const ObjectModel> model) } static Glib::ustring -get_label(Shared::World* world, const LilvNode* node) +get_label(World* world, const LilvNode* node) { LilvNode* rdfs_label = lilv_new_uri( world->lilv_world(), LILV_NS_RDFS "label"); @@ -215,7 +215,7 @@ get_label(Shared::World* world, const LilvNode* node) void PropertiesWindow::add_property(const Raul::URI& uri, const Raul::Atom& value) { - Shared::World* world = _app->world(); + World* world = _app->world(); const unsigned n_rows = _table->property_n_rows() + 1; _table->property_n_rows() = n_rows; @@ -256,7 +256,7 @@ PropertiesWindow::set_object(SharedPtr<const ObjectModel> model) set_title(model->path().chop_scheme() + " Properties - Ingen"); - Shared::World* world = _app->world(); + World* world = _app->world(); LilvNode* rdfs_range = lilv_new_uri( world->lilv_world(), LILV_NS_RDFS "range"); @@ -308,7 +308,7 @@ PropertiesWindow::set_object(SharedPtr<const ObjectModel> model) Gtk::Widget* PropertiesWindow::create_value_widget(const Raul::URI& uri, const Raul::Atom& value) { - Ingen::Shared::Forge& forge = _app->forge(); + Ingen::Forge& forge = _app->forge(); if (value.type() == forge.Int) { Gtk::SpinButton* widget = manage(new Gtk::SpinButton(0.0, 0)); widget->property_numeric() = true; @@ -449,7 +449,7 @@ bad_type: void PropertiesWindow::key_changed() { - Shared::World* world = _app->world(); + World* world = _app->world(); const Gtk::ListStore::Row row = *(_key_combo->get_active()); Glib::ustring prop_uri = row[_combo_columns.uri_col]; |