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 <iostream>
|
|
|
|
#include <cairomm/context.h>
|
|
|
|
#include "pbd/stacktrace.h"
|
|
|
|
#include "pbd/compose.h"
|
2013-04-17 10:53:17 -04:00
|
|
|
|
|
|
|
#include "canvas/canvas.h"
|
2013-04-04 00:32:52 -04:00
|
|
|
#include "canvas/rectangle.h"
|
|
|
|
#include "canvas/debug.h"
|
|
|
|
#include "canvas/utils.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace ArdourCanvas;
|
|
|
|
|
|
|
|
Rectangle::Rectangle (Group* parent)
|
|
|
|
: Item (parent)
|
|
|
|
, Outline (parent)
|
|
|
|
, Fill (parent)
|
|
|
|
, _outline_what ((What) (LEFT | RIGHT | TOP | BOTTOM))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle::Rectangle (Group* parent, Rect const & rect)
|
|
|
|
: Item (parent)
|
|
|
|
, Outline (parent)
|
|
|
|
, Fill (parent)
|
|
|
|
, _rect (rect)
|
|
|
|
, _outline_what ((What) (LEFT | RIGHT | TOP | BOTTOM))
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-06-18 08:23:06 -04:00
|
|
|
Rectangle::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
|
2013-04-04 00:32:52 -04:00
|
|
|
{
|
2013-06-18 08:23:06 -04:00
|
|
|
Rect self = item_to_window (_rect);
|
2013-10-31 11:49:36 -04:00
|
|
|
boost::optional<Rect> r = self.intersection (area);
|
2013-06-18 13:46:24 -04:00
|
|
|
|
2013-10-31 11:49:36 -04:00
|
|
|
if (!r) {
|
2013-06-18 13:46:24 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-10-31 11:49:36 -04:00
|
|
|
Rect draw = r.get ();
|
2013-06-24 16:28:53 -04:00
|
|
|
|
2013-06-18 13:46:24 -04:00
|
|
|
if (_fill) {
|
2013-06-27 10:41:00 -04:00
|
|
|
if (_stops.empty()) {
|
|
|
|
setup_fill_context (context);
|
|
|
|
} else {
|
|
|
|
setup_gradient_context (context, self, Duple (draw.x0, draw.y0));
|
|
|
|
}
|
2014-01-10 14:36:05 -05:00
|
|
|
|
2013-10-31 11:49:36 -04:00
|
|
|
context->rectangle (draw.x0, draw.y0, draw.width(), draw.height());
|
2013-06-24 16:28:53 -04:00
|
|
|
context->fill ();
|
2014-01-10 14:36:05 -05:00
|
|
|
}
|
2013-04-12 11:08:24 -04:00
|
|
|
|
|
|
|
if (_outline) {
|
2013-06-24 16:28:53 -04:00
|
|
|
|
2013-05-02 18:21:35 -04:00
|
|
|
setup_outline_context (context);
|
2014-01-10 14:36:05 -05:00
|
|
|
|
2014-02-13 18:15:47 -05:00
|
|
|
/* see the cairo FAQ on single pixel lines to see why we do
|
|
|
|
* the 0.5 pixel additions.
|
|
|
|
*/
|
|
|
|
|
2014-01-07 20:56:36 -05:00
|
|
|
if (_outline_what == What (LEFT|RIGHT|BOTTOM|TOP)) {
|
|
|
|
|
2014-01-10 14:36:05 -05:00
|
|
|
context->rectangle (self.x0 + 0.5, self.y0 + 0.5, self.width() - 1.0, self.height() - 1.0);
|
2013-10-31 11:49:36 -04:00
|
|
|
|
2014-01-07 20:56:36 -05:00
|
|
|
} else {
|
|
|
|
|
|
|
|
if (_outline_what & LEFT) {
|
|
|
|
/* vertical line: move x-coordinate by 0.5 pixels */
|
|
|
|
context->move_to (self.x0 + 0.5, self.y0);
|
|
|
|
context->line_to (self.x0 + 0.5, self.y1);
|
|
|
|
}
|
|
|
|
|
2014-02-14 09:49:16 -05:00
|
|
|
if (_outline_what & TOP) {
|
|
|
|
/* horizontal line: move y-coordinate by 0.5 pixels */
|
|
|
|
context->move_to (self.x0, self.y0 + 0.5);
|
|
|
|
context->line_to (self.x1, self.y0 + 0.5);
|
|
|
|
}
|
|
|
|
|
2014-01-07 20:56:36 -05:00
|
|
|
if (_outline_what & BOTTOM) {
|
|
|
|
/* horizontal line: move y-coordinate by 0.5 pixels */
|
2014-02-25 11:35:00 -05:00
|
|
|
context->move_to (self.x0, self.y1 - 0.5);
|
|
|
|
context->line_to (self.x1, self.y1 - 0.5);
|
2014-01-07 20:56:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (_outline_what & RIGHT) {
|
|
|
|
/* vertical line: move x-coordinate by 0.5 pixels */
|
2014-02-13 18:15:47 -05:00
|
|
|
context->move_to (self.x1 + 0.5, self.y0);
|
|
|
|
context->line_to (self.x1 + 0.5, self.y1);
|
2014-01-07 20:56:36 -05:00
|
|
|
}
|
|
|
|
|
2013-06-24 16:28:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
context->stroke ();
|
2013-04-04 00:32:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Rectangle::compute_bounding_box () const
|
|
|
|
{
|
2014-01-08 10:42:14 -05:00
|
|
|
if (!_rect.empty()) {
|
|
|
|
Rect r = _rect.fix ();
|
2014-02-14 09:49:16 -05:00
|
|
|
/* take into acount the 0.5 addition to the bounding
|
|
|
|
box for the right and bottom edges, see ::render() above
|
|
|
|
*/
|
2014-01-08 10:42:14 -05:00
|
|
|
|
2014-02-14 09:49:16 -05:00
|
|
|
r.x1 += 0.5;
|
|
|
|
r.y1 += 0.5;
|
|
|
|
|
|
|
|
_bounding_box = r;
|
2014-01-08 10:42:14 -05:00
|
|
|
}
|
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
_bounding_box_dirty = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Rectangle::set (Rect const & r)
|
|
|
|
{
|
|
|
|
/* We don't update the bounding box here; it's just
|
|
|
|
as cheap to do it when asked.
|
|
|
|
*/
|
|
|
|
|
|
|
|
begin_change ();
|
|
|
|
|
|
|
|
_rect = r;
|
|
|
|
|
|
|
|
_bounding_box_dirty = true;
|
|
|
|
end_change ();
|
|
|
|
|
|
|
|
DEBUG_TRACE (PBD::DEBUG::CanvasItemsDirtied, "canvas item dirty: rectangle change (set)\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Rectangle::set_x0 (Coord x0)
|
|
|
|
{
|
|
|
|
begin_change ();
|
|
|
|
|
|
|
|
_rect.x0 = x0;
|
|
|
|
|
|
|
|
_bounding_box_dirty = true;
|
|
|
|
end_change ();
|
|
|
|
|
|
|
|
DEBUG_TRACE (PBD::DEBUG::CanvasItemsDirtied, "canvas item dirty: rectangle change (x0)\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Rectangle::set_y0 (Coord y0)
|
|
|
|
{
|
|
|
|
begin_change ();
|
|
|
|
|
|
|
|
_rect.y0 = y0;
|
|
|
|
|
|
|
|
_bounding_box_dirty = true;
|
|
|
|
end_change();
|
|
|
|
|
|
|
|
DEBUG_TRACE (PBD::DEBUG::CanvasItemsDirtied, "canvas item dirty: rectangle change (y0)\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Rectangle::set_x1 (Coord x1)
|
|
|
|
{
|
|
|
|
begin_change ();
|
|
|
|
|
|
|
|
_rect.x1 = x1;
|
|
|
|
|
|
|
|
_bounding_box_dirty = true;
|
|
|
|
end_change ();
|
|
|
|
|
|
|
|
DEBUG_TRACE (PBD::DEBUG::CanvasItemsDirtied, "canvas item dirty: rectangle change (x1)\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Rectangle::set_y1 (Coord y1)
|
|
|
|
{
|
|
|
|
begin_change ();
|
|
|
|
|
|
|
|
_rect.y1 = y1;
|
|
|
|
|
|
|
|
_bounding_box_dirty = true;
|
|
|
|
end_change ();
|
|
|
|
|
|
|
|
DEBUG_TRACE (PBD::DEBUG::CanvasItemsDirtied, "canvas item dirty: rectangle change (y1)\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Rectangle::set_outline_what (What what)
|
|
|
|
{
|
|
|
|
begin_change ();
|
|
|
|
|
|
|
|
_outline_what = what;
|
|
|
|
|
|
|
|
end_change ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Rectangle::set_outline_what (int what)
|
|
|
|
{
|
|
|
|
set_outline_what ((What) what);
|
|
|
|
}
|
|
|
|
|