merge resolution with master
[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 "ardour/utils.h"
21
22 #include "pbd/compose.h"
23 #include "pbd/convert.h"
24
25 #include "canvas/fill.h"
26 #include "canvas/utils.h"
27
28 using namespace std;
29 using namespace ArdourCanvas;
30
31 Fill::Fill (Group* parent)
32         : Item (parent)
33         , _fill_color (0x000000ff)
34         , _fill (true)
35 {
36
37 }
38
39 void
40 Fill::set_fill_color (Color color)
41 {
42         if (_fill_color != color) {
43                 begin_visual_change ();
44                 _fill_color = color;
45                 end_visual_change ();
46         }
47 }
48
49 void
50 Fill::set_fill (bool fill)
51 {
52         if (_fill != fill) {
53                 begin_visual_change ();
54                 _fill = fill;
55                 end_visual_change ();
56         }
57 }
58
59 void
60 Fill::setup_fill_context (Cairo::RefPtr<Cairo::Context> context) const
61 {
62         if (_gradient) {
63                 context->set_source (_gradient);
64         } else {
65                 set_source_rgba (context, _fill_color);
66         }
67 }
68
69 void
70 Fill::set_gradient (StopList const & stops, double height)
71 {
72         begin_visual_change ();
73
74         if (stops.empty()) {
75                 _gradient.clear();
76         } else {
77
78                 double r, g, b, a;
79                 
80                 _gradient = Cairo::LinearGradient::create (0, 0, 0, height);
81                 
82                 for (StopList::const_iterator s = stops.begin(); s != stops.end(); ++s) {
83                         color_to_rgba (s->second, r, g, b, a);
84                         _gradient->add_color_stop_rgba (s->first, r, g, b, a);
85                 }
86         }
87
88         end_visual_change ();
89 }