X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fcontrol_point.h;h=045f1241edc2b415b94764f5eb108d925641f0f1;hb=c4696fe2d568bce461aa9f8b4fbc6be19b6113ae;hp=d8c18f10b33d1d1ef1b5bbbe62c21961b8b4f9c0;hpb=e0aaed6d65f160c328cb8b56d7c6552ee15d65e2;p=ardour.git diff --git a/gtk2_ardour/control_point.h b/gtk2_ardour/control_point.h index d8c18f10b3..045f1241ed 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 @@ -21,11 +21,11 @@ #define __ardour_control_point_h__ #include +#include #include "ardour/automation_list.h" -#include "canvas.h" -#include "simplerect.h" +#include "selectable.h" class AutomationLine; class ControlPoint; @@ -35,14 +35,13 @@ 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: ControlPoint (AutomationLine& al); @@ -54,47 +53,48 @@ 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); + bool visible () const; + + double size () const { + return _size; + } void set_size (double); - void set_visible (bool); + 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; } - - ARDOUR::AutomationList::iterator model() const { return _model; } - AutomationLine& line() const { return _line; } - ArdourCanvas::Item* item() const { return _item; } - protected: - ArdourCanvas::SimpleRect* _item; + ArdourCanvas::Item& item() const; - AutomationLine& _line; + ARDOUR::AutomationList::iterator model() const { return _model; } + AutomationLine& line() const { return _line; } + static PBD::Signal1 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*); - private: - double _x; - double _y; - double _size; - ShapeType _shape; };