Purify libcanvas, remove libardour dependency
[ardour.git] / libs / canvas / fill.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/cairomm.h>
21
22 #include "pbd/compose.h"
23 #include "pbd/convert.h"
24
25 #include "canvas/fill.h"
26 #include "canvas/item.h"
27 #include "canvas/types.h"
28
29 using namespace std;
30 using namespace ArdourCanvas;
31
32 Fill::Fill (Item& self)
33         : _self (self)
34         , _fill_color (0x000000ff)
35         , _fill (true)
36         , _transparent (false)
37 {
38 }
39
40 void
41 Fill::set_fill_color (Gtkmm2ext::Color color)
42 {
43         if (_fill_color != color) {
44                 _self.begin_visual_change ();
45                 _fill_color = color;
46
47                 double r, g, b, a;
48                 Gtkmm2ext::color_to_rgba (color, r, g, b, a);
49                 if (a == 0.0) {
50                         _transparent = true;
51                 } else {
52                         _transparent = false;
53                 }
54
55                 _self.end_visual_change ();
56         }
57 }
58
59 void
60 Fill::set_fill (bool fill)
61 {
62         if (_fill != fill) {
63                 _self.begin_visual_change ();
64                 _fill = fill;
65                 _self.end_visual_change ();
66         }
67 }
68
69 void
70 Fill::setup_fill_context (Cairo::RefPtr<Cairo::Context> context) const
71 {
72         if (_pattern) {
73                 context->set_source (_pattern);
74         } else {
75                                         Gtkmm2ext::set_source_rgba (context, _fill_color);
76         }
77 }
78
79 void
80 Fill::setup_gradient_context (Cairo::RefPtr<Cairo::Context> context, Rect const & self, Duple const & draw_origin) const
81 {
82         Cairo::RefPtr<Cairo::LinearGradient> _gradient;
83
84         if (_vertical_gradient) {
85                 _gradient = Cairo::LinearGradient::create (draw_origin.x, self.y0, draw_origin.x, self.y1);
86         } else {
87                 _gradient = Cairo::LinearGradient::create (self.x0, draw_origin.y, self.x1, draw_origin.y);
88         }
89
90         for (StopList::const_iterator s = _stops.begin(); s != _stops.end(); ++s) {
91                 double r, g, b, a;
92                 Gtkmm2ext::color_to_rgba (s->second, r, g, b, a);
93                 _gradient->add_color_stop_rgba (s->first, r, g, b, a);
94         }
95
96         context->set_source (_gradient);
97 }
98
99 void
100 Fill::set_pattern (Cairo::RefPtr<Cairo::Pattern> p)
101 {
102         _pattern = p;
103 }
104
105 void
106 Fill::set_gradient (StopList const & stops, bool vertical)
107 {
108         _self.begin_visual_change ();
109
110         if (stops.empty()) {
111                 _stops.clear ();
112         } else {
113                 _stops = stops;
114                 _vertical_gradient = vertical;
115         }
116
117         _self.end_visual_change ();
118 }