X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fcontrol_point.h;h=045f1241edc2b415b94764f5eb108d925641f0f1;hb=5fef65538040fbac1b9edd1847a269aa925a49c9;hp=1a7a1f22b8ebe154f9874d4f8e9f54f4315925cf;hpb=30968b854257cb5f9159ca59589f783c85615601;p=ardour.git diff --git a/gtk2_ardour/control_point.h b/gtk2_ardour/control_point.h index 1a7a1f22b8..045f1241ed 100644 --- a/gtk2_ardour/control_point.h +++ b/gtk2_ardour/control_point.h @@ -38,6 +38,7 @@ class Selection; namespace ArdourCanvas { class Rectangle; class Diamond; + class Item; } class ControlPoint : public Selectable @@ -60,22 +61,21 @@ 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; }