summaryrefslogtreecommitdiffstats
path: root/src/libs/gui/Port.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-07-28 22:50:37 +0000
committerDavid Robillard <d@drobilla.net>2007-07-28 22:50:37 +0000
commit26e10071914fe3ba3e2f168df85b2935884b44b7 (patch)
tree422dfe359fbfb27763aa5dd3a8f78d916dda6221 /src/libs/gui/Port.hpp
parent7dd171d955067c947168db2ca88f40d60aa5abbb (diff)
downloadingen-26e10071914fe3ba3e2f168df85b2935884b44b7.tar.gz
ingen-26e10071914fe3ba3e2f168df85b2935884b44b7.tar.bz2
ingen-26e10071914fe3ba3e2f168df85b2935884b44b7.zip
Remove (now) generated LV2 stuff Makefiles from repo.
Fix various port range/value/sync problems with the new sliders (fix tickets 64, 65). git-svn-id: http://svn.drobilla.net/lad/ingen@649 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/gui/Port.hpp')
-rw-r--r--src/libs/gui/Port.hpp5
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();