add queen mary DSP library
[ardour.git] / gtk2_ardour / control_point.h
index 013ba71e491efbaa0f5e02e226692122c8210e15..2dbf225d86d2d519d3b0fb8c1acc177a4fd92912 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2002-2007 Paul Davis 
+    Copyright (C) 2002-2007 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 
 #include <sys/types.h>
 
-#include <ardour/automation_list.h>
+#include "ardour/automation_list.h"
 
 #include "canvas.h"
 #include "simplerect.h"
+#include "selectable.h"
 
 class AutomationLine;
 class ControlPoint;
@@ -42,7 +43,7 @@ namespace Gnome {
        }
 }
 
-class ControlPoint 
+class ControlPoint : public Selectable
 {
   public:
        ControlPoint (AutomationLine& al);
@@ -54,31 +55,35 @@ class ControlPoint
                Start,
                End
        };
-       
+
        void move_to (double x, double y, ShapeType);
        void reset (double x, double y, ARDOUR::AutomationList::iterator, uint32_t, ShapeType);
        double get_x() const { return _x; }
        double get_y() const { return _y; }
 
-       void hide (); 
+       void hide ();
        void show ();
-       void show_color (bool entered, bool hide_too);
+       void set_color ();
 
+       double size () const {
+               return _size;
+       }
+       
        void set_size (double);
        void set_visible (bool);
+       bool visible () const;
 
        bool     can_slide() const          { return _can_slide; }
        void     set_can_slide(bool yn)     { _can_slide = yn; }
-       bool     selected() const           { return _selected; }
-       void     set_selected(bool yn)      { _selected = yn; }
        uint32_t view_index() const         { return _view_index; }
        void     set_view_index(uint32_t i) { _view_index = i; }
-       
+
+       void i2w (double &, double &) const;
+
        ARDOUR::AutomationList::iterator model() const { return _model; }
        AutomationLine&                  line()  const { return _line; }
-       ArdourCanvas::Item*              item()  const { return _item; }
 
-  protected:
+  private:
        ArdourCanvas::SimpleRect* _item;
 
        AutomationLine& _line;
@@ -86,11 +91,9 @@ class ControlPoint
        ARDOUR::AutomationList::iterator _model;
        uint32_t _view_index;
        bool     _can_slide;
-       bool     _selected;
 
        virtual bool event_handler (GdkEvent*);
 
-  private:
        double    _x;
        double    _y;
        double    _size;