Only show user-presets in favorite sidebar
[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 "canvas/item.h"
26 #include "canvas/outline.h"
27 #include "canvas/debug.h"
28
29 using namespace ArdourCanvas;
30
31 Outline::Outline (Item& self)
32         : _self (self)
33         , _outline_color (0x000000ff)
34         , _outline_width (1.0)
35         , _outline (true)
36 {
37 }
38
39 void
40 Outline::set_outline_color (Gtkmm2ext::Color color)
41 {
42         if (color != _outline_color) {
43                 _self.begin_visual_change ();
44                 _outline_color = color;
45                 _self.end_visual_change ();
46         }
47 }
48
49 void
50 Outline::set_outline_width (Distance width)
51 {
52         if (width != _outline_width) {
53                 _self.begin_change ();
54                 _outline_width = width;
55                 _self._bounding_box_dirty = true;
56                 _self.end_change ();
57         }
58 }
59
60 void
61 Outline::set_outline (bool outline)
62 {
63         if (outline != _outline) {
64                 _self.begin_change ();
65                 _outline = outline;
66                 _self._bounding_box_dirty = true;
67                 _self.end_change ();
68         }
69 }
70
71 void
72 Outline::setup_outline_context (Cairo::RefPtr<Cairo::Context> context) const
73 {
74         Gtkmm2ext::set_source_rgba (context, _outline_color);
75         context->set_line_width (_outline_width);
76 }
77