Scale MIDI track vertical range to match widgest range of notes in child regions.
[ardour.git] / gtk2_ardour / axis_view.h
index 38deece11a0da2b4a2ebf0c68ee8225648577eb9..51f744c4e550e7cbd38fadb5a70d6ca7fb1f89d0 100644 (file)
@@ -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__
@@ -28,6 +27,7 @@
 
 #include <pbd/xml++.h>
 #include "prompter.h"
+#include "selectable.h"
 
 namespace ARDOUR {
        class Session;
@@ -37,7 +37,7 @@ namespace ARDOUR {
  * AxisView defines the abstract base class for time-axis trackviews and routes.
  *
  */
-class AxisView : public virtual sigc::trackable
+class AxisView : public virtual Selectable
 {
   public:
        /**
@@ -51,12 +51,6 @@ class AxisView : public virtual sigc::trackable
 
        virtual string name() const = 0;
 
-       virtual void set_selected (bool yn) {
-               if (yn != _selected) {
-                       _selected = yn;
-               }
-       }
-       
        virtual bool marked_for_display() const { return _marked_for_display; }
 
        virtual void set_marked_for_display (bool yn) {
@@ -65,7 +59,6 @@ class AxisView : public virtual sigc::trackable
                }
        }
        
-       virtual bool selected() const { return _selected; }
        sigc::signal<void> Hiding;
        sigc::signal<void> GoingAway;
 
@@ -90,8 +83,6 @@ class AxisView : public virtual sigc::trackable
 
        Gtk::Label name_label;
 
-       bool _selected;
-
        bool _marked_for_display;
        
 }; /* class AxisView */