merge resolution with master
[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 <algorithm>
20 #include <cairomm/context.h>
21 #include "pbd/compose.h"
22 #include "canvas/circle.h"
23 #include "canvas/types.h"
24 #include "canvas/debug.h"
25 #include "canvas/utils.h"
26 #include "canvas/canvas.h"
27
28 using namespace std;
29 using namespace ArdourCanvas;
30
31 Arc::Arc (Group* parent)
32         : Item (parent)
33         , Outline (parent)
34         , Fill (parent)
35         , _radius (0.0)
36         , _arc_degrees (0.0)
37         , _start_degrees (0.0)
38 {
39
40 }
41
42 void
43 Arc::compute_bounding_box () const
44 {
45         Rect bbox;
46
47         /* this could be smaller in the case of small _arc values
48            but I can't be bothered to optimize it.
49         */
50         
51         bbox.x0 = _center.x - _radius;
52         bbox.y0 = _center.y - _radius;
53         bbox.x1 = _center.x + _radius;
54         bbox.y1 = _center.y + _radius;
55
56         bbox = bbox.expand (0.5 + (_outline_width / 2));
57
58         _bounding_box = bbox;
59         _bounding_box_dirty = false;
60 }
61
62 void
63 Arc::render (Rect const & /*area*/, Cairo::RefPtr<Cairo::Context> context) const
64 {
65         if (_radius <= 0.0 || _arc_degrees <= 0.0) {
66                 return;
67         }
68         context->arc (_center.x, _center.y, _radius, _start_degrees * (M_PI/180.0), _arc_degrees * (M_PI/180.0));
69         setup_fill_context (context);
70         context->fill_preserve ();
71         setup_outline_context (context);
72         context->stroke ();
73 }
74
75 void
76 Arc::set_center (Duple const & c)
77 {
78         begin_change ();
79
80         _center = c;
81
82         _bounding_box_dirty = true;
83         end_change ();
84 }
85
86 void
87 Arc::set_radius (Coord r)
88 {
89         begin_change ();
90         
91         _radius = r;
92
93         _bounding_box_dirty = true;
94         end_change ();
95 }       
96
97
98 void
99 Arc::set_arc (double deg)
100 {
101         begin_change ();
102         
103         _arc_degrees = deg;
104
105         _bounding_box_dirty = true;
106         end_change ();
107 }       
108
109
110 void
111 Arc::set_start (double deg)
112 {
113         begin_change ();
114         
115         _start_degrees = deg;
116         
117         _bounding_box_dirty = true;
118         end_change ();
119 }       
120