Merge branch 'master' into cairocanvas
[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 "automation_line.h"
22 #include "ardour_ui.h"
23 #include "public_editor.h"
24
25 #include "canvas/rectangle.h"
26
27 #include "i18n.h"
28
29 using namespace std;
30 using namespace ARDOUR;
31 using namespace PBD;
32
33 PBD::Signal1<void, ControlPoint *> ControlPoint::CatchDeletion;
34
35 ControlPoint::ControlPoint (AutomationLine& al)
36         : _line (al)
37 {
38         _model = al.the_list()->end();
39         _view_index = 0;
40         _can_slide = true;
41         _x = 0;
42         _y = 0;
43         _shape = Full;
44         _size = 4.0;
45
46         _item = new ArdourCanvas::Rectangle (&_line.canvas_group());
47         _item->set_fill (false);
48         _item->set_fill_color (ARDOUR_UI::config()->get_canvasvar_ControlPointFill());
49         _item->set_outline_color (ARDOUR_UI::config()->get_canvasvar_ControlPointOutline());
50         _item->set_data ("control_point", this);
51         _item->Event.connect (sigc::mem_fun (this, &ControlPoint::event_handler));
52
53         hide ();
54 }
55
56 ControlPoint::ControlPoint (const ControlPoint& other, bool /*dummy_arg_to_force_special_copy_constructor*/)
57         : _line (other._line)
58 {
59         if (&other == this) {
60                 return;
61         }
62
63         _model = other._model;
64         _view_index = other._view_index;
65         _can_slide = other._can_slide;
66         _x = other._x;
67         _y = other._y;
68         _shape = other._shape;
69         _size = other._size;
70
71         _item = new ArdourCanvas::Rectangle (&_line.canvas_group());
72         _item->set_fill (false);
73         _item->set_outline_color (ARDOUR_UI::config()->get_canvasvar_ControlPointOutline());
74
75         /* NOTE: no event handling in copied ControlPoints */
76
77         hide ();
78 }
79
80 ControlPoint::~ControlPoint ()
81 {
82         CatchDeletion (this); /* EMIT SIGNAL */
83         
84         delete _item;
85 }
86
87 bool
88 ControlPoint::event_handler (GdkEvent* event)
89 {
90         return PublicEditor::instance().canvas_control_point_event (event, _item, this);
91 }
92
93 void
94 ControlPoint::hide ()
95 {
96         _item->hide();
97 }
98
99 void
100 ControlPoint::show()
101 {
102         _item->show();
103 }
104
105 bool
106 ControlPoint::visible () const
107 {
108         return _item->visible ();
109 }
110
111 void
112 ControlPoint::reset (double x, double y, AutomationList::iterator mi, uint32_t vi, ShapeType shape)
113 {
114         _model = mi;
115         _view_index = vi;
116         move_to (x, y, shape);
117 }
118
119 void
120 ControlPoint::set_color ()
121 {
122         uint32_t color = 0;
123
124         if (_selected) {
125                 color = ARDOUR_UI::config()->get_canvasvar_ControlPointSelected();
126         } else {
127                 color = ARDOUR_UI::config()->get_canvasvar_ControlPointOutline();
128         }
129
130         _item->set_outline_color (color);
131         _item->set_fill_color (ARDOUR_UI::config()->get_canvasvar_ControlPointFill());
132 }
133
134 void
135 ControlPoint::set_size (double sz)
136 {
137         _size = sz;
138         move_to (_x, _y, _shape);
139 }
140
141 void
142 ControlPoint::move_to (double x, double y, ShapeType shape)
143 {
144         double x1 = 0;
145         double x2 = 0;
146         double half_size = rint(_size/2.0);
147
148         switch (shape) {
149         case Full:
150                 x1 = x - half_size;
151                 x2 = x + half_size;
152                 break;
153         case Start:
154                 x1 = x;
155                 x2 = x + half_size;
156                 break;
157         case End:
158                 x1 = x - half_size;
159                 x2 = x;
160                 break;
161         }
162
163         _item->set (ArdourCanvas::Rect (x1, y - half_size, x2, y + half_size));
164
165         _x = x;
166         _y = y;
167         _shape = shape;
168 }
169
170 void
171 ControlPoint::i2w (double& x, double& y) const
172 {
173         _item->item_to_canvas (x, y);
174 }