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 // MARKER(update_precomp.py): autogen include statement, do not remove 29*cdf0e10cSrcweir #include "precompiled_cppcanvas.hxx" 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir #include <rtl/logfile.hxx> 32*cdf0e10cSrcweir #include <com/sun/star/rendering/XBitmap.hpp> 33*cdf0e10cSrcweir #include <com/sun/star/rendering/RepaintResult.hpp> 34*cdf0e10cSrcweir #include <com/sun/star/rendering/XCachedPrimitive.hpp> 35*cdf0e10cSrcweir #include <vcl/bitmapex.hxx> 36*cdf0e10cSrcweir #include <tools/gen.hxx> 37*cdf0e10cSrcweir #include <vcl/canvastools.hxx> 38*cdf0e10cSrcweir #include <canvas/canvastools.hxx> 39*cdf0e10cSrcweir #include <basegfx/matrix/b2dhommatrix.hxx> 40*cdf0e10cSrcweir #include <basegfx/vector/b2dsize.hxx> 41*cdf0e10cSrcweir #include <basegfx/point/b2dpoint.hxx> 42*cdf0e10cSrcweir #include <basegfx/range/b2drange.hxx> 43*cdf0e10cSrcweir #include <basegfx/tools/canvastools.hxx> 44*cdf0e10cSrcweir #include <boost/utility.hpp> 45*cdf0e10cSrcweir #include "cachedprimitivebase.hxx" 46*cdf0e10cSrcweir #include "bitmapaction.hxx" 47*cdf0e10cSrcweir #include "outdevstate.hxx" 48*cdf0e10cSrcweir #include "mtftools.hxx" 49*cdf0e10cSrcweir #include <basegfx/matrix/b2dhommatrixtools.hxx> 50*cdf0e10cSrcweir 51*cdf0e10cSrcweir 52*cdf0e10cSrcweir using namespace ::com::sun::star; 53*cdf0e10cSrcweir 54*cdf0e10cSrcweir namespace cppcanvas 55*cdf0e10cSrcweir { 56*cdf0e10cSrcweir namespace internal 57*cdf0e10cSrcweir { 58*cdf0e10cSrcweir namespace 59*cdf0e10cSrcweir { 60*cdf0e10cSrcweir 61*cdf0e10cSrcweir class BitmapAction : public CachedPrimitiveBase 62*cdf0e10cSrcweir { 63*cdf0e10cSrcweir public: 64*cdf0e10cSrcweir BitmapAction( const ::BitmapEx&, 65*cdf0e10cSrcweir const ::basegfx::B2DPoint& rDstPoint, 66*cdf0e10cSrcweir const CanvasSharedPtr&, 67*cdf0e10cSrcweir const OutDevState& ); 68*cdf0e10cSrcweir BitmapAction( const ::BitmapEx&, 69*cdf0e10cSrcweir const ::basegfx::B2DPoint& rDstPoint, 70*cdf0e10cSrcweir const ::basegfx::B2DVector& rDstSize, 71*cdf0e10cSrcweir const CanvasSharedPtr&, 72*cdf0e10cSrcweir const OutDevState& ); 73*cdf0e10cSrcweir 74*cdf0e10cSrcweir virtual bool render( const ::basegfx::B2DHomMatrix& rTransformation, 75*cdf0e10cSrcweir const Subset& rSubset ) const; 76*cdf0e10cSrcweir 77*cdf0e10cSrcweir virtual ::basegfx::B2DRange getBounds( const ::basegfx::B2DHomMatrix& rTransformation ) const; 78*cdf0e10cSrcweir virtual ::basegfx::B2DRange getBounds( const ::basegfx::B2DHomMatrix& rTransformation, 79*cdf0e10cSrcweir const Subset& rSubset ) const; 80*cdf0e10cSrcweir 81*cdf0e10cSrcweir virtual sal_Int32 getActionCount() const; 82*cdf0e10cSrcweir 83*cdf0e10cSrcweir private: 84*cdf0e10cSrcweir using Action::render; 85*cdf0e10cSrcweir virtual bool render( uno::Reference< rendering::XCachedPrimitive >& rCachedPrimitive, 86*cdf0e10cSrcweir const ::basegfx::B2DHomMatrix& rTransformation ) const; 87*cdf0e10cSrcweir 88*cdf0e10cSrcweir uno::Reference< rendering::XBitmap > mxBitmap; 89*cdf0e10cSrcweir CanvasSharedPtr mpCanvas; 90*cdf0e10cSrcweir rendering::RenderState maState; 91*cdf0e10cSrcweir }; 92*cdf0e10cSrcweir 93*cdf0e10cSrcweir 94*cdf0e10cSrcweir BitmapAction::BitmapAction( const ::BitmapEx& rBmpEx, 95*cdf0e10cSrcweir const ::basegfx::B2DPoint& rDstPoint, 96*cdf0e10cSrcweir const CanvasSharedPtr& rCanvas, 97*cdf0e10cSrcweir const OutDevState& rState ) : 98*cdf0e10cSrcweir CachedPrimitiveBase( rCanvas, true ), 99*cdf0e10cSrcweir mxBitmap( ::vcl::unotools::xBitmapFromBitmapEx( rCanvas->getUNOCanvas()->getDevice(), 100*cdf0e10cSrcweir rBmpEx ) ), 101*cdf0e10cSrcweir mpCanvas( rCanvas ), 102*cdf0e10cSrcweir maState() 103*cdf0e10cSrcweir { 104*cdf0e10cSrcweir tools::initRenderState(maState,rState); 105*cdf0e10cSrcweir 106*cdf0e10cSrcweir // Setup transformation such that the next render call is 107*cdf0e10cSrcweir // moved rPoint away. 108*cdf0e10cSrcweir const basegfx::B2DHomMatrix aLocalTransformation(basegfx::tools::createTranslateB2DHomMatrix(rDstPoint)); 109*cdf0e10cSrcweir ::canvas::tools::appendToRenderState( maState, 110*cdf0e10cSrcweir aLocalTransformation ); 111*cdf0e10cSrcweir 112*cdf0e10cSrcweir // correct clip (which is relative to original transform) 113*cdf0e10cSrcweir tools::modifyClip( maState, 114*cdf0e10cSrcweir rState, 115*cdf0e10cSrcweir rCanvas, 116*cdf0e10cSrcweir rDstPoint, 117*cdf0e10cSrcweir NULL, 118*cdf0e10cSrcweir NULL ); 119*cdf0e10cSrcweir } 120*cdf0e10cSrcweir 121*cdf0e10cSrcweir BitmapAction::BitmapAction( const ::BitmapEx& rBmpEx, 122*cdf0e10cSrcweir const ::basegfx::B2DPoint& rDstPoint, 123*cdf0e10cSrcweir const ::basegfx::B2DVector& rDstSize, 124*cdf0e10cSrcweir const CanvasSharedPtr& rCanvas, 125*cdf0e10cSrcweir const OutDevState& rState ) : 126*cdf0e10cSrcweir CachedPrimitiveBase( rCanvas, true ), 127*cdf0e10cSrcweir mxBitmap( ::vcl::unotools::xBitmapFromBitmapEx( rCanvas->getUNOCanvas()->getDevice(), 128*cdf0e10cSrcweir rBmpEx ) ), 129*cdf0e10cSrcweir mpCanvas( rCanvas ), 130*cdf0e10cSrcweir maState() 131*cdf0e10cSrcweir { 132*cdf0e10cSrcweir tools::initRenderState(maState,rState); 133*cdf0e10cSrcweir 134*cdf0e10cSrcweir // Setup transformation such that the next render call is 135*cdf0e10cSrcweir // moved rPoint away, and scaled according to the ratio 136*cdf0e10cSrcweir // given by src and dst size. 137*cdf0e10cSrcweir const ::Size aBmpSize( rBmpEx.GetSizePixel() ); 138*cdf0e10cSrcweir 139*cdf0e10cSrcweir const ::basegfx::B2DVector aScale( rDstSize.getX() / aBmpSize.Width(), 140*cdf0e10cSrcweir rDstSize.getY() / aBmpSize.Height() ); 141*cdf0e10cSrcweir const basegfx::B2DHomMatrix aLocalTransformation(basegfx::tools::createScaleTranslateB2DHomMatrix( 142*cdf0e10cSrcweir aScale, rDstPoint)); 143*cdf0e10cSrcweir ::canvas::tools::appendToRenderState( maState, aLocalTransformation ); 144*cdf0e10cSrcweir 145*cdf0e10cSrcweir // correct clip (which is relative to original transform) 146*cdf0e10cSrcweir tools::modifyClip( maState, 147*cdf0e10cSrcweir rState, 148*cdf0e10cSrcweir rCanvas, 149*cdf0e10cSrcweir rDstPoint, 150*cdf0e10cSrcweir &aScale, 151*cdf0e10cSrcweir NULL ); 152*cdf0e10cSrcweir } 153*cdf0e10cSrcweir 154*cdf0e10cSrcweir bool BitmapAction::render( uno::Reference< rendering::XCachedPrimitive >& rCachedPrimitive, 155*cdf0e10cSrcweir const ::basegfx::B2DHomMatrix& rTransformation ) const 156*cdf0e10cSrcweir { 157*cdf0e10cSrcweir RTL_LOGFILE_CONTEXT( aLog, "::cppcanvas::internal::BitmapAction::render()" ); 158*cdf0e10cSrcweir RTL_LOGFILE_CONTEXT_TRACE1( aLog, "::cppcanvas::internal::BitmapAction: 0x%X", this ); 159*cdf0e10cSrcweir 160*cdf0e10cSrcweir rendering::RenderState aLocalState( maState ); 161*cdf0e10cSrcweir ::canvas::tools::prependToRenderState(aLocalState, rTransformation); 162*cdf0e10cSrcweir 163*cdf0e10cSrcweir rCachedPrimitive = mpCanvas->getUNOCanvas()->drawBitmap( mxBitmap, 164*cdf0e10cSrcweir mpCanvas->getViewState(), 165*cdf0e10cSrcweir aLocalState ); 166*cdf0e10cSrcweir 167*cdf0e10cSrcweir return true; 168*cdf0e10cSrcweir } 169*cdf0e10cSrcweir 170*cdf0e10cSrcweir bool BitmapAction::render( const ::basegfx::B2DHomMatrix& rTransformation, 171*cdf0e10cSrcweir const Subset& rSubset ) const 172*cdf0e10cSrcweir { 173*cdf0e10cSrcweir // bitmap only contains a single action, fail if subset 174*cdf0e10cSrcweir // requests different range 175*cdf0e10cSrcweir if( rSubset.mnSubsetBegin != 0 || 176*cdf0e10cSrcweir rSubset.mnSubsetEnd != 1 ) 177*cdf0e10cSrcweir return false; 178*cdf0e10cSrcweir 179*cdf0e10cSrcweir return CachedPrimitiveBase::render( rTransformation ); 180*cdf0e10cSrcweir } 181*cdf0e10cSrcweir 182*cdf0e10cSrcweir ::basegfx::B2DRange BitmapAction::getBounds( const ::basegfx::B2DHomMatrix& rTransformation ) const 183*cdf0e10cSrcweir { 184*cdf0e10cSrcweir rendering::RenderState aLocalState( maState ); 185*cdf0e10cSrcweir ::canvas::tools::prependToRenderState(aLocalState, rTransformation); 186*cdf0e10cSrcweir 187*cdf0e10cSrcweir const geometry::IntegerSize2D aSize( mxBitmap->getSize() ); 188*cdf0e10cSrcweir 189*cdf0e10cSrcweir return tools::calcDevicePixelBounds( ::basegfx::B2DRange( 0,0, 190*cdf0e10cSrcweir aSize.Width, 191*cdf0e10cSrcweir aSize.Height ), 192*cdf0e10cSrcweir mpCanvas->getViewState(), 193*cdf0e10cSrcweir aLocalState ); 194*cdf0e10cSrcweir } 195*cdf0e10cSrcweir 196*cdf0e10cSrcweir ::basegfx::B2DRange BitmapAction::getBounds( const ::basegfx::B2DHomMatrix& rTransformation, 197*cdf0e10cSrcweir const Subset& rSubset ) const 198*cdf0e10cSrcweir { 199*cdf0e10cSrcweir // bitmap only contains a single action, empty bounds 200*cdf0e10cSrcweir // if subset requests different range 201*cdf0e10cSrcweir if( rSubset.mnSubsetBegin != 0 || 202*cdf0e10cSrcweir rSubset.mnSubsetEnd != 1 ) 203*cdf0e10cSrcweir return ::basegfx::B2DRange(); 204*cdf0e10cSrcweir 205*cdf0e10cSrcweir return getBounds( rTransformation ); 206*cdf0e10cSrcweir } 207*cdf0e10cSrcweir 208*cdf0e10cSrcweir sal_Int32 BitmapAction::getActionCount() const 209*cdf0e10cSrcweir { 210*cdf0e10cSrcweir return 1; 211*cdf0e10cSrcweir } 212*cdf0e10cSrcweir } 213*cdf0e10cSrcweir 214*cdf0e10cSrcweir ActionSharedPtr BitmapActionFactory::createBitmapAction( const ::BitmapEx& rBmpEx, 215*cdf0e10cSrcweir const ::basegfx::B2DPoint& rDstPoint, 216*cdf0e10cSrcweir const CanvasSharedPtr& rCanvas, 217*cdf0e10cSrcweir const OutDevState& rState ) 218*cdf0e10cSrcweir { 219*cdf0e10cSrcweir return ActionSharedPtr( new BitmapAction(rBmpEx, 220*cdf0e10cSrcweir rDstPoint, 221*cdf0e10cSrcweir rCanvas, 222*cdf0e10cSrcweir rState ) ); 223*cdf0e10cSrcweir } 224*cdf0e10cSrcweir 225*cdf0e10cSrcweir ActionSharedPtr BitmapActionFactory::createBitmapAction( const ::BitmapEx& rBmpEx, 226*cdf0e10cSrcweir const ::basegfx::B2DPoint& rDstPoint, 227*cdf0e10cSrcweir const ::basegfx::B2DVector& rDstSize, 228*cdf0e10cSrcweir const CanvasSharedPtr& rCanvas, 229*cdf0e10cSrcweir const OutDevState& rState ) 230*cdf0e10cSrcweir { 231*cdf0e10cSrcweir return ActionSharedPtr( new BitmapAction(rBmpEx, 232*cdf0e10cSrcweir rDstPoint, 233*cdf0e10cSrcweir rDstSize, 234*cdf0e10cSrcweir rCanvas, 235*cdf0e10cSrcweir rState ) ); 236*cdf0e10cSrcweir } 237*cdf0e10cSrcweir } 238*cdf0e10cSrcweir } 239