xref: /AOO41X/main/slideshow/source/engine/shapes/viewbackgroundshape.hxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir #ifndef INCLUDED_SLIDESHOW_VIEWBACKGROUNDSHAPE_HXX
29*cdf0e10cSrcweir #define INCLUDED_SLIDESHOW_VIEWBACKGROUNDSHAPE_HXX
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir #include <com/sun/star/uno/Reference.hxx>
32*cdf0e10cSrcweir #include <com/sun/star/rendering/XBitmap.hpp>
33*cdf0e10cSrcweir 
34*cdf0e10cSrcweir #include <basegfx/range/b2drectangle.hxx>
35*cdf0e10cSrcweir #include <basegfx/matrix/b2dhommatrix.hxx>
36*cdf0e10cSrcweir #include <cppcanvas/spritecanvas.hxx>
37*cdf0e10cSrcweir 
38*cdf0e10cSrcweir #include <boost/shared_ptr.hpp>
39*cdf0e10cSrcweir #include <boost/utility.hpp>
40*cdf0e10cSrcweir 
41*cdf0e10cSrcweir #include "gdimtftools.hxx"
42*cdf0e10cSrcweir #include "viewlayer.hxx"
43*cdf0e10cSrcweir 
44*cdf0e10cSrcweir 
45*cdf0e10cSrcweir namespace slideshow
46*cdf0e10cSrcweir {
47*cdf0e10cSrcweir     namespace internal
48*cdf0e10cSrcweir     {
49*cdf0e10cSrcweir         /** This class is the viewable representation of a draw
50*cdf0e10cSrcweir             document's background, associated to a specific View
51*cdf0e10cSrcweir 
52*cdf0e10cSrcweir             The class is able to render the associated background on
53*cdf0e10cSrcweir             View implementations.
54*cdf0e10cSrcweir          */
55*cdf0e10cSrcweir         class ViewBackgroundShape : private boost::noncopyable
56*cdf0e10cSrcweir         {
57*cdf0e10cSrcweir         public:
58*cdf0e10cSrcweir             /** Create a ViewBackgroundShape for the given View
59*cdf0e10cSrcweir 
60*cdf0e10cSrcweir             	@param rView
61*cdf0e10cSrcweir                 The associated View object.
62*cdf0e10cSrcweir 
63*cdf0e10cSrcweir                 @param rShapeBounds
64*cdf0e10cSrcweir                 Bounds of the background shape, in document coordinate
65*cdf0e10cSrcweir                 system.
66*cdf0e10cSrcweir              */
67*cdf0e10cSrcweir             ViewBackgroundShape( const ViewLayerSharedPtr& 		rViewLayer,
68*cdf0e10cSrcweir                                  const ::basegfx::B2DRectangle&	rShapeBounds );
69*cdf0e10cSrcweir 
70*cdf0e10cSrcweir 			/** Query the associated view layer of this shape
71*cdf0e10cSrcweir              */
72*cdf0e10cSrcweir             ViewLayerSharedPtr getViewLayer() const;
73*cdf0e10cSrcweir 
74*cdf0e10cSrcweir             bool render( const GDIMetaFileSharedPtr& rMtf ) const;
75*cdf0e10cSrcweir 
76*cdf0e10cSrcweir         private:
77*cdf0e10cSrcweir             /** Prefetch bitmap for given canvas
78*cdf0e10cSrcweir              */
79*cdf0e10cSrcweir             bool prefetch( const ::cppcanvas::CanvasSharedPtr&	rDestinationCanvas,
80*cdf0e10cSrcweir                            const GDIMetaFileSharedPtr&			rMtf ) const;
81*cdf0e10cSrcweir 
82*cdf0e10cSrcweir             /** The view layer this object is part of.
83*cdf0e10cSrcweir              */
84*cdf0e10cSrcweir             ViewLayerSharedPtr									mpViewLayer;
85*cdf0e10cSrcweir 
86*cdf0e10cSrcweir             /// Generated content bitmap, already with correct output size
87*cdf0e10cSrcweir             mutable ::com::sun::star::uno::Reference<
88*cdf0e10cSrcweir                 ::com::sun::star::rendering::XBitmap >	mxBitmap;
89*cdf0e10cSrcweir 
90*cdf0e10cSrcweir             /// The last metafile a render object was generated for
91*cdf0e10cSrcweir             mutable GDIMetaFileSharedPtr						mpLastMtf;
92*cdf0e10cSrcweir 
93*cdf0e10cSrcweir             /// The canvas, mpRenderer is associated with
94*cdf0e10cSrcweir             mutable ::basegfx::B2DHomMatrix						maLastTransformation;
95*cdf0e10cSrcweir 
96*cdf0e10cSrcweir             const ::basegfx::B2DRectangle						maBounds;
97*cdf0e10cSrcweir         };
98*cdf0e10cSrcweir 
99*cdf0e10cSrcweir         typedef ::boost::shared_ptr< ViewBackgroundShape > ViewBackgroundShapeSharedPtr;
100*cdf0e10cSrcweir 
101*cdf0e10cSrcweir     }
102*cdf0e10cSrcweir }
103*cdf0e10cSrcweir 
104*cdf0e10cSrcweir #endif /* INCLUDED_SLIDESHOW_VIEWBACKGROUNDSHAPE_HXX */
105