From b1553c6ad9990ce3285eb542b974d1359056da03 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 14 Feb 2015 09:26:46 +0000 Subject: Show type tags for more port types. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5567 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/Port.cpp | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'src/gui') diff --git a/src/gui/Port.cpp b/src/gui/Port.cpp index 89284463..4a6f37ed 100644 --- a/src/gui/Port.cpp +++ b/src/gui/Port.cpp @@ -95,6 +95,35 @@ Port::Port(App& app, sigc::mem_fun(this, &Port::value_changed)); } + std::string value_label; + if (model()->is_a(_app.uris().lv2_AudioPort)) { + value_label = "~"; + } else if (model()->is_a(_app.uris().lv2_CVPort)) { + value_label = "ℝ̰"; + } else if (model()->is_a(_app.uris().lv2_ControlPort)) { + value_label = "ℝ"; + } else if (model()->is_a(_app.uris().atom_AtomPort)) { + if (model()->supports(_app.uris().atom_Float)) { + value_label += "ℝ"; + } + if (model()->supports(_app.uris().atom_Int)) { + value_label += "ℤ"; + } + if (model()->supports(_app.uris().midi_MidiEvent)) { + value_label += "ℳ"; + } + if (model()->supports(_app.uris().patch_Message)) { + if (value_label.empty()) { + value_label += "="; + } else { + value_label += "̿"; + } + } + } + if (!value_label.empty()) { + set_value_label(value_label.c_str()); + } + pm->signal_activity().connect( sigc::mem_fun(this, &Port::activity)); pm->signal_disconnection().connect( -- cgit v1.2.1