X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fcontrol_point.h;h=c9aab3af64a76875f495dca06654953895fb2b46;hb=56ebea48c08de548e9e7e219164132c30c5028e0;hp=603d062ec40273cf1b3e73a5412b87885d4a7fdf;hpb=49240fe7c5fef9b7830bafd2430f9143105a6f69;p=ardour.git diff --git a/gtk2_ardour/control_point.h b/gtk2_ardour/control_point.h index 603d062ec4..c9aab3af64 100644 --- a/gtk2_ardour/control_point.h +++ b/gtk2_ardour/control_point.h @@ -21,11 +21,10 @@ #define __ardour_control_point_h__ #include +#include #include "ardour/automation_list.h" -#include "canvas.h" -#include "simplerect.h" #include "selectable.h" class AutomationLine; @@ -36,11 +35,10 @@ class AutomationTimeAxisView; class Selectable; class Selection; -namespace Gnome { - namespace Canvas { - class SimpleRect; - class Diamond; - } +namespace ArdourCanvas { + class Rectangle; + class Diamond; + class Item; } class ControlPoint : public Selectable @@ -63,28 +61,29 @@ class ControlPoint : public Selectable 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; } 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; } + static PBD::Signal1 CatchDeletion; + private: - ArdourCanvas::SimpleRect* _item; + ArdourCanvas::Rectangle* _item; AutomationLine& _line; ARDOUR::AutomationList::iterator _model; uint32_t _view_index;