summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-02-14 10:06:44 +0000
committerDavid Robillard <d@drobilla.net>2015-02-14 10:06:44 +0000
commitc8f1bc88b0575db527539e17603058695404bafa (patch)
tree4da8acc15ff9f47b54c9bc548e2d10f42d2186dd /src/gui
parentb1553c6ad9990ce3285eb542b974d1359056da03 (diff)
downloadingen-c8f1bc88b0575db527539e17603058695404bafa.tar.gz
ingen-c8f1bc88b0575db527539e17603058695404bafa.tar.bz2
ingen-c8f1bc88b0575db527539e17603058695404bafa.zip
Indicate sequence ports with an arrow tag.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5568 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/Port.cpp28
-rw-r--r--src/gui/Style.cpp10
-rw-r--r--src/gui/Style.hpp1
3 files changed, 21 insertions, 18 deletions
diff --git a/src/gui/Port.cpp b/src/gui/Port.cpp
index 4a6f37ed..114c9961 100644
--- a/src/gui/Port.cpp
+++ b/src/gui/Port.cpp
@@ -82,8 +82,6 @@ Port::Port(App& app,
{
assert(pm);
- set_dash_length(app.style()->get_port_dash_length(pm.get()));
-
if (app.can_control(pm.get())) {
show_control();
port_properties_changed();
@@ -104,7 +102,10 @@ Port::Port(App& app,
value_label = "ℝ";
} else if (model()->is_a(_app.uris().atom_AtomPort)) {
if (model()->supports(_app.uris().atom_Float)) {
- value_label += "ℝ";
+ if (model()->is_toggle()) {
+ value_label = ((pm->value() != _app.uris().forge.make(0.0f))
+ ? "☑" : "☐");
+ }
}
if (model()->supports(_app.uris().atom_Int)) {
value_label += "ℤ";
@@ -119,6 +120,10 @@ Port::Port(App& app,
value_label += "̿";
}
}
+ if (value_label.empty()) {
+ value_label = "*";
+ }
+ value_label += "͍";
}
if (!value_label.empty()) {
set_value_label(value_label.c_str());
@@ -430,15 +435,21 @@ Port::get_graph_box() const
void
Port::port_properties_changed()
{
+ const URIs& uris = _app.uris();
+ std::string value_label;
if (model()->is_toggle()) {
set_control_is_toggle(true);
} else if (model()->is_enumeration()) {
- const uint8_t ellipsis[] = { 0xE2, 0x80, 0xA6, 0 };
- set_value_label((const char*)ellipsis);
+ value_label = "…";
} else if (model()->is_integer()) {
- const uint8_t bigZ[] = { 0xE2, 0x84, 0xA4, 0 };
- set_value_label((const char*)bigZ);
set_control_is_integer(true);
+ value_label = "ℤ";
+ }
+ if (!value_label.empty()) {
+ if (model()->has_property(uris.atom_bufferType, uris.atom_Sequence)) {
+ value_label += "͍";
+ }
+ set_value_label(value_label.c_str());
}
}
@@ -450,6 +461,9 @@ Port::property_changed(const Raul::URI& key, const Atom& value)
float val = value.get<float>();
if (key == uris.ingen_value && !get_grabbed()) {
Ganv::Port::set_control_value(val);
+ if (model()->is_toggle()) {
+ set_value_label((val == 0.0f) ? "☐" : "☑");
+ }
} else if (key == uris.lv2_minimum) {
if (model()->port_property(uris.lv2_sampleRate)) {
val *= _app.sample_rate();
diff --git a/src/gui/Style.cpp b/src/gui/Style.cpp
index 287a1496..30b2a4f1 100644
--- a/src/gui/Style.cpp
+++ b/src/gui/Style.cpp
@@ -101,15 +101,5 @@ Style::get_port_color(const Client::PortModel* p)
return 0x666666FF;
}
-uint32_t
-Style::get_port_dash_length(const Client::PortModel* p)
-{
- const URIs& uris = _app.uris();
- if (p->is_a(uris.atom_AtomPort)) {
- return 4.0;
- }
- return 0.0;
-}
-
} // namespace GUI
} // namespace Ingen
diff --git a/src/gui/Style.hpp b/src/gui/Style.hpp
index a52a3d01..13fa0546 100644
--- a/src/gui/Style.hpp
+++ b/src/gui/Style.hpp
@@ -41,7 +41,6 @@ public:
void apply_settings();
uint32_t get_port_color(const Client::PortModel* p);
- uint32_t get_port_dash_length(const Client::PortModel* p);
private:
App& _app;