summaryrefslogtreecommitdiff
path: root/gtk2_ardour/axis_view.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/axis_view.cc')
-rw-r--r--gtk2_ardour/axis_view.cc21
1 files changed, 21 insertions, 0 deletions
diff --git a/gtk2_ardour/axis_view.cc b/gtk2_ardour/axis_view.cc
index d5f7b46a37..1502c8e1ea 100644
--- a/gtk2_ardour/axis_view.cc
+++ b/gtk2_ardour/axis_view.cc
@@ -75,6 +75,27 @@ AxisView::gui_property (const string& property_name) const
}
bool
+AxisView::get_gui_property (const std::string& property_name, std::string& value) const
+{
+ std::string str = gui_property(property_name);
+
+ if (!str.empty()) {
+ value = str;
+ return true;
+ }
+
+ return false;
+}
+
+void
+AxisView::set_gui_property (const std::string& property_name, const std::string& value)
+{
+ property_hashtable.erase (property_name);
+ property_hashtable.emplace (property_name, value);
+ gui_object_state ().set_property (state_id (), property_name, value);
+}
+
+bool
AxisView::marked_for_display () const
{
string const v = gui_property ("visible");