add headers to all canvas .cc and .h files
[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         begin_change ();
43         
44         _fill_color = color;
45
46         end_change ();
47 }
48
49 void
50 Fill::set_fill (bool fill)
51 {
52         begin_change ();
53         
54         _fill = fill;
55
56         end_change ();
57 }
58
59 void
60 Fill::setup_fill_context (Cairo::RefPtr<Cairo::Context> context) const
61 {
62         set_source_rgba (context, _fill_color);
63 }