2013-04-15 22:10:18 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2011-2013 Paul Davis
|
|
|
|
Author: Carl Hetherington <cth@carlh.net>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
#include "canvas/flag.h"
|
|
|
|
#include "canvas/text.h"
|
|
|
|
#include "canvas/rectangle.h"
|
|
|
|
#include "canvas/line.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace ArdourCanvas;
|
|
|
|
|
2015-03-14 00:21:29 -04:00
|
|
|
Flag::Flag (Canvas* canvas, Distance height, Color outline_color, Color fill_color, Duple position, bool invert)
|
2014-06-22 11:41:05 -04:00
|
|
|
: Container (canvas)
|
2013-04-04 00:32:52 -04:00
|
|
|
, _outline_color (outline_color)
|
|
|
|
, _fill_color (fill_color)
|
2015-03-14 00:21:29 -04:00
|
|
|
, _invert (invert)
|
2014-06-12 14:53:44 -04:00
|
|
|
{
|
|
|
|
setup (height, position);
|
|
|
|
}
|
|
|
|
|
2015-03-14 00:21:29 -04:00
|
|
|
Flag::Flag (Item* parent, Distance height, Color outline_color, Color fill_color, Duple position, bool invert)
|
2014-06-22 11:41:05 -04:00
|
|
|
: Container (parent)
|
2014-06-12 14:53:44 -04:00
|
|
|
, _outline_color (outline_color)
|
|
|
|
, _fill_color (fill_color)
|
2015-03-14 00:21:29 -04:00
|
|
|
, _invert (invert)
|
2014-06-12 14:53:44 -04:00
|
|
|
{
|
|
|
|
setup (height, position);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Flag::setup (Distance height, Duple position)
|
2013-04-04 00:32:52 -04:00
|
|
|
{
|
|
|
|
_text = new Text (this);
|
|
|
|
_text->set_alignment (Pango::ALIGN_CENTER);
|
|
|
|
_text->set_color (_outline_color);
|
|
|
|
|
|
|
|
_line = new Line (this);
|
|
|
|
_line->set_outline_color (_outline_color);
|
|
|
|
|
|
|
|
_rectangle = new Rectangle (this);
|
|
|
|
_rectangle->set_outline_color (_outline_color);
|
|
|
|
_rectangle->set_fill_color (_fill_color);
|
|
|
|
|
|
|
|
_text->raise_to_top ();
|
|
|
|
|
2015-03-14 00:21:29 -04:00
|
|
|
set_height (height);
|
2013-04-04 00:32:52 -04:00
|
|
|
set_position (position);
|
|
|
|
}
|
|
|
|
|
2014-12-06 16:07:32 -05:00
|
|
|
void
|
|
|
|
Flag::set_font_description (Pango::FontDescription font_description)
|
|
|
|
{
|
|
|
|
_text->set_font_description (font_description);
|
|
|
|
}
|
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
void
|
|
|
|
Flag::set_text (string const & text)
|
|
|
|
{
|
|
|
|
_text->set (text);
|
|
|
|
boost::optional<Rect> bbox = _text->bounding_box ();
|
|
|
|
assert (bbox);
|
|
|
|
|
2014-02-11 12:40:44 -05:00
|
|
|
Duple flag_size (bbox.get().width() + 10, bbox.get().height() + 4);
|
2013-04-04 00:32:52 -04:00
|
|
|
|
2015-03-14 00:21:29 -04:00
|
|
|
if (_invert) {
|
|
|
|
const Distance h = fabs(_line->y1() - _line->y0());
|
|
|
|
_text->set_position (Duple (5, h - flag_size.y + 2));
|
|
|
|
_rectangle->set (Rect (0, h - flag_size.y, flag_size.x, h));
|
|
|
|
} else {
|
|
|
|
_text->set_position (Duple (5, 2));
|
|
|
|
_rectangle->set (Rect (0, 0, flag_size.x, flag_size.y));
|
|
|
|
}
|
2013-04-04 00:32:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-02-14 12:06:44 -05:00
|
|
|
Flag::set_height (Distance h)
|
2013-04-04 00:32:52 -04:00
|
|
|
{
|
2014-02-14 12:06:44 -05:00
|
|
|
_line->set (Duple (0, 0), Duple (0, h));
|
2015-03-14 00:21:29 -04:00
|
|
|
|
|
|
|
if (_invert) {
|
|
|
|
boost::optional<Rect> bbox = _text->bounding_box ();
|
|
|
|
if (bbox) {
|
|
|
|
Duple flag_size (bbox.get().width() + 10, bbox.get().height() + 4);
|
|
|
|
_rectangle->set (Rect (0, h - flag_size.y, flag_size.x, h));
|
|
|
|
_text->set_position (Duple (5, h - flag_size.y + 2));
|
|
|
|
}
|
|
|
|
}
|
2013-04-04 00:32:52 -04:00
|
|
|
}
|
2013-11-04 11:56:10 -05:00
|
|
|
|
|
|
|
bool
|
|
|
|
Flag::covers (Duple const & point) const
|
|
|
|
{
|
|
|
|
if (_rectangle) {
|
|
|
|
return _rectangle->covers (point);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|