fix crash when copy'ing latent plugins
[ardour.git] / libs / canvas / arc.cc
1 /*
2     Copyright (C) 2013 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 #include <cmath>
20 #include <algorithm>
21
22 #include <cairomm/context.h>
23
24 #include "pbd/compose.h"
25 #include "canvas/circle.h"
26 #include "canvas/types.h"
27 #include "canvas/debug.h"
28 #include "canvas/utils.h"
29 #include "canvas/canvas.h"
30
31 using namespace std;
32 using namespace ArdourCanvas;
33
34 Arc::Arc (Canvas* c)
35         : Item (c)
36         , _radius (0.0)
37         , _arc_degrees (0.0)
38         , _start_degrees (0.0)
39 {
40 }
41
42 Arc::Arc (Item* parent)
43         : Item (parent)
44         , _radius (0.0)
45         , _arc_degrees (0.0)
46         , _start_degrees (0.0)
47 {
48 }
49
50 void
51 Arc::compute_bounding_box () const
52 {
53         Rect bbox;
54
55         /* this could be smaller in the case of small _arc values
56            but I can't be bothered to optimize it.
57         */
58
59         bbox.x0 = _center.x - _radius;
60         bbox.y0 = _center.y - _radius;
61         bbox.x1 = _center.x + _radius;
62         bbox.y1 = _center.y + _radius;
63
64         bbox = bbox.expand (0.5 + (_outline_width / 2));
65
66         _bounding_box = bbox;
67         _bounding_box_dirty = false;
68 }
69
70 void
71 Arc::render (Rect const & /*area*/, Cairo::RefPtr<Cairo::Context> context) const
72 {
73         if (_radius <= 0.0 || _arc_degrees <= 0.0) {
74                 return;
75         }
76
77         Duple c = item_to_window (Duple (_center.x, _center.y));
78
79         context->arc (c.x, c.y, _radius, _start_degrees * (M_PI/180.0), _arc_degrees * (M_PI/180.0));
80         setup_fill_context (context);
81         context->fill_preserve ();
82         setup_outline_context (context);
83         context->stroke ();
84 }
85
86 void
87 Arc::set_center (Duple const & c)
88 {
89         begin_change ();
90
91         _center = c;
92
93         _bounding_box_dirty = true;
94         end_change ();
95 }
96
97 void
98 Arc::set_radius (Coord r)
99 {
100         begin_change ();
101
102         _radius = r;
103
104         _bounding_box_dirty = true;
105         end_change ();
106 }
107
108 void
109 Arc::set_arc (double deg)
110 {
111         begin_change ();
112
113         _arc_degrees = deg;
114
115         _bounding_box_dirty = true;
116         end_change ();
117 }
118
119
120 void
121 Arc::set_start (double deg)
122 {
123         begin_change ();
124
125         _start_degrees = deg;
126
127         _bounding_box_dirty = true;
128         end_change ();
129 }
130
131 bool
132 Arc::covers (Duple const & point) const
133 {
134         Duple p = window_to_item (point);
135
136         double angle_degs = atan (p.y/p.x) * 2.0 * M_PI;
137         double radius = sqrt (p.x * p.x + p.y * p.y);
138
139         return (angle_degs >= _start_degrees) &&
140                 (angle_degs <= (_start_degrees + _arc_degrees)) &&
141                 (radius < _radius);
142 }