1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_CPPCANVAS_POLYPOLYGON_HXX
21 #define INCLUDED_CPPCANVAS_POLYPOLYGON_HXX
23 #include <com/sun/star/uno/Reference.hxx>
25 #include <boost/shared_ptr.hpp>
26 #include <cppcanvas/canvasgraphic.hxx>
34 namespace com
{ namespace sun
{ namespace star
{ namespace rendering
40 /* Definition of PolyPolygon interface */
45 /** This interface defines a PolyPolygon canvas object
47 Consider this object part of the view, and not of the model
48 data. Although the given polygon is typically copied and held
49 internally (to facilitate migration to incompatible canvases),
50 ::basegfx::B2DPolygon et al. are ref-counted copy-on-write
51 classes, i.e. memory shouldn't be wasted. On the other hand,
52 the API polygon created internally _does_ necessarily
53 duplicate the data held, but can be easily flushed away via
56 class PolyPolygon
: public virtual CanvasGraphic
59 virtual void addPolygon( const ::basegfx::B2DPolygon
& rPoly
) = 0;
60 virtual void addPolyPolygon( const ::basegfx::B2DPolyPolygon
& rPoly
) = 0;
62 /** Set polygon fill color
64 virtual void setRGBAFillColor( Color::IntSRGBA
) = 0;
65 /** Set polygon line color
67 virtual void setRGBALineColor( Color::IntSRGBA
) = 0;
68 /** Get polygon fill color
70 virtual Color::IntSRGBA
getRGBAFillColor() const = 0;
71 /** Get polygon line color
73 virtual Color::IntSRGBA
getRGBALineColor() const = 0;
75 virtual void setStrokeWidth( const double& rStrokeWidth
) = 0;
76 virtual double getStrokeWidth() const = 0;
78 virtual ::com::sun::star::uno::Reference
<
79 ::com::sun::star::rendering::XPolyPolygon2D
> getUNOPolyPolygon() const = 0;
82 typedef ::boost::shared_ptr
< ::cppcanvas::PolyPolygon
> PolyPolygonSharedPtr
;
85 #endif // INCLUDED_CPPCANVAS_POLYPOLYGON_HXX
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */