fix incorrect accumulation of export video options each time the dialog is used
[ardour.git] / gtk2_ardour / control_point.h
index 0264015f93b0210d96de648d11e22b02757d7297..524398aa014ece481cf596e4ea0515d87cd9f90a 100644 (file)
 #define __ardour_control_point_h__
 
 #include <sys/types.h>
+#include <gdk/gdkevents.h>
 
 #include "ardour/automation_list.h"
 
-#include "canvas.h"
-#include "simplerect.h"
+#include "selectable.h"
 
 class AutomationLine;
 class ControlPoint;
@@ -35,16 +35,15 @@ class AutomationTimeAxisView;
 class Selectable;
 class Selection;
 
-namespace Gnome {
-       namespace Canvas {
-               class SimpleRect;
-               class Diamond;
-       }
+namespace ArdourCanvas {
+       class Rectangle;
+       class Diamond;
+       class Item;
 }
 
-class ControlPoint
+class ControlPoint : public Selectable
 {
-  public:
+public:
        ControlPoint (AutomationLine& al);
        ControlPoint (const ControlPoint&, bool dummy_arg_to_force_special_copy_constructor);
        virtual ~ControlPoint ();
@@ -62,44 +61,40 @@ class ControlPoint
 
        void hide ();
        void show ();
-       void set_color ();
+       bool visible () const;
 
        double size () const {
                return _size;
        }
-       
+
        void set_size (double);
-       void set_visible (bool);
-       bool visible () const;
+       void set_color ();
 
        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;
+       ArdourCanvas::Item& item() const;
 
        ARDOUR::AutomationList::iterator model() const { return _model; }
        AutomationLine&                  line()  const { return _line; }
 
-  private:
-       ArdourCanvas::SimpleRect* _item;
-
-       AutomationLine& _line;
+       static PBD::Signal1<void, ControlPoint *> CatchDeletion;
 
+private:
+       ArdourCanvas::Rectangle*        _item;
+       AutomationLine&                  _line;
        ARDOUR::AutomationList::iterator _model;
-       uint32_t _view_index;
-       bool     _can_slide;
-       bool     _selected;
+       uint32_t                         _view_index;
+       bool                             _can_slide;
+       double                           _x;
+       double                           _y;
+       double                           _size;
+       ShapeType                        _shape;
 
        virtual bool event_handler (GdkEvent*);
 
-       double    _x;
-       double    _y;
-       double    _size;
-       ShapeType _shape;
 };