summaryrefslogtreecommitdiffstats
path: root/src/gui/PropertiesWindow.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-01-21 00:41:34 +0100
committerDavid Robillard <d@drobilla.net>2018-01-21 00:56:50 +0100
commit44f7ad5222d824d81dc743045d5887418847e74e (patch)
tree1b41535ac00b8b225a25dba2873b064cb074bfa9 /src/gui/PropertiesWindow.hpp
parent90fca083052880479ad90d870e556f0648e32106 (diff)
downloadingen-44f7ad5222d824d81dc743045d5887418847e74e.tar.gz
ingen-44f7ad5222d824d81dc743045d5887418847e74e.tar.bz2
ingen-44f7ad5222d824d81dc743045d5887418847e74e.zip
Add URI class and remove use of Raul::URI
Diffstat (limited to 'src/gui/PropertiesWindow.hpp')
-rw-r--r--src/gui/PropertiesWindow.hpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/gui/PropertiesWindow.hpp b/src/gui/PropertiesWindow.hpp
index c9a2c9f4..f4a8dd0d 100644
--- a/src/gui/PropertiesWindow.hpp
+++ b/src/gui/PropertiesWindow.hpp
@@ -76,19 +76,19 @@ private:
Gtk::TreeModelColumn<Glib::ustring> uri_col;
};
- void add_property(const Raul::URI& key, const Atom& value);
- void change_property(const Raul::URI& key, const Atom& value);
- void remove_property(const Raul::URI& key, const Atom& value);
- void on_change(const Raul::URI& key);
+ void add_property(const URI& key, const Atom& value);
+ void change_property(const URI& key, const Atom& value);
+ void remove_property(const URI& key, const Atom& value);
+ void on_change(const URI& key);
- bool datatype_supported(const std::set<Raul::URI>& types,
- Raul::URI* widget_type);
+ bool datatype_supported(const std::set<URI>& types,
+ URI* widget_type);
- bool class_supported(const std::set<Raul::URI>& types);
+ bool class_supported(const std::set<URI>& types);
- Gtk::Widget* create_value_widget(const Raul::URI& key,
- const char* type_uri,
- const Atom& value = Atom());
+ Gtk::Widget* create_value_widget(const URI& key,
+ const char* type_uri,
+ const Atom& value = Atom());
Atom get_value(LV2_URID type, Gtk::Widget* value_widget);
@@ -103,7 +103,7 @@ private:
void apply_clicked();
void ok_clicked();
- typedef std::map<Raul::URI, Record> Records;
+ typedef std::map<URI, Record> Records;
Records _records;
SPtr<const Client::ObjectModel> _model;