summaryrefslogtreecommitdiff
path: root/libs/canvas/rectangle.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-01-07 20:56:36 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2014-01-07 20:56:36 -0500
commitc235d3da994aba4febd644afa09bd5c836c050d5 (patch)
tree6135ecd7d96e0d98ff95b03eab8388c86c7f0456 /libs/canvas/rectangle.cc
parent5fec68e6c5864e942b935984f767fac7a88414f4 (diff)
mostly fix conceptual error in how canvas rectangle frames are drawn
Diffstat (limited to 'libs/canvas/rectangle.cc')
-rw-r--r--libs/canvas/rectangle.cc62
1 files changed, 38 insertions, 24 deletions
diff --git a/libs/canvas/rectangle.cc b/libs/canvas/rectangle.cc
index d90fd3a943..7b7f67c3c6 100644
--- a/libs/canvas/rectangle.cc
+++ b/libs/canvas/rectangle.cc
@@ -36,7 +36,6 @@ Rectangle::Rectangle (Group* parent)
, Fill (parent)
, _outline_what ((What) (LEFT | RIGHT | TOP | BOTTOM))
{
-
}
Rectangle::Rectangle (Group* parent, Rect const & rect)
@@ -76,39 +75,54 @@ Rectangle::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) con
setup_outline_context (context);
- context->save ();
- context->rectangle (draw.x0, draw.y0, draw.width(), draw.height());
- context->clip ();
+ if (_outline_what == What (LEFT|RIGHT|BOTTOM|TOP)) {
+
+ context->rectangle (self.x0 + 0.5, self.y0 + 0.5, self.width(), self.height());
- if (_outline_what & LEFT) {
- context->move_to (self.x0, self.y0);
- context->line_to (self.x0, self.y1);
- }
-
- if (_outline_what & BOTTOM) {
- context->move_to (self.x0, self.y1);
- context->line_to (self.x1, self.y1);
- }
-
- if (_outline_what & RIGHT) {
- context->move_to (self.x1, self.y0);
- context->line_to (self.x1, self.y1);
- }
-
- if (_outline_what & TOP) {
- context->move_to (self.x0, self.y0);
- context->line_to (self.x1, self.y0);
+ } else {
+
+ context->set_line_cap (Cairo::LINE_CAP_SQUARE);
+
+ /* see the cairo FAQ on single pixel lines to see why we do
+ * this expansion of the perimeter.
+ */
+
+ 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);
+ }
+
+ if (_outline_what & BOTTOM) {
+ /* horizontal line: move y-coordinate by 0.5 pixels */
+ context->move_to (self.x0, self.y1 - 0.5);
+ context->line_to (self.x1, self.y1 - 0.5);
+ }
+
+ if (_outline_what & RIGHT) {
+ /* vertical line: move x-coordinate by 0.5 pixels */
+ context->move_to (self.x1 - 0.5, self.y0);
+ context->line_to (self.x1 - 0.5, self.y1);
+ }
+
+ 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);
+ }
}
context->stroke ();
- context->restore ();
}
}
void
Rectangle::compute_bounding_box () const
{
- Rect r = _rect.fix ();
+ /* boundary is drawn inside our coordinates but expanded by 0.5 to get
+ * single-pixel drawing correct.
+ */
+ Rect r = _rect.fix();
_bounding_box = boost::optional<Rect> (r.expand (_outline_width/2.0));
_bounding_box_dirty = false;
}