only the last step-edited note remains selected after each note addition; waf install...
[ardour.git] / gtk2_ardour / control_point.cc
1 /*
2     Copyright (C) 2002-2007 Paul Davis
3
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.
8
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.
13
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.
17
18 */
19
20 #include "control_point.h"
21 #include "diamond.h"
22 #include "automation_line.h"
23 #include "ardour_ui.h"
24 #include "public_editor.h"
25
26 #include "i18n.h"
27
28 using namespace std;
29 using namespace ARDOUR;
30 using namespace PBD;
31 using namespace Gnome; // for Canvas
32
33 ControlPoint::ControlPoint (AutomationLine& al)
34         : _line (al)
35 {
36         _model = al.the_list()->end();
37         _view_index = 0;
38         _can_slide = true;
39         _x = 0;
40         _y = 0;
41         _shape = Full;
42         _size = 4.0;
43
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));
52
53         hide ();
54         set_visible (false);
55 }
56
57 ControlPoint::ControlPoint (const ControlPoint& other, bool /*dummy_arg_to_force_special_copy_constructor*/)
58         : _line (other._line)
59 {
60         if (&other == this) {
61                 return;
62         }
63
64         _model = other._model;
65         _view_index = other._view_index;
66         _can_slide = other._can_slide;
67         _x = other._x;
68         _y = other._y;
69         _shape = other._shape;
70         _size = other._size;
71
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;
76
77         /* NOTE: no event handling in copied ControlPoints */
78
79         hide ();
80         set_visible (false);
81 }
82
83 ControlPoint::~ControlPoint ()
84 {
85         delete _item;
86 }
87
88 bool
89 ControlPoint::event_handler (GdkEvent* event)
90 {
91         return PublicEditor::instance().canvas_control_point_event (event, _item, this);
92 }
93
94 void
95 ControlPoint::hide ()
96 {
97         _item->hide();
98 }
99
100 void
101 ControlPoint::show()
102 {
103         _item->show();
104 }
105
106 void
107 ControlPoint::set_visible (bool yn)
108 {
109         _item->property_draw() = (gboolean) yn;
110 }
111
112 bool
113 ControlPoint::visible () const
114 {
115         return _item->property_draw ();
116 }
117
118 void
119 ControlPoint::reset (double x, double y, AutomationList::iterator mi, uint32_t vi, ShapeType shape)
120 {
121         _model = mi;
122         _view_index = vi;
123         move_to (x, y, shape);
124 }
125
126 void
127 ControlPoint::set_color ()
128 {
129         uint32_t color = 0;
130
131         if (_selected) {
132                 color = ARDOUR_UI::config()->canvasvar_ControlPointSelected.get();
133         } else {
134                 color = ARDOUR_UI::config()->canvasvar_ControlPointOutline.get();
135         }
136
137         _item->property_outline_color_rgba() = color;
138         _item->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_ControlPointFill.get();
139 }
140
141 void
142 ControlPoint::set_size (double sz)
143 {
144         _size = sz;
145         move_to (_x, _y, _shape);
146 }
147
148 void
149 ControlPoint::move_to (double x, double y, ShapeType shape)
150 {
151         double x1 = 0;
152         double x2 = 0;
153         double half_size = rint(_size/2.0);
154
155         switch (shape) {
156         case Full:
157                 x1 = x - half_size;
158                 x2 = x + half_size;
159                 break;
160         case Start:
161                 x1 = x;
162                 x2 = x + half_size;
163                 break;
164         case End:
165                 x1 = x - half_size;
166                 x2 = x;
167                 break;
168         }
169
170         _item->property_x1() = x1;
171         _item->property_x2() = x2;
172         _item->property_y1() = y - half_size;
173         _item->property_y2() = y + half_size;
174
175         _x = x;
176         _y = y;
177         _shape = shape;
178 }
179
180 void
181 ControlPoint::i2w (double& x, double& y) const
182 {
183         _item->i2w (x, y);
184 }