virtual Fill:: and Outline:: methods so that Canvas::Items that cache image rendering...
[ardour.git] / libs / canvas / outline.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 <cairomm/context.h>
21
22 #include "pbd/compose.h"
23 #include "pbd/convert.h"
24
25 #include "ardour/utils.h"
26 #include "canvas/outline.h"
27 #include "canvas/utils.h"
28 #include "canvas/debug.h"
29
30 using namespace ArdourCanvas;
31
32 Outline::Outline (Group* parent)
33         : Item (parent)
34         , _outline_color (0x000000ff)
35         , _outline_width (0.5)
36         , _outline (true)
37 {
38
39 }
40
41 void
42 Outline::set_outline_color (Color color)
43 {
44         begin_visual_change ();
45         
46         _outline_color = color;
47
48         end_visual_change ();
49 }
50
51 void
52 Outline::set_outline_width (Distance width)
53 {
54         begin_change ();
55         
56         _outline_width = width;
57
58         _bounding_box_dirty = true;
59         end_change ();
60
61         DEBUG_TRACE (PBD::DEBUG::CanvasItemsDirtied, "canvas item dirty: outline width change\n");      
62 }
63
64 void
65 Outline::set_outline (bool outline)
66 {
67         begin_change ();
68
69         _outline = outline;
70
71         _bounding_box_dirty = true;
72         end_change ();
73 }
74
75 void
76 Outline::setup_outline_context (Cairo::RefPtr<Cairo::Context> context) const
77 {
78         set_source_rgba (context, _outline_color);
79         context->set_line_width (_outline_width);
80 }
81