Merge branch 'master' into ccmerge
[ardour.git] / libs / canvas / rectangle.cc
index 2d212abfd55a6e101cac33ececf1dd3c80b2b637..a5aa0a2895852dc4b46c4a9988a0e21254627ea2 100644 (file)
@@ -1,7 +1,28 @@
+/*
+    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.
+*/
+
 #include <iostream>
 #include <cairomm/context.h>
 #include "pbd/stacktrace.h"
 #include "pbd/compose.h"
+
+#include "canvas/canvas.h"
 #include "canvas/rectangle.h"
 #include "canvas/debug.h"
 #include "canvas/utils.h"
@@ -29,73 +50,63 @@ Rectangle::Rectangle (Group* parent, Rect const & rect)
 }
 
 void
-Rectangle::render (Rect const & /*area*/, Cairo::RefPtr<Cairo::Context> context) const
+Rectangle::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
 {
-       Rect plot = _rect;
+       Rect self = item_to_window (_rect);
+       boost::optional<Rect> d = self.intersection (area);
 
-       plot.x1 = min (plot.x1, CAIRO_MAX);
-       plot.y1 = min (plot.y1, CAIRO_MAX);
+       if (!d) {
+               return;
+       }
+       
+       Rect draw = d.get();
+       static const double boundary = 0.5;
+       const double x_limit = _canvas->visible_area().width();
+
+       draw.x0 = max (self.x0, max (0.0, draw.x0 - boundary));
+       draw.x1 = min (self.x1, min (x_limit, draw.x1 + boundary));
+
+       draw.y0 = max (self.y0, max (0.0, draw.y0 - boundary));
+       draw.y1 = min (self.y1, min (x_limit, draw.y1 + boundary));
+
+       Rect fill_rect = draw;
+       Rect stroke_rect = fill_rect.expand (0.5);
 
        if (_fill) {
-               setup_fill_context (context);
-               context->rectangle (plot.x0, plot.y0, plot.width(), plot.height());
-               
-               if (!_outline) {
-                       context->fill ();
+               if (_stops.empty()) {
+                       setup_fill_context (context);
                } else {
-                       
-                       /* special/common case: outline the entire rectangle is
-                        * requested, so just use the same path for the fill
-                        * and stroke.
-                        */
-
-                       if (_outline_what == What (LEFT|RIGHT|BOTTOM|TOP)) {
-                               context->fill_preserve();
-                               setup_outline_context (context);
-                               context->stroke ();
-                       } else {
-                               context->fill ();
-                       }
+                       setup_gradient_context (context, self, Duple (draw.x0, draw.y0));
                }
-       } 
+               context->rectangle (fill_rect.x0, fill_rect.y0, fill_rect.width(), fill_rect.height());
+               context->fill ();
+       }
        
        if (_outline) {
-               
-               if (_outline_what == What (LEFT|RIGHT|BOTTOM|TOP)) {
 
-                       /* if we filled and use full outline, we are already done */
+               setup_outline_context (context);
 
-                       if (!_fill) { 
-                               context->rectangle (plot.x0, plot.y0, plot.width(), plot.height());
-                               setup_outline_context (context);
-                               context->stroke ();
-                       }
-                       
-               } else {
-                       
-                       if (_outline_what & LEFT) {
-                               context->move_to (plot.x0, plot.y0);
-                               context->line_to (plot.x0, plot.y1);
-                       }
-                       
-                       if (_outline_what & BOTTOM) {
-                               context->move_to (plot.x0, plot.y1);
-                               context->line_to (plot.x1, plot.y1);
-                       }
-                       
-                       if (_outline_what & RIGHT) {
-                               context->move_to (plot.x1, plot.y0);
-                               context->line_to (plot.x1, plot.y1);
-                       }
-                       
-                       if (_outline_what & TOP) {
-                               context->move_to (plot.x0, plot.y0);
-                               context->line_to (plot.x1, plot.y0);
-                       }
-                       
-                       setup_outline_context (context);
-                       context->stroke ();
+               if (_outline_what & LEFT) {
+                       context->move_to (stroke_rect.x0, stroke_rect.y0);
+                       context->line_to (stroke_rect.x0, stroke_rect.y1);
+               }
+               
+               if (_outline_what & BOTTOM) {
+                       context->move_to (stroke_rect.x0, stroke_rect.y1);
+                       context->line_to (stroke_rect.x1, stroke_rect.y1);
                }
+               
+               if (_outline_what & RIGHT) {
+                       context->move_to (stroke_rect.x1, stroke_rect.y0);
+                       context->line_to (stroke_rect.x1, stroke_rect.y1);
+               }
+               
+               if (_outline_what & TOP) {
+                       context->move_to (stroke_rect.x0, stroke_rect.y0);
+                       context->line_to (stroke_rect.x1, stroke_rect.y0);
+               }
+               
+               context->stroke ();
        }
 }