summaryrefslogtreecommitdiff
path: root/gtk2_ardour/axis_view.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-09-05 23:09:10 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-09-05 23:09:10 +0000
commit222a85ca1074f30d9aea4a770900785d15420a84 (patch)
treecdca3566f684def1cebb4322dc21ed6a4674c836 /gtk2_ardour/axis_view.h
parentb8e813c455f58150f9c2bd44b2a9d08b4393310b (diff)
optionally tie together editor+mixer display orders; provide GUI control for timecode-is-synced; make Ctrl-w close any dialog
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2422 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/axis_view.h')
-rw-r--r--gtk2_ardour/axis_view.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk2_ardour/axis_view.h b/gtk2_ardour/axis_view.h
index 51f744c4e5..11ee9c9377 100644
--- a/gtk2_ardour/axis_view.h
+++ b/gtk2_ardour/axis_view.h
@@ -62,6 +62,9 @@ class AxisView : public virtual Selectable
sigc::signal<void> Hiding;
sigc::signal<void> GoingAway;
+ void set_old_order_key (uint32_t ok) { _old_order_key = ok; }
+ uint32_t old_order_key() const { return _old_order_key; }
+
protected:
AxisView (ARDOUR::Session& sess);
@@ -84,6 +87,7 @@ class AxisView : public virtual Selectable
Gtk::Label name_label;
bool _marked_for_display;
+ uint32_t _old_order_key;
}; /* class AxisView */