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: implspritecanvas.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 _CPPCANVAS_IMPLSPRITECANVAS_HXX
32 #define _CPPCANVAS_IMPLSPRITECANVAS_HXX
34 #ifndef _COM_SUN_STAR_RENDERING_XSPRITECANVAS_HPP__
35 #include <com/sun/star/rendering/XSpriteCanvas.hpp>
37 #include <basegfx/vector/b2dsize.hxx>
38 #include <basegfx/matrix/b2dhommatrix.hxx>
40 #ifndef BOOST_SHARED_PTR_HPP_INCLUDED
41 #include <boost/shared_ptr.hpp>
45 #include <cppcanvas/spritecanvas.hxx>
47 #include <implbitmapcanvas.hxx>
54 class ImplSpriteCanvas
: public virtual SpriteCanvas
, protected virtual ImplBitmapCanvas
57 ImplSpriteCanvas( const ::com::sun::star::uno::Reference
<
58 ::com::sun::star::rendering::XSpriteCanvas
>& rCanvas
);
59 ImplSpriteCanvas(const ImplSpriteCanvas
&);
61 virtual ~ImplSpriteCanvas();
63 virtual void setTransformation( const ::basegfx::B2DHomMatrix
& rMatrix
);
65 virtual bool updateScreen( bool bUpdateAll
) const;
67 virtual CustomSpriteSharedPtr
createCustomSprite( const ::basegfx::B2DSize
& ) const;
68 virtual SpriteSharedPtr
createClonedSprite( const SpriteSharedPtr
& ) const;
70 SpriteSharedPtr
createSpriteFromBitmaps(
71 const ::com::sun::star::uno::Sequence
<
72 ::com::sun::star::uno::Reference
<
73 ::com::sun::star::rendering::XBitmap
> >& animationBitmaps
,
74 sal_Int8 interpolationMode
);
76 virtual CanvasSharedPtr
clone() const;
78 virtual ::com::sun::star::uno::Reference
<
79 ::com::sun::star::rendering::XSpriteCanvas
> getUNOSpriteCanvas() const;
81 /** This class passes the view transformation
84 This helper class is necessary, because the
85 ImplSpriteCanvas object cannot hand out shared ptrs of
86 itself, but has somehow pass an object to child
87 sprites those can query for the canvas' view transform.
89 class TransformationArbiter
92 TransformationArbiter();
94 void setTransformation( const ::basegfx::B2DHomMatrix
& rViewTransform
);
95 ::basegfx::B2DHomMatrix
getTransformation() const;
98 ::basegfx::B2DHomMatrix maTransformation
;
101 typedef ::boost::shared_ptr
< TransformationArbiter
> TransformationArbiterSharedPtr
;
104 // default: disabled assignment
105 ImplSpriteCanvas
& operator=( const ImplSpriteCanvas
& );
107 const ::com::sun::star::uno::Reference
< ::com::sun::star::rendering::XSpriteCanvas
> mxSpriteCanvas
;
108 TransformationArbiterSharedPtr mpTransformArbiter
;
113 #endif /* _CPPCANVAS_IMPLSPRITECANVAS_HXX */