update dev300-m58
[ooovba.git] / cppcanvas / source / wrapper / implbitmap.cxx
blobaf884fd942a1504209f3d3ed9fb8d5d5a053ec85
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: implbitmap.cxx,v $
10 * $Revision: 1.11 $
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 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_cppcanvas.hxx"
34 #include "implbitmap.hxx"
35 #include "implbitmapcanvas.hxx"
37 #include <basegfx/matrix/b2dhommatrix.hxx>
38 #include <canvas/canvastools.hxx>
41 using namespace ::com::sun::star;
43 namespace cppcanvas
46 namespace internal
49 ImplBitmap::ImplBitmap( const CanvasSharedPtr& rParentCanvas,
50 const uno::Reference< rendering::XBitmap >& rBitmap ) :
51 CanvasGraphicHelper( rParentCanvas ),
52 mxBitmap( rBitmap ),
53 mpBitmapCanvas()
55 OSL_ENSURE( mxBitmap.is(), "ImplBitmap::ImplBitmap: no valid bitmap" );
57 uno::Reference< rendering::XBitmapCanvas > xBitmapCanvas( rBitmap,
58 uno::UNO_QUERY );
59 if( xBitmapCanvas.is() )
60 mpBitmapCanvas.reset( new ImplBitmapCanvas(
61 uno::Reference< rendering::XBitmapCanvas >(rBitmap,
62 uno::UNO_QUERY) ) );
65 ImplBitmap::~ImplBitmap()
69 bool ImplBitmap::draw() const
71 CanvasSharedPtr pCanvas( getCanvas() );
73 OSL_ENSURE( pCanvas.get() != NULL &&
74 pCanvas->getUNOCanvas().is(),
75 "ImplBitmap::draw: invalid canvas" );
77 if( pCanvas.get() == NULL ||
78 !pCanvas->getUNOCanvas().is() )
80 return false;
83 // TODO(P1): implement caching
84 pCanvas->getUNOCanvas()->drawBitmap( mxBitmap,
85 pCanvas->getViewState(),
86 getRenderState() );
88 return true;
91 bool ImplBitmap::drawAlphaModulated( double nAlphaModulation ) const
93 CanvasSharedPtr pCanvas( getCanvas() );
95 OSL_ENSURE( pCanvas.get() != NULL &&
96 pCanvas->getUNOCanvas().is(),
97 "ImplBitmap::drawAlphaModulated(): invalid canvas" );
99 if( pCanvas.get() == NULL ||
100 !pCanvas->getUNOCanvas().is() )
102 return false;
105 rendering::RenderState aLocalState( getRenderState() );
106 uno::Sequence<rendering::ARGBColor> aCol(1);
107 aCol[0] = rendering::ARGBColor( nAlphaModulation, 1.0, 1.0, 1.0 );
108 aLocalState.DeviceColor =
109 pCanvas->getUNOCanvas()->getDevice()->getDeviceColorSpace()->convertFromARGB(aCol);
111 // TODO(P1): implement caching
112 pCanvas->getUNOCanvas()->drawBitmapModulated( mxBitmap,
113 pCanvas->getViewState(),
114 aLocalState );
116 return true;
119 BitmapCanvasSharedPtr ImplBitmap::getBitmapCanvas() const
121 return mpBitmapCanvas;
124 uno::Reference< rendering::XBitmap > ImplBitmap::getUNOBitmap() const
126 return mxBitmap;