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 "CenterViewFocusModule.hxx" 31*cdf0e10cSrcweir 32*cdf0e10cSrcweir #include "framework/ConfigurationController.hxx" 33*cdf0e10cSrcweir #include "framework/FrameworkHelper.hxx" 34*cdf0e10cSrcweir #include "framework/ViewShellWrapper.hxx" 35*cdf0e10cSrcweir 36*cdf0e10cSrcweir #include "DrawController.hxx" 37*cdf0e10cSrcweir #include "ViewShellBase.hxx" 38*cdf0e10cSrcweir #include "ViewShellManager.hxx" 39*cdf0e10cSrcweir #include "strings.hrc" 40*cdf0e10cSrcweir #include "sdresid.hxx" 41*cdf0e10cSrcweir #include <com/sun/star/drawing/framework/XControllerManager.hpp> 42*cdf0e10cSrcweir #include <com/sun/star/drawing/framework/XConfigurationController.hpp> 43*cdf0e10cSrcweir 44*cdf0e10cSrcweir #include <toolkit/awt/vclxdevice.hxx> 45*cdf0e10cSrcweir #include <sfx2/viewfrm.hxx> 46*cdf0e10cSrcweir 47*cdf0e10cSrcweir using namespace ::com::sun::star; 48*cdf0e10cSrcweir using namespace ::com::sun::star::uno; 49*cdf0e10cSrcweir using namespace ::com::sun::star::drawing::framework; 50*cdf0e10cSrcweir 51*cdf0e10cSrcweir using ::rtl::OUString; 52*cdf0e10cSrcweir using ::sd::framework::FrameworkHelper; 53*cdf0e10cSrcweir 54*cdf0e10cSrcweir 55*cdf0e10cSrcweir namespace sd { namespace framework { 56*cdf0e10cSrcweir 57*cdf0e10cSrcweir //===== CenterViewFocusModule ==================================================== 58*cdf0e10cSrcweir 59*cdf0e10cSrcweir CenterViewFocusModule::CenterViewFocusModule (Reference<frame::XController>& rxController) 60*cdf0e10cSrcweir : CenterViewFocusModuleInterfaceBase(MutexOwner::maMutex), 61*cdf0e10cSrcweir mbValid(false), 62*cdf0e10cSrcweir mxConfigurationController(), 63*cdf0e10cSrcweir mpBase(NULL), 64*cdf0e10cSrcweir mbNewViewCreated(false) 65*cdf0e10cSrcweir { 66*cdf0e10cSrcweir Reference<XControllerManager> xControllerManager (rxController, UNO_QUERY); 67*cdf0e10cSrcweir if (xControllerManager.is()) 68*cdf0e10cSrcweir { 69*cdf0e10cSrcweir mxConfigurationController = xControllerManager->getConfigurationController(); 70*cdf0e10cSrcweir 71*cdf0e10cSrcweir // Tunnel through the controller to obtain a ViewShellBase. 72*cdf0e10cSrcweir Reference<lang::XUnoTunnel> xTunnel (rxController, UNO_QUERY); 73*cdf0e10cSrcweir if (xTunnel.is()) 74*cdf0e10cSrcweir { 75*cdf0e10cSrcweir ::sd::DrawController* pController = reinterpret_cast<sd::DrawController*>( 76*cdf0e10cSrcweir xTunnel->getSomething(sd::DrawController::getUnoTunnelId())); 77*cdf0e10cSrcweir if (pController != NULL) 78*cdf0e10cSrcweir mpBase = pController->GetViewShellBase(); 79*cdf0e10cSrcweir } 80*cdf0e10cSrcweir 81*cdf0e10cSrcweir // Check, if all required objects do exist. 82*cdf0e10cSrcweir if (mxConfigurationController.is() && mpBase!=NULL) 83*cdf0e10cSrcweir { 84*cdf0e10cSrcweir mbValid = true; 85*cdf0e10cSrcweir } 86*cdf0e10cSrcweir } 87*cdf0e10cSrcweir 88*cdf0e10cSrcweir if (mbValid) 89*cdf0e10cSrcweir { 90*cdf0e10cSrcweir mxConfigurationController->addConfigurationChangeListener( 91*cdf0e10cSrcweir this, 92*cdf0e10cSrcweir FrameworkHelper::msConfigurationUpdateEndEvent, 93*cdf0e10cSrcweir Any()); 94*cdf0e10cSrcweir mxConfigurationController->addConfigurationChangeListener( 95*cdf0e10cSrcweir this, 96*cdf0e10cSrcweir FrameworkHelper::msResourceActivationEvent, 97*cdf0e10cSrcweir Any()); 98*cdf0e10cSrcweir } 99*cdf0e10cSrcweir } 100*cdf0e10cSrcweir 101*cdf0e10cSrcweir 102*cdf0e10cSrcweir 103*cdf0e10cSrcweir 104*cdf0e10cSrcweir CenterViewFocusModule::~CenterViewFocusModule (void) 105*cdf0e10cSrcweir { 106*cdf0e10cSrcweir } 107*cdf0e10cSrcweir 108*cdf0e10cSrcweir 109*cdf0e10cSrcweir 110*cdf0e10cSrcweir 111*cdf0e10cSrcweir void SAL_CALL CenterViewFocusModule::disposing (void) 112*cdf0e10cSrcweir { 113*cdf0e10cSrcweir if (mxConfigurationController.is()) 114*cdf0e10cSrcweir mxConfigurationController->removeConfigurationChangeListener(this); 115*cdf0e10cSrcweir 116*cdf0e10cSrcweir mbValid = false; 117*cdf0e10cSrcweir mxConfigurationController = NULL; 118*cdf0e10cSrcweir mpBase = NULL; 119*cdf0e10cSrcweir } 120*cdf0e10cSrcweir 121*cdf0e10cSrcweir 122*cdf0e10cSrcweir 123*cdf0e10cSrcweir 124*cdf0e10cSrcweir void SAL_CALL CenterViewFocusModule::notifyConfigurationChange ( 125*cdf0e10cSrcweir const ConfigurationChangeEvent& rEvent) 126*cdf0e10cSrcweir throw (RuntimeException) 127*cdf0e10cSrcweir { 128*cdf0e10cSrcweir if (mbValid) 129*cdf0e10cSrcweir { 130*cdf0e10cSrcweir if (rEvent.Type.equals(FrameworkHelper::msConfigurationUpdateEndEvent)) 131*cdf0e10cSrcweir { 132*cdf0e10cSrcweir HandleNewView(rEvent.Configuration); 133*cdf0e10cSrcweir } 134*cdf0e10cSrcweir else if (rEvent.Type.equals(FrameworkHelper::msResourceActivationEvent)) 135*cdf0e10cSrcweir { 136*cdf0e10cSrcweir if (rEvent.ResourceId->getResourceURL().match(FrameworkHelper::msViewURLPrefix)) 137*cdf0e10cSrcweir mbNewViewCreated = true; 138*cdf0e10cSrcweir } 139*cdf0e10cSrcweir } 140*cdf0e10cSrcweir } 141*cdf0e10cSrcweir 142*cdf0e10cSrcweir 143*cdf0e10cSrcweir 144*cdf0e10cSrcweir 145*cdf0e10cSrcweir void CenterViewFocusModule::HandleNewView ( 146*cdf0e10cSrcweir const Reference<XConfiguration>& rxConfiguration) 147*cdf0e10cSrcweir { 148*cdf0e10cSrcweir if (mbNewViewCreated) 149*cdf0e10cSrcweir { 150*cdf0e10cSrcweir mbNewViewCreated = false; 151*cdf0e10cSrcweir // Make the center pane the active one. Tunnel through the 152*cdf0e10cSrcweir // controller to obtain a ViewShell pointer. 153*cdf0e10cSrcweir 154*cdf0e10cSrcweir Sequence<Reference<XResourceId> > xViewIds (rxConfiguration->getResources( 155*cdf0e10cSrcweir FrameworkHelper::CreateResourceId(FrameworkHelper::msCenterPaneURL), 156*cdf0e10cSrcweir FrameworkHelper::msViewURLPrefix, 157*cdf0e10cSrcweir AnchorBindingMode_DIRECT)); 158*cdf0e10cSrcweir Reference<XView> xView; 159*cdf0e10cSrcweir if (xViewIds.getLength() > 0) 160*cdf0e10cSrcweir xView = Reference<XView>( 161*cdf0e10cSrcweir mxConfigurationController->getResource(xViewIds[0]),UNO_QUERY); 162*cdf0e10cSrcweir Reference<lang::XUnoTunnel> xTunnel (xView, UNO_QUERY); 163*cdf0e10cSrcweir if (xTunnel.is() && mpBase!=NULL) 164*cdf0e10cSrcweir { 165*cdf0e10cSrcweir ViewShellWrapper* pViewShellWrapper = reinterpret_cast<ViewShellWrapper*>( 166*cdf0e10cSrcweir xTunnel->getSomething(ViewShellWrapper::getUnoTunnelId())); 167*cdf0e10cSrcweir if (pViewShellWrapper != NULL) 168*cdf0e10cSrcweir { 169*cdf0e10cSrcweir ::boost::shared_ptr<ViewShell> pViewShell = pViewShellWrapper->GetViewShell(); 170*cdf0e10cSrcweir if (pViewShell.get() != NULL) 171*cdf0e10cSrcweir mpBase->GetViewShellManager()->MoveToTop(*pViewShell); 172*cdf0e10cSrcweir } 173*cdf0e10cSrcweir } 174*cdf0e10cSrcweir } 175*cdf0e10cSrcweir } 176*cdf0e10cSrcweir 177*cdf0e10cSrcweir 178*cdf0e10cSrcweir 179*cdf0e10cSrcweir 180*cdf0e10cSrcweir void SAL_CALL CenterViewFocusModule::disposing ( 181*cdf0e10cSrcweir const lang::EventObject& rEvent) 182*cdf0e10cSrcweir throw (RuntimeException) 183*cdf0e10cSrcweir { 184*cdf0e10cSrcweir if (mxConfigurationController.is()) 185*cdf0e10cSrcweir if (rEvent.Source == mxConfigurationController) 186*cdf0e10cSrcweir { 187*cdf0e10cSrcweir mbValid = false; 188*cdf0e10cSrcweir mxConfigurationController = NULL; 189*cdf0e10cSrcweir mpBase = NULL; 190*cdf0e10cSrcweir } 191*cdf0e10cSrcweir } 192*cdf0e10cSrcweir 193*cdf0e10cSrcweir 194*cdf0e10cSrcweir 195*cdf0e10cSrcweir } } // end of namespace sd::framework 196