X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fcontrol_point.h;h=2dbf225d86d2d519d3b0fb8c1acc177a4fd92912;hb=3deba1921bcf5bddd8bea9846a203c92b6c9239d;hp=013ba71e491efbaa0f5e02e226692122c8210e15;hpb=d8ade6d30595a3a8be343b392e47d422940eac27;p=ardour.git diff --git a/gtk2_ardour/control_point.h b/gtk2_ardour/control_point.h index 013ba71e49..2dbf225d86 100644 --- a/gtk2_ardour/control_point.h +++ b/gtk2_ardour/control_point.h @@ -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 @@ -22,10 +22,11 @@ #include -#include +#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;