diff options
author | David Robillard <d@drobilla.net> | 2009-11-22 03:06:25 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-11-22 03:06:25 +0000 |
commit | e479da3c26d41e977cf55b8e2355db45991be09f (patch) | |
tree | f6887a9b19eaee951dafd17fea8021556bff1169 /src/gui/Configuration.cpp | |
parent | 58807f5840592959c31b415f7e2d64967594b5ee (diff) | |
download | ingen-e479da3c26d41e977cf55b8e2355db45991be09f.tar.gz ingen-e479da3c26d41e977cf55b8e2355db45991be09f.tar.bz2 ingen-e479da3c26d41e977cf55b8e2355db45991be09f.zip |
Partial support for message/value ports and the message context.
This use case now works:
- Add an event input and the "print" plugin from imum.lv2 to ingen
- Connect the event input to the input of "print"
- Hook Ingen up to JACK and play some MIDI events
(or get events to the print plugin from anywhere else)
- The "print" plugin will print the received events to the console
in the message context (i.e. the audio thread is realtime safe)
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2281 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/Configuration.cpp')
-rw-r--r-- | src/gui/Configuration.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gui/Configuration.cpp b/src/gui/Configuration.cpp index 2169093e..83de3321 100644 --- a/src/gui/Configuration.cpp +++ b/src/gui/Configuration.cpp @@ -24,7 +24,9 @@ #include "client/PortModel.hpp" #include "client/PluginModel.hpp" #include "serialisation/Parser.hpp" +#include "flowcanvas/Port.hpp" #include "App.hpp" +#include "Port.hpp" using namespace std; @@ -41,7 +43,7 @@ Configuration::Configuration() , _control_port_color(0x4A8A0EC0) , _event_port_color( 0x960909C0) // , _osc_port_color( 0x5C3566C0) - , _object_port_color( 0x5C3566C0) + , _value_port_color( 0x4A4A4AC0) { } @@ -95,7 +97,9 @@ Configuration::get_port_color(const PortModel* p) /*} else if (p->type().is_osc()) { return _osc_port_color; */} else if (p->type().is_value()) { - return _object_port_color; + return _value_port_color; + } else if (p->type().is_message()) { + return _event_port_color; } cerr << "[Configuration] Unknown port type " << p->type().uri() |