1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: implpolypolygon.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _CANVAS_IMPLPOLYPOLYGON_HXX
32 #define _CANVAS_IMPLPOLYPOLYGON_HXX
34 #include <com/sun/star/uno/Reference.hxx>
35 #ifndef _COM_SUN_STAR_RENDERING_XPOLYPOLYGON2D_HPP__
36 #include <com/sun/star/rendering/XPolyPolygon2D.hpp>
38 #ifndef _COM_SUN_STAR_RENDERING_XGRAPHICDEVICE_HPP__
39 #include <com/sun/star/rendering/XGraphicDevice.hpp>
41 #ifndef _COM_SUN_STAR_RENDERING_STROKEATTRIBUTES_HPP__
42 #include <com/sun/star/rendering/StrokeAttributes.hpp>
45 #include <cppcanvas/polypolygon.hxx>
46 #include <canvasgraphichelper.hxx>
48 namespace com
{ namespace sun
{ namespace star
{ namespace rendering
59 class ImplPolyPolygon
: public virtual ::cppcanvas::PolyPolygon
, protected CanvasGraphicHelper
62 ImplPolyPolygon( const CanvasSharedPtr
& rParentCanvas
,
63 const ::com::sun::star::uno::Reference
<
64 ::com::sun::star::rendering::XPolyPolygon2D
>& rPolyPoly
);
66 virtual ~ImplPolyPolygon();
68 virtual void addPolygon( const ::basegfx::B2DPolygon
& rPoly
);
69 virtual void addPolyPolygon( const ::basegfx::B2DPolyPolygon
& rPoly
);
71 virtual void setRGBAFillColor( Color::IntSRGBA
);
72 virtual void setRGBALineColor( Color::IntSRGBA
);
73 virtual Color::IntSRGBA
getRGBAFillColor() const;
74 virtual Color::IntSRGBA
getRGBALineColor() const;
76 virtual void setStrokeWidth( const double& rStrokeWidth
);
77 virtual double getStrokeWidth() const;
79 virtual bool draw() const;
81 virtual ::com::sun::star::uno::Reference
<
82 ::com::sun::star::rendering::XPolyPolygon2D
> getUNOPolyPolygon() const;
85 // default: disabled copy/assignment
86 ImplPolyPolygon(const ImplPolyPolygon
&);
87 ImplPolyPolygon
& operator= ( const ImplPolyPolygon
& );
89 const ::com::sun::star::uno::Reference
< ::com::sun::star::rendering::XPolyPolygon2D
> mxPolyPoly
;
91 ::com::sun::star::rendering::StrokeAttributes maStrokeAttributes
;
93 ::com::sun::star::uno::Sequence
< double > maFillColor
;
94 ::com::sun::star::uno::Sequence
< double > maStrokeColor
;
96 bool mbStrokeColorSet
;
102 #endif /* _CANVAS_IMPLPOLYPOLYGON_HXX */