X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Faxis_view.h;h=3a15e05c994fb0c8432d4aeb226ea1d3c7905c93;hb=900309993c485527145be4265247bd521073ee61;hp=12b7d32188d38d1fda1ea5d6ea60430381a096cf;hpb=13532c8500dce5f7a4525bcdfc3b44936fbaa5e6;p=ardour.git diff --git a/gtk2_ardour/axis_view.h b/gtk2_ardour/axis_view.h index 12b7d32188..3a15e05c99 100644 --- a/gtk2_ardour/axis_view.h +++ b/gtk2_ardour/axis_view.h @@ -15,7 +15,6 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id$ */ #ifndef __ardour_gtk_axis_view_h__ @@ -53,16 +52,16 @@ class AxisView : public virtual Selectable virtual string name() const = 0; virtual bool marked_for_display() const { return _marked_for_display; } - virtual void set_marked_for_display (bool yn) { - if (yn != _marked_for_display) { - _marked_for_display = yn; - } + _marked_for_display = yn; } sigc::signal Hiding; sigc::signal 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,10 +83,9 @@ class AxisView : public virtual Selectable Gtk::Label name_label; - bool _selected; - bool _marked_for_display; - + uint32_t _old_order_key; + }; /* class AxisView */ #endif /* __ardour_gtk_axis_view_h__ */