summaryrefslogtreecommitdiffstats
path: root/src/gui/Port.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/Port.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/Port.hpp')
-rw-r--r--src/gui/Port.hpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gui/Port.hpp b/src/gui/Port.hpp
index 5f683412..c714feae 100644
--- a/src/gui/Port.hpp
+++ b/src/gui/Port.hpp
@@ -27,11 +27,12 @@
namespace Raul {
class Atom;
-class URI;
}
namespace Ingen {
+class URI;
+
namespace Client { class PortModel; }
namespace GUI {
@@ -78,13 +79,13 @@ private:
Gtk::Menu* build_uri_menu();
GraphBox* get_graph_box() const;
- void property_changed(const Raul::URI& key, const Atom& value);
- void property_removed(const Raul::URI& key, const Atom& value);
+ void property_changed(const URI& key, const Atom& value);
+ void property_removed(const URI& key, const Atom& value);
void moved();
void on_value_changed(double value);
void on_scale_point_activated(float f);
- void on_uri_activated(const Raul::URI& uri);
+ void on_uri_activated(const URI& uri);
bool on_event(GdkEvent* ev);
void port_properties_changed();
void set_type_tag();