diff options
Diffstat (limited to 'src/libs/gui/Port.hpp')
-rw-r--r-- | src/libs/gui/Port.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libs/gui/Port.hpp b/src/libs/gui/Port.hpp index f7eed2f7..5925860d 100644 --- a/src/libs/gui/Port.hpp +++ b/src/libs/gui/Port.hpp @@ -22,6 +22,7 @@ #include <string> #include <flowcanvas/Port.hpp> #include <raul/SharedPtr.hpp> +#include <raul/Atom.hpp> namespace Ingen { namespace Client { class PortModel; } } using Ingen::Client::PortModel; @@ -43,10 +44,12 @@ public: SharedPtr<PortModel> model() const { return _port_model; } - virtual void set_control(float value); + virtual void set_control(float value, bool signal); void control_changed(float value); private: + + void metadata_update(const string& key, const Raul::Atom& value); void on_menu_destroy(); void renamed(); |