merge with master, primarily for adrian's maximise-mixer change
[ardour.git] / libs / canvas / flag.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 "canvas/flag.h"
21 #include "canvas/text.h"
22 #include "canvas/rectangle.h"
23 #include "canvas/line.h"
24
25 using namespace std;
26 using namespace ArdourCanvas;
27
28 Flag::Flag (Group* parent, Distance height, Color outline_color, Color fill_color, Duple position)
29         : Group (parent)
30         , _outline_color (outline_color)
31         , _fill_color (fill_color)
32 {
33         _text = new Text (this);
34         _text->set_alignment (Pango::ALIGN_CENTER);
35         _text->set_color (_outline_color);
36
37         _line = new Line (this);
38         _line->set_outline_color (_outline_color);
39         set_height (height);
40
41         _rectangle = new Rectangle (this);
42         _rectangle->set_outline_color (_outline_color);
43         _rectangle->set_fill_color (_fill_color);
44
45         _text->raise_to_top ();
46
47         set_position (position);
48 }
49
50 void
51 Flag::set_text (string const & text)
52 {
53         _text->set (text);
54         boost::optional<Rect> bbox = _text->bounding_box ();
55         assert (bbox);
56
57         Duple flag_size (bbox.get().width() + 10, bbox.get().height() + 4);
58         
59         _text->set_position (Duple (5, 2));
60         _rectangle->set (Rect (0, 0, flag_size.x, flag_size.y));
61 }
62
63 void
64 Flag::set_height (Distance h)
65 {
66         _line->set (Duple (0, 0), Duple (0, h));
67 }
68
69 bool
70 Flag::covers (Duple const & point) const
71 {
72         if (_rectangle) {
73                 return _rectangle->covers (point);
74         } 
75
76         return false;
77 }