2 Copyright (C) 2002-2007 Paul Davis
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #include "control_point.h"
22 #include "automation_line.h"
23 #include "ardour_ui.h"
24 #include "public_editor.h"
29 using namespace ARDOUR
;
31 using namespace Gnome
; // for Canvas
33 ControlPoint::ControlPoint (AutomationLine
& al
)
36 _model
= al
.the_list()->end();
44 _item
= new Canvas::SimpleRect (_line
.canvas_group());
45 _item
->property_draw() = true;
46 _item
->property_fill() = false;
47 _item
->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_ControlPointFill
.get();
48 _item
->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_ControlPointOutline
.get();
49 _item
->property_outline_pixels() = 1;
50 _item
->set_data ("control_point", this);
51 _item
->signal_event().connect (sigc::mem_fun (this, &ControlPoint::event_handler
));
57 ControlPoint::ControlPoint (const ControlPoint
& other
, bool /*dummy_arg_to_force_special_copy_constructor*/)
64 _model
= other
._model
;
65 _view_index
= other
._view_index
;
66 _can_slide
= other
._can_slide
;
69 _shape
= other
._shape
;
72 _item
= new Canvas::SimpleRect (_line
.canvas_group());
73 _item
->property_fill() = false;
74 _item
->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_ControlPointOutline
.get();
75 _item
->property_outline_pixels() = 1;
77 /* NOTE: no event handling in copied ControlPoints */
83 ControlPoint::~ControlPoint ()
89 ControlPoint::event_handler (GdkEvent
* event
)
91 return PublicEditor::instance().canvas_control_point_event (event
, _item
, this);
107 ControlPoint::set_visible (bool yn
)
109 _item
->property_draw() = (gboolean
) yn
;
113 ControlPoint::visible () const
115 return _item
->property_draw ();
119 ControlPoint::reset (double x
, double y
, AutomationList::iterator mi
, uint32_t vi
, ShapeType shape
)
121 /* If this is too big, libart will confuse itself and segfault after it casts the bounding box
122 of this automation line to ints. Sigh.
131 move_to (x
, y
, shape
);
135 ControlPoint::set_color ()
140 color
= ARDOUR_UI::config()->canvasvar_ControlPointSelected
.get();
142 color
= ARDOUR_UI::config()->canvasvar_ControlPointOutline
.get();
145 _item
->property_outline_color_rgba() = color
;
146 _item
->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_ControlPointFill
.get();
150 ControlPoint::set_size (double sz
)
153 move_to (_x
, _y
, _shape
);
157 ControlPoint::move_to (double x
, double y
, ShapeType shape
)
161 double half_size
= rint(_size
/2.0);
178 _item
->property_x1() = x1
;
179 _item
->property_x2() = x2
;
180 _item
->property_y1() = y
- half_size
;
181 _item
->property_y2() = y
+ half_size
;
189 ControlPoint::i2w (double& x
, double& y
) const