Merge branch 'master' into cairocanvas
[ardour.git] / libs / canvas / line.cc
1 /*
2     Copyright (C) 2011-2013 Paul Davis
3     Author: Carl Hetherington <cth@carlh.net>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include <algorithm>
21 #include <cairomm/context.h>
22 #include "pbd/compose.h"
23 #include "canvas/line.h"
24 #include "canvas/types.h"
25 #include "canvas/debug.h"
26 #include "canvas/utils.h"
27 #include "canvas/canvas.h"
28
29 using namespace std;
30 using namespace ArdourCanvas;
31
32 Line::Line (Group* parent)
33         : Item (parent)
34         , Outline (parent)
35 {
36
37 }
38
39 void
40 Line::compute_bounding_box () const
41 {
42         Rect bbox;
43         
44         bbox.x0 = min (_points[0].x, _points[1].x);
45         bbox.y0 = min (_points[0].y, _points[1].y);
46         bbox.x1 = max (_points[0].x, _points[1].x);
47         bbox.y1 = max (_points[0].y, _points[1].y);
48
49         bbox = bbox.expand (0.5 + (_outline_width / 2));
50
51         _bounding_box = bbox;
52         _bounding_box_dirty = false;
53 }
54
55 void
56 Line::render (Rect const & /*area*/, Cairo::RefPtr<Cairo::Context> context) const
57 {
58         setup_outline_context (context);
59
60         Duple p0 = item_to_window (Duple (_points[0].x, _points[0].y));
61         Duple p1 = item_to_window (Duple (_points[1].x, _points[1].y));
62
63         /* See Cairo FAQ on single pixel lines to understand why we add 0.5
64          */
65
66         context->move_to (p0.x + 0.5, p0.y + 0.5);
67         context->line_to (p1.x + 0.5, p1.y + 0.5);
68         context->stroke ();
69 }
70
71 void
72 Line::set (Duple a, Duple b)
73 {
74         begin_change ();
75
76         _points[0] = a;
77         _points[1] = b;
78
79         _bounding_box_dirty = true;
80         end_change ();
81
82         DEBUG_TRACE (PBD::DEBUG::CanvasItemsDirtied, "canvas item dirty: line change\n");
83 }
84
85 void
86 Line::set_x (Coord x0, Coord x1)
87 {
88         begin_change ();
89         
90         _points[0].x = x0;
91         _points[1].x = x1;
92
93         _bounding_box_dirty = true;
94         end_change ();
95
96         DEBUG_TRACE (PBD::DEBUG::CanvasItemsDirtied, "canvas item dirty: line change\n");
97 }       
98
99 void
100 Line::set_x0 (Coord x0)
101 {
102         begin_change ();
103         
104         _points[0].x = x0;
105
106         _bounding_box_dirty = true;
107         end_change ();
108
109         DEBUG_TRACE (PBD::DEBUG::CanvasItemsDirtied, "canvas item dirty: line change\n");
110 }
111
112 void
113 Line::set_y0 (Coord y0)
114 {
115         begin_change ();
116
117         _points[0].y = y0;
118
119         _bounding_box_dirty = true;
120         end_change ();
121
122         DEBUG_TRACE (PBD::DEBUG::CanvasItemsDirtied, "canvas item dirty: line change\n");
123 }
124
125 void
126 Line::set_x1 (Coord x1)
127 {
128         begin_change ();
129
130         _points[1].x = x1;
131
132         _bounding_box_dirty = true;
133         end_change ();
134
135         DEBUG_TRACE (PBD::DEBUG::CanvasItemsDirtied, "canvas item dirty: line change\n");
136 }
137
138 void
139 Line::set_y1 (Coord y1)
140 {
141         begin_change ();
142
143         _points[1].y = y1;
144
145         _bounding_box_dirty = true;
146         end_change ();
147
148         DEBUG_TRACE (PBD::DEBUG::CanvasItemsDirtied, "canvas item dirty: line change\n");
149 }