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 "ShellStackGuard.hxx" 31*cdf0e10cSrcweir 32*cdf0e10cSrcweir #include "framework/ConfigurationController.hxx" 33*cdf0e10cSrcweir #include "framework/FrameworkHelper.hxx" 34*cdf0e10cSrcweir 35*cdf0e10cSrcweir #include "DrawController.hxx" 36*cdf0e10cSrcweir #include "ViewShellBase.hxx" 37*cdf0e10cSrcweir #include <sfx2/printer.hxx> 38*cdf0e10cSrcweir #include <com/sun/star/drawing/framework/XControllerManager.hpp> 39*cdf0e10cSrcweir #include <com/sun/star/drawing/framework/XConfigurationController.hpp> 40*cdf0e10cSrcweir 41*cdf0e10cSrcweir using namespace ::com::sun::star; 42*cdf0e10cSrcweir using namespace ::com::sun::star::uno; 43*cdf0e10cSrcweir using namespace ::com::sun::star::drawing::framework; 44*cdf0e10cSrcweir 45*cdf0e10cSrcweir using ::rtl::OUString; 46*cdf0e10cSrcweir using ::sd::framework::FrameworkHelper; 47*cdf0e10cSrcweir 48*cdf0e10cSrcweir 49*cdf0e10cSrcweir namespace sd { namespace framework { 50*cdf0e10cSrcweir 51*cdf0e10cSrcweir //===== CenterViewFocusModule ==================================================== 52*cdf0e10cSrcweir 53*cdf0e10cSrcweir ShellStackGuard::ShellStackGuard (Reference<frame::XController>& rxController) 54*cdf0e10cSrcweir : ShellStackGuardInterfaceBase(m_aMutex), 55*cdf0e10cSrcweir mxConfigurationController(), 56*cdf0e10cSrcweir mpBase(NULL), 57*cdf0e10cSrcweir mpUpdateLock(), 58*cdf0e10cSrcweir maPrinterPollingTimer() 59*cdf0e10cSrcweir { 60*cdf0e10cSrcweir Reference<XControllerManager> xControllerManager (rxController, UNO_QUERY); 61*cdf0e10cSrcweir if (xControllerManager.is()) 62*cdf0e10cSrcweir { 63*cdf0e10cSrcweir mxConfigurationController = xControllerManager->getConfigurationController(); 64*cdf0e10cSrcweir 65*cdf0e10cSrcweir // Tunnel through the controller to obtain a ViewShellBase. 66*cdf0e10cSrcweir Reference<lang::XUnoTunnel> xTunnel (rxController, UNO_QUERY); 67*cdf0e10cSrcweir if (xTunnel.is()) 68*cdf0e10cSrcweir { 69*cdf0e10cSrcweir ::sd::DrawController* pController = reinterpret_cast<sd::DrawController*>( 70*cdf0e10cSrcweir xTunnel->getSomething(sd::DrawController::getUnoTunnelId())); 71*cdf0e10cSrcweir if (pController != NULL) 72*cdf0e10cSrcweir mpBase = pController->GetViewShellBase(); 73*cdf0e10cSrcweir } 74*cdf0e10cSrcweir } 75*cdf0e10cSrcweir 76*cdf0e10cSrcweir if (mxConfigurationController.is()) 77*cdf0e10cSrcweir { 78*cdf0e10cSrcweir // Listen for update starts so that the following update can be 79*cdf0e10cSrcweir // prevented in case of a printing printer. 80*cdf0e10cSrcweir mxConfigurationController->addConfigurationChangeListener( 81*cdf0e10cSrcweir this, 82*cdf0e10cSrcweir FrameworkHelper::msConfigurationUpdateStartEvent, 83*cdf0e10cSrcweir Any()); 84*cdf0e10cSrcweir 85*cdf0e10cSrcweir // Prepare the printer polling. 86*cdf0e10cSrcweir maPrinterPollingTimer.SetTimeoutHdl(LINK(this,ShellStackGuard,TimeoutHandler)); 87*cdf0e10cSrcweir maPrinterPollingTimer.SetTimeout(300); 88*cdf0e10cSrcweir } 89*cdf0e10cSrcweir } 90*cdf0e10cSrcweir 91*cdf0e10cSrcweir 92*cdf0e10cSrcweir 93*cdf0e10cSrcweir 94*cdf0e10cSrcweir ShellStackGuard::~ShellStackGuard (void) 95*cdf0e10cSrcweir { 96*cdf0e10cSrcweir } 97*cdf0e10cSrcweir 98*cdf0e10cSrcweir 99*cdf0e10cSrcweir 100*cdf0e10cSrcweir 101*cdf0e10cSrcweir void SAL_CALL ShellStackGuard::disposing (void) 102*cdf0e10cSrcweir { 103*cdf0e10cSrcweir if (mxConfigurationController.is()) 104*cdf0e10cSrcweir mxConfigurationController->removeConfigurationChangeListener(this); 105*cdf0e10cSrcweir 106*cdf0e10cSrcweir mxConfigurationController = NULL; 107*cdf0e10cSrcweir mpBase = NULL; 108*cdf0e10cSrcweir } 109*cdf0e10cSrcweir 110*cdf0e10cSrcweir 111*cdf0e10cSrcweir 112*cdf0e10cSrcweir 113*cdf0e10cSrcweir void SAL_CALL ShellStackGuard::notifyConfigurationChange ( 114*cdf0e10cSrcweir const ConfigurationChangeEvent& rEvent) 115*cdf0e10cSrcweir throw (RuntimeException) 116*cdf0e10cSrcweir { 117*cdf0e10cSrcweir if (rEvent.Type.equals(FrameworkHelper::msConfigurationUpdateStartEvent)) 118*cdf0e10cSrcweir { 119*cdf0e10cSrcweir if (mpUpdateLock.get() == NULL && IsPrinting()) 120*cdf0e10cSrcweir { 121*cdf0e10cSrcweir // Prevent configuration updates while the printer is printing. 122*cdf0e10cSrcweir mpUpdateLock.reset(new ConfigurationController::Lock(mxConfigurationController)); 123*cdf0e10cSrcweir 124*cdf0e10cSrcweir // Start polling for the printer having finished printing. 125*cdf0e10cSrcweir maPrinterPollingTimer.Start(); 126*cdf0e10cSrcweir } 127*cdf0e10cSrcweir } 128*cdf0e10cSrcweir } 129*cdf0e10cSrcweir 130*cdf0e10cSrcweir 131*cdf0e10cSrcweir 132*cdf0e10cSrcweir 133*cdf0e10cSrcweir void SAL_CALL ShellStackGuard::disposing ( 134*cdf0e10cSrcweir const lang::EventObject& rEvent) 135*cdf0e10cSrcweir throw (RuntimeException) 136*cdf0e10cSrcweir { 137*cdf0e10cSrcweir if (mxConfigurationController.is()) 138*cdf0e10cSrcweir if (rEvent.Source == mxConfigurationController) 139*cdf0e10cSrcweir { 140*cdf0e10cSrcweir mxConfigurationController = NULL; 141*cdf0e10cSrcweir mpBase = NULL; 142*cdf0e10cSrcweir } 143*cdf0e10cSrcweir } 144*cdf0e10cSrcweir 145*cdf0e10cSrcweir 146*cdf0e10cSrcweir 147*cdf0e10cSrcweir 148*cdf0e10cSrcweir IMPL_LINK(ShellStackGuard, TimeoutHandler, Timer*, pTimer) 149*cdf0e10cSrcweir { 150*cdf0e10cSrcweir #ifdef DEBUG 151*cdf0e10cSrcweir OSL_ASSERT(pTimer==&maPrinterPollingTimer); 152*cdf0e10cSrcweir #else 153*cdf0e10cSrcweir (void)pTimer; 154*cdf0e10cSrcweir #endif 155*cdf0e10cSrcweir if (mpUpdateLock.get() != NULL) 156*cdf0e10cSrcweir { 157*cdf0e10cSrcweir if ( ! IsPrinting()) 158*cdf0e10cSrcweir { 159*cdf0e10cSrcweir // Printing finished. Release the update lock. 160*cdf0e10cSrcweir mpUpdateLock.reset(); 161*cdf0e10cSrcweir } 162*cdf0e10cSrcweir else 163*cdf0e10cSrcweir { 164*cdf0e10cSrcweir // Wait long for the printing to finish. 165*cdf0e10cSrcweir maPrinterPollingTimer.Start(); 166*cdf0e10cSrcweir } 167*cdf0e10cSrcweir } 168*cdf0e10cSrcweir 169*cdf0e10cSrcweir return 0; 170*cdf0e10cSrcweir } 171*cdf0e10cSrcweir 172*cdf0e10cSrcweir 173*cdf0e10cSrcweir 174*cdf0e10cSrcweir 175*cdf0e10cSrcweir 176*cdf0e10cSrcweir bool ShellStackGuard::IsPrinting (void) const 177*cdf0e10cSrcweir { 178*cdf0e10cSrcweir if (mpBase != NULL) 179*cdf0e10cSrcweir { 180*cdf0e10cSrcweir SfxPrinter* pPrinter = mpBase->GetPrinter(); 181*cdf0e10cSrcweir if (pPrinter != NULL 182*cdf0e10cSrcweir && pPrinter->IsPrinting()) 183*cdf0e10cSrcweir { 184*cdf0e10cSrcweir return true; 185*cdf0e10cSrcweir } 186*cdf0e10cSrcweir } 187*cdf0e10cSrcweir 188*cdf0e10cSrcweir return false; 189*cdf0e10cSrcweir } 190*cdf0e10cSrcweir 191*cdf0e10cSrcweir 192*cdf0e10cSrcweir } } // end of namespace sd::framework 193