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 #include "precompiled_sd.hxx" 29*cdf0e10cSrcweir 30*cdf0e10cSrcweir #include "SlideRenderer.hxx" 31*cdf0e10cSrcweir #include "sdpage.hxx" 32*cdf0e10cSrcweir #include <toolkit/helper/vclunohelper.hxx> 33*cdf0e10cSrcweir #include <vos/mutex.hxx> 34*cdf0e10cSrcweir #include <vcl/svapp.hxx> 35*cdf0e10cSrcweir #include <cppcanvas/vclfactory.hxx> 36*cdf0e10cSrcweir 37*cdf0e10cSrcweir using namespace ::com::sun::star; 38*cdf0e10cSrcweir using namespace ::com::sun::star::uno; 39*cdf0e10cSrcweir using ::rtl::OUString; 40*cdf0e10cSrcweir 41*cdf0e10cSrcweir namespace sd { namespace presenter { 42*cdf0e10cSrcweir 43*cdf0e10cSrcweir //===== Service =============================================================== 44*cdf0e10cSrcweir 45*cdf0e10cSrcweir Reference<XInterface> SAL_CALL SlideRenderer_createInstance ( 46*cdf0e10cSrcweir const Reference<XComponentContext>& rxContext) 47*cdf0e10cSrcweir { 48*cdf0e10cSrcweir return Reference<XInterface>(static_cast<XWeak*>(new SlideRenderer(rxContext))); 49*cdf0e10cSrcweir } 50*cdf0e10cSrcweir 51*cdf0e10cSrcweir 52*cdf0e10cSrcweir 53*cdf0e10cSrcweir 54*cdf0e10cSrcweir ::rtl::OUString SlideRenderer_getImplementationName (void) throw(RuntimeException) 55*cdf0e10cSrcweir { 56*cdf0e10cSrcweir return OUString::createFromAscii("com.sun.star.comp.Draw.SlideRenderer"); 57*cdf0e10cSrcweir } 58*cdf0e10cSrcweir 59*cdf0e10cSrcweir 60*cdf0e10cSrcweir 61*cdf0e10cSrcweir 62*cdf0e10cSrcweir Sequence<rtl::OUString> SAL_CALL SlideRenderer_getSupportedServiceNames (void) 63*cdf0e10cSrcweir throw (RuntimeException) 64*cdf0e10cSrcweir { 65*cdf0e10cSrcweir static const ::rtl::OUString sServiceName( 66*cdf0e10cSrcweir ::rtl::OUString::createFromAscii("com.sun.star.drawing.SlideRenderer")); 67*cdf0e10cSrcweir return Sequence<rtl::OUString>(&sServiceName, 1); 68*cdf0e10cSrcweir } 69*cdf0e10cSrcweir 70*cdf0e10cSrcweir 71*cdf0e10cSrcweir 72*cdf0e10cSrcweir 73*cdf0e10cSrcweir //===== SlideRenderer ========================================================== 74*cdf0e10cSrcweir 75*cdf0e10cSrcweir SlideRenderer::SlideRenderer (const Reference<XComponentContext>& rxContext) 76*cdf0e10cSrcweir : SlideRendererInterfaceBase(m_aMutex), 77*cdf0e10cSrcweir maPreviewRenderer() 78*cdf0e10cSrcweir { 79*cdf0e10cSrcweir (void)rxContext; 80*cdf0e10cSrcweir } 81*cdf0e10cSrcweir 82*cdf0e10cSrcweir 83*cdf0e10cSrcweir 84*cdf0e10cSrcweir 85*cdf0e10cSrcweir SlideRenderer::~SlideRenderer (void) 86*cdf0e10cSrcweir { 87*cdf0e10cSrcweir } 88*cdf0e10cSrcweir 89*cdf0e10cSrcweir 90*cdf0e10cSrcweir 91*cdf0e10cSrcweir 92*cdf0e10cSrcweir void SAL_CALL SlideRenderer::disposing (void) 93*cdf0e10cSrcweir { 94*cdf0e10cSrcweir } 95*cdf0e10cSrcweir 96*cdf0e10cSrcweir 97*cdf0e10cSrcweir 98*cdf0e10cSrcweir 99*cdf0e10cSrcweir //----- XInitialization ------------------------------------------------------- 100*cdf0e10cSrcweir 101*cdf0e10cSrcweir void SAL_CALL SlideRenderer::initialize (const Sequence<Any>& rArguments) 102*cdf0e10cSrcweir throw (Exception, RuntimeException) 103*cdf0e10cSrcweir { 104*cdf0e10cSrcweir ThrowIfDisposed(); 105*cdf0e10cSrcweir 106*cdf0e10cSrcweir if (rArguments.getLength() == 0) 107*cdf0e10cSrcweir { 108*cdf0e10cSrcweir try 109*cdf0e10cSrcweir { 110*cdf0e10cSrcweir } 111*cdf0e10cSrcweir catch (RuntimeException&) 112*cdf0e10cSrcweir { 113*cdf0e10cSrcweir throw; 114*cdf0e10cSrcweir } 115*cdf0e10cSrcweir } 116*cdf0e10cSrcweir else 117*cdf0e10cSrcweir { 118*cdf0e10cSrcweir throw RuntimeException( 119*cdf0e10cSrcweir OUString::createFromAscii("SlideRenderer: invalid number of arguments"), 120*cdf0e10cSrcweir static_cast<XWeak*>(this)); 121*cdf0e10cSrcweir } 122*cdf0e10cSrcweir } 123*cdf0e10cSrcweir 124*cdf0e10cSrcweir 125*cdf0e10cSrcweir 126*cdf0e10cSrcweir 127*cdf0e10cSrcweir //----- XSlideRenderer -------------------------------------------------------- 128*cdf0e10cSrcweir 129*cdf0e10cSrcweir Reference<awt::XBitmap> SlideRenderer::createPreview ( 130*cdf0e10cSrcweir const Reference<drawing::XDrawPage>& rxSlide, 131*cdf0e10cSrcweir const awt::Size& rMaximalSize, 132*cdf0e10cSrcweir sal_Int16 nSuperSampleFactor) 133*cdf0e10cSrcweir throw (css::uno::RuntimeException) 134*cdf0e10cSrcweir { 135*cdf0e10cSrcweir ThrowIfDisposed(); 136*cdf0e10cSrcweir ::vos::OGuard aGuard (Application::GetSolarMutex()); 137*cdf0e10cSrcweir 138*cdf0e10cSrcweir return VCLUnoHelper::CreateBitmap( 139*cdf0e10cSrcweir CreatePreview(rxSlide, rMaximalSize, nSuperSampleFactor)); 140*cdf0e10cSrcweir } 141*cdf0e10cSrcweir 142*cdf0e10cSrcweir 143*cdf0e10cSrcweir 144*cdf0e10cSrcweir 145*cdf0e10cSrcweir Reference<rendering::XBitmap> SlideRenderer::createPreviewForCanvas ( 146*cdf0e10cSrcweir const Reference<drawing::XDrawPage>& rxSlide, 147*cdf0e10cSrcweir const awt::Size& rMaximalSize, 148*cdf0e10cSrcweir sal_Int16 nSuperSampleFactor, 149*cdf0e10cSrcweir const Reference<rendering::XCanvas>& rxCanvas) 150*cdf0e10cSrcweir throw (css::uno::RuntimeException) 151*cdf0e10cSrcweir { 152*cdf0e10cSrcweir ThrowIfDisposed(); 153*cdf0e10cSrcweir ::vos::OGuard aGuard (Application::GetSolarMutex()); 154*cdf0e10cSrcweir 155*cdf0e10cSrcweir cppcanvas::BitmapCanvasSharedPtr pCanvas (cppcanvas::VCLFactory::getInstance().createCanvas( 156*cdf0e10cSrcweir Reference<rendering::XBitmapCanvas>(rxCanvas, UNO_QUERY))); 157*cdf0e10cSrcweir if (pCanvas.get() != NULL) 158*cdf0e10cSrcweir return cppcanvas::VCLFactory::getInstance().createBitmap( 159*cdf0e10cSrcweir pCanvas, 160*cdf0e10cSrcweir CreatePreview(rxSlide, rMaximalSize, nSuperSampleFactor))->getUNOBitmap(); 161*cdf0e10cSrcweir else 162*cdf0e10cSrcweir return NULL; 163*cdf0e10cSrcweir } 164*cdf0e10cSrcweir 165*cdf0e10cSrcweir 166*cdf0e10cSrcweir 167*cdf0e10cSrcweir 168*cdf0e10cSrcweir awt::Size SAL_CALL SlideRenderer::calculatePreviewSize ( 169*cdf0e10cSrcweir double nSlideAspectRatio, 170*cdf0e10cSrcweir const awt::Size& rMaximalSize) 171*cdf0e10cSrcweir throw (css::uno::RuntimeException) 172*cdf0e10cSrcweir { 173*cdf0e10cSrcweir if (rMaximalSize.Width <= 0 174*cdf0e10cSrcweir || rMaximalSize.Height <= 0 175*cdf0e10cSrcweir || nSlideAspectRatio <= 0) 176*cdf0e10cSrcweir { 177*cdf0e10cSrcweir return awt::Size(0,0); 178*cdf0e10cSrcweir } 179*cdf0e10cSrcweir 180*cdf0e10cSrcweir const double nWindowAspectRatio (double(rMaximalSize.Width) / double(rMaximalSize.Height)); 181*cdf0e10cSrcweir if (nSlideAspectRatio < nWindowAspectRatio) 182*cdf0e10cSrcweir return awt::Size( 183*cdf0e10cSrcweir sal::static_int_cast<sal_Int32>(rMaximalSize.Height * nSlideAspectRatio), 184*cdf0e10cSrcweir rMaximalSize.Height); 185*cdf0e10cSrcweir else 186*cdf0e10cSrcweir return awt::Size( 187*cdf0e10cSrcweir rMaximalSize.Width, 188*cdf0e10cSrcweir sal::static_int_cast<sal_Int32>(rMaximalSize.Width / nSlideAspectRatio)); 189*cdf0e10cSrcweir } 190*cdf0e10cSrcweir 191*cdf0e10cSrcweir 192*cdf0e10cSrcweir 193*cdf0e10cSrcweir 194*cdf0e10cSrcweir //----------------------------------------------------------------------------- 195*cdf0e10cSrcweir 196*cdf0e10cSrcweir BitmapEx SlideRenderer::CreatePreview ( 197*cdf0e10cSrcweir const Reference<drawing::XDrawPage>& rxSlide, 198*cdf0e10cSrcweir const awt::Size& rMaximalSize, 199*cdf0e10cSrcweir sal_Int16 nSuperSampleFactor) 200*cdf0e10cSrcweir throw (css::uno::RuntimeException) 201*cdf0e10cSrcweir { 202*cdf0e10cSrcweir const SdPage* pPage = SdPage::getImplementation(rxSlide); 203*cdf0e10cSrcweir if (pPage == NULL) 204*cdf0e10cSrcweir throw lang::IllegalArgumentException( 205*cdf0e10cSrcweir OUString::createFromAscii("SlideRenderer::createPreview() called with invalid slide"), 206*cdf0e10cSrcweir static_cast<XWeak*>(this), 207*cdf0e10cSrcweir 0); 208*cdf0e10cSrcweir 209*cdf0e10cSrcweir // Determine the size of the current slide and its aspect ratio. 210*cdf0e10cSrcweir Size aPageSize = pPage->GetSize(); 211*cdf0e10cSrcweir if (aPageSize.Height() <= 0) 212*cdf0e10cSrcweir throw lang::IllegalArgumentException( 213*cdf0e10cSrcweir OUString::createFromAscii("SlideRenderer::createPreview() called with invalid size"), 214*cdf0e10cSrcweir static_cast<XWeak*>(this), 215*cdf0e10cSrcweir 1); 216*cdf0e10cSrcweir 217*cdf0e10cSrcweir // Compare with the aspect ratio of the window (which rMaximalSize 218*cdf0e10cSrcweir // assumed to be) and calculate the size of the preview so that it 219*cdf0e10cSrcweir // a) will have the aspect ratio of the page and 220*cdf0e10cSrcweir // b) will be as large as possible. 221*cdf0e10cSrcweir awt::Size aPreviewSize (calculatePreviewSize( 222*cdf0e10cSrcweir double(aPageSize.Width()) / double(aPageSize.Height()), 223*cdf0e10cSrcweir rMaximalSize)); 224*cdf0e10cSrcweir if (aPreviewSize.Width <= 0 || aPreviewSize.Height <= 0) 225*cdf0e10cSrcweir return BitmapEx(); 226*cdf0e10cSrcweir 227*cdf0e10cSrcweir // Make sure that the super sample factor has a sane value. 228*cdf0e10cSrcweir sal_Int16 nFactor (nSuperSampleFactor); 229*cdf0e10cSrcweir if (nFactor < 1) 230*cdf0e10cSrcweir nFactor = 1; 231*cdf0e10cSrcweir else if (nFactor > 10) 232*cdf0e10cSrcweir nFactor = 10; 233*cdf0e10cSrcweir 234*cdf0e10cSrcweir // Create the preview. When the super sample factor n is greater than 1 235*cdf0e10cSrcweir // then a preview is created in size (n*width, n*height) and then scaled 236*cdf0e10cSrcweir // down to (width, height). This is a poor mans antialiasing for the 237*cdf0e10cSrcweir // time being. When we have true antialiasing support this workaround 238*cdf0e10cSrcweir // can be removed. 239*cdf0e10cSrcweir const Image aPreview = maPreviewRenderer.RenderPage ( 240*cdf0e10cSrcweir pPage, 241*cdf0e10cSrcweir Size(aPreviewSize.Width*nFactor, aPreviewSize.Height*nFactor), 242*cdf0e10cSrcweir ::rtl::OUString()); 243*cdf0e10cSrcweir if (nFactor == 1) 244*cdf0e10cSrcweir return aPreview.GetBitmapEx(); 245*cdf0e10cSrcweir else 246*cdf0e10cSrcweir { 247*cdf0e10cSrcweir BitmapEx aScaledPreview = aPreview.GetBitmapEx(); 248*cdf0e10cSrcweir aScaledPreview.Scale( 249*cdf0e10cSrcweir Size(aPreviewSize.Width,aPreviewSize.Height), 250*cdf0e10cSrcweir BMP_SCALE_INTERPOLATE); 251*cdf0e10cSrcweir return aScaledPreview; 252*cdf0e10cSrcweir } 253*cdf0e10cSrcweir } 254*cdf0e10cSrcweir 255*cdf0e10cSrcweir 256*cdf0e10cSrcweir 257*cdf0e10cSrcweir 258*cdf0e10cSrcweir void SlideRenderer::ThrowIfDisposed (void) 259*cdf0e10cSrcweir throw (::com::sun::star::lang::DisposedException) 260*cdf0e10cSrcweir { 261*cdf0e10cSrcweir if (SlideRendererInterfaceBase::rBHelper.bDisposed || SlideRendererInterfaceBase::rBHelper.bInDispose) 262*cdf0e10cSrcweir { 263*cdf0e10cSrcweir throw lang::DisposedException ( 264*cdf0e10cSrcweir ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( 265*cdf0e10cSrcweir "SlideRenderer object has already been disposed")), 266*cdf0e10cSrcweir static_cast<uno::XWeak*>(this)); 267*cdf0e10cSrcweir } 268*cdf0e10cSrcweir } 269*cdf0e10cSrcweir 270*cdf0e10cSrcweir 271*cdf0e10cSrcweir } } // end of namespace ::sd::presenter 272*cdf0e10cSrcweir 273