X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fcanvas%2Fpolygon.cc;h=1103cedbeea045861cb16ef3e5fa03c09efffd65;hb=5e0e41e068a04603198a4e50464d794156f42c47;hp=b89a7ca8802bf587008fd7ed2c8b72ed989e1cf8;hpb=30968b854257cb5f9159ca59589f783c85615601;p=ardour.git diff --git a/libs/canvas/polygon.cc b/libs/canvas/polygon.cc index b89a7ca880..1103cedbee 100644 --- a/libs/canvas/polygon.cc +++ b/libs/canvas/polygon.cc @@ -1,4 +1,22 @@ -#include "pbd/xml++.h" +/* + Copyright (C) 2011-2013 Paul Davis + Author: Carl Hetherington + + 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 "canvas/polygon.h" using namespace ArdourCanvas; @@ -19,7 +37,9 @@ Polygon::render (Rect const & area, Cairo::RefPtr context) const render_path (area, context); if (!_points.empty ()) { - context->move_to (_points.front().x, _points.front().y); + /* close path */ + Duple p = item_to_window (Duple (_points.front().x, _points.front().y)); + context->move_to (p.x, p.y); } context->stroke_preserve (); @@ -31,26 +51,3 @@ Polygon::render (Rect const & area, Cairo::RefPtr context) const } } -XMLNode * -Polygon::get_state () const -{ - XMLNode* node = new XMLNode ("Polygon"); -#ifdef CANVAS_DEBUG - if (!name.empty ()) { - node->add_property ("name", name); - } -#endif - add_poly_item_state (node); - add_outline_state (node); - add_fill_state (node); - return node; -} - - -void -Polygon::set_state (XMLNode const * node) -{ - set_poly_item_state (node); - set_outline_state (node); - set_fill_state (node); -}