1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #ifndef _CPPCANVAS_IMPLSPRITECANVAS_HXX
30 #define _CPPCANVAS_IMPLSPRITECANVAS_HXX
32 #include <com/sun/star/rendering/XSpriteCanvas.hpp>
33 #include <basegfx/vector/b2dsize.hxx>
34 #include <basegfx/matrix/b2dhommatrix.hxx>
36 #include <boost/shared_ptr.hpp>
39 #include <cppcanvas/spritecanvas.hxx>
41 #include <implbitmapcanvas.hxx>
48 class ImplSpriteCanvas
: public virtual SpriteCanvas
, protected virtual ImplBitmapCanvas
51 ImplSpriteCanvas( const ::com::sun::star::uno::Reference
<
52 ::com::sun::star::rendering::XSpriteCanvas
>& rCanvas
);
53 ImplSpriteCanvas(const ImplSpriteCanvas
&);
55 virtual ~ImplSpriteCanvas();
57 virtual void setTransformation( const ::basegfx::B2DHomMatrix
& rMatrix
);
59 virtual bool updateScreen( bool bUpdateAll
) const;
61 virtual CustomSpriteSharedPtr
createCustomSprite( const ::basegfx::B2DSize
& ) const;
62 virtual SpriteSharedPtr
createClonedSprite( const SpriteSharedPtr
& ) const;
64 virtual CanvasSharedPtr
clone() const;
66 virtual ::com::sun::star::uno::Reference
<
67 ::com::sun::star::rendering::XSpriteCanvas
> getUNOSpriteCanvas() const;
69 /** This class passes the view transformation
72 This helper class is necessary, because the
73 ImplSpriteCanvas object cannot hand out shared ptrs of
74 itself, but has somehow pass an object to child
75 sprites those can query for the canvas' view transform.
77 class TransformationArbiter
80 TransformationArbiter();
82 void setTransformation( const ::basegfx::B2DHomMatrix
& rViewTransform
);
83 ::basegfx::B2DHomMatrix
getTransformation() const;
86 ::basegfx::B2DHomMatrix maTransformation
;
89 typedef ::boost::shared_ptr
< TransformationArbiter
> TransformationArbiterSharedPtr
;
92 // default: disabled assignment
93 ImplSpriteCanvas
& operator=( const ImplSpriteCanvas
& );
95 const ::com::sun::star::uno::Reference
< ::com::sun::star::rendering::XSpriteCanvas
> mxSpriteCanvas
;
96 TransformationArbiterSharedPtr mpTransformArbiter
;
101 #endif /* _CPPCANVAS_IMPLSPRITECANVAS_HXX */
103 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */