From a0872caf0097908464f3ef3a6a5e3635296b95e8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 20 Aug 2008 00:35:30 +0000 Subject: Fix Blob atom copy contruction/size/etc stuff. Fix LV2 UI events (i.e. make klaviatur work again). git-svn-id: http://svn.drobilla.net/lad/ingen@1452 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/gui/NodeModule.cpp | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'src/libs/gui') diff --git a/src/libs/gui/NodeModule.cpp b/src/libs/gui/NodeModule.cpp index b3898b94..fc6b13de 100644 --- a/src/libs/gui/NodeModule.cpp +++ b/src/libs/gui/NodeModule.cpp @@ -104,8 +104,10 @@ NodeModule::create(boost::shared_ptr canvas, SharedPtr n void NodeModule::value_changed(uint32_t index, const Atom& value) { - if (value.type() == Atom::FLOAT) { - float control = value.get_float(); + float control = 0.0f; + switch (value.type()) { + case Atom::FLOAT: + control = value.get_float(); if (_plugin_ui) { SLV2UIInstance inst = _plugin_ui->instance(); const LV2UI_Descriptor* ui_descriptor = slv2_ui_instance_get_descriptor(inst); @@ -113,8 +115,12 @@ NodeModule::value_changed(uint32_t index, const Atom& value) if (ui_descriptor->port_event) ui_descriptor->port_event(ui_handle, index, 4, 0, &control); } - } else { - cerr << "WARNING: Unknown value type " << (int)value.type() << endl; + break; + case Atom::STRING: + cout << "Port value type is a string? (\"" << value.get_string() << "\")" << endl; + break; + default: + break; } } -- cgit v1.2.1