/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #include "precompiled_sd.hxx" #include "ResourceManager.hxx" #include "framework/FrameworkHelper.hxx" #include "framework/ConfigurationController.hxx" #include #include #include using namespace ::com::sun::star; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::drawing::framework; using ::rtl::OUString; using ::sd::framework::FrameworkHelper; namespace { static const sal_Int32 ResourceActivationRequestEvent = 0; static const sal_Int32 ResourceDeactivationRequestEvent = 1; } namespace sd { namespace framework { class ResourceManager::MainViewContainer : public ::std::set { public: MainViewContainer (void) {} }; //===== ResourceManager ======================================================= ResourceManager::ResourceManager ( const Reference& rxController, const Reference& rxResourceId) : ResourceManagerInterfaceBase(MutexOwner::maMutex), mxConfigurationController(), mpActiveMainViewContainer(new MainViewContainer()), mxResourceId(rxResourceId), mxMainViewAnchorId(FrameworkHelper::Instance(rxController)->CreateResourceId( FrameworkHelper::msCenterPaneURL)), msCurrentMainViewURL(), mbIsEnabled(true) { Reference xControllerManager (rxController, UNO_QUERY); if (xControllerManager.is()) { mxConfigurationController = xControllerManager->getConfigurationController(); if (mxConfigurationController.is()) { mxConfigurationController->addConfigurationChangeListener( this, FrameworkHelper::msResourceActivationRequestEvent, makeAny(ResourceActivationRequestEvent)); mxConfigurationController->addConfigurationChangeListener( this, FrameworkHelper::msResourceDeactivationRequestEvent, makeAny(ResourceDeactivationRequestEvent)); } } } ResourceManager::~ResourceManager (void) { } void ResourceManager::AddActiveMainView ( const OUString& rsMainViewURL) { mpActiveMainViewContainer->insert(rsMainViewURL); } void SAL_CALL ResourceManager::disposing (void) { if (mxConfigurationController.is()) { mxConfigurationController->removeConfigurationChangeListener(this); mxConfigurationController = NULL; } } void ResourceManager::Enable (void) { mbIsEnabled = true; UpdateForMainViewShell(); } void ResourceManager::Disable (void) { mbIsEnabled = false; UpdateForMainViewShell(); } void SAL_CALL ResourceManager::notifyConfigurationChange ( const ConfigurationChangeEvent& rEvent) throw (RuntimeException) { OSL_ASSERT(rEvent.ResourceId.is()); sal_Int32 nEventType = 0; rEvent.UserData >>= nEventType; switch (nEventType) { case ResourceActivationRequestEvent: if (rEvent.ResourceId->isBoundToURL( FrameworkHelper::msCenterPaneURL, AnchorBindingMode_DIRECT)) { // A resource directly bound to the center pane has been // requested. if (rEvent.ResourceId->getResourceTypePrefix().equals( FrameworkHelper::msViewURLPrefix)) { // The requested resource is a view. Show or hide the // resource managed by this ResourceManager accordingly. HandleMainViewSwitch( rEvent.ResourceId->getResourceURL(), rEvent.Configuration, true); } } else if (rEvent.ResourceId->compareTo(mxResourceId) == 0) { // The resource managed by this ResourceManager has been // explicitly been requested (maybe by us). Remember this // setting. HandleResourceRequest(true, rEvent.Configuration); } break; case ResourceDeactivationRequestEvent: if (rEvent.ResourceId->compareTo(mxMainViewAnchorId) == 0) { HandleMainViewSwitch( OUString(), rEvent.Configuration, false); } else if (rEvent.ResourceId->compareTo(mxResourceId) == 0) { // The resource managed by this ResourceManager has been // explicitly been requested to be hidden (maybe by us). // Remember this setting. HandleResourceRequest(false, rEvent.Configuration); } break; } } void ResourceManager::UpdateForMainViewShell (void) { if (mxConfigurationController.is()) { ConfigurationController::Lock aLock (mxConfigurationController); if (mbIsEnabled && mpActiveMainViewContainer->find(msCurrentMainViewURL) != mpActiveMainViewContainer->end()) { // Activate resource. mxConfigurationController->requestResourceActivation( mxResourceId->getAnchor(), ResourceActivationMode_ADD); mxConfigurationController->requestResourceActivation( mxResourceId, ResourceActivationMode_REPLACE); } else { mxConfigurationController->requestResourceDeactivation(mxResourceId); } } } void ResourceManager::HandleMainViewSwitch ( const OUString& rsViewURL, const Reference& rxConfiguration, const bool bIsActivated) { (void)rxConfiguration; if (bIsActivated) msCurrentMainViewURL = rsViewURL; else msCurrentMainViewURL = OUString(); UpdateForMainViewShell(); } void ResourceManager::HandleResourceRequest( bool bActivation, const Reference& rxConfiguration) { if (mbIsEnabled) { Sequence > aCenterViews = rxConfiguration->getResources( FrameworkHelper::CreateResourceId(FrameworkHelper::msCenterPaneURL), FrameworkHelper::msViewURLPrefix, AnchorBindingMode_DIRECT); if (aCenterViews.getLength() == 1) { if (bActivation) { mpActiveMainViewContainer->insert(aCenterViews[0]->getResourceURL()); } else { MainViewContainer::iterator iElement ( mpActiveMainViewContainer->find(aCenterViews[0]->getResourceURL())); if (iElement != mpActiveMainViewContainer->end()) mpActiveMainViewContainer->erase(iElement); } } } } void SAL_CALL ResourceManager::disposing ( const lang::EventObject& rEvent) throw (RuntimeException) { if (mxConfigurationController.is() && rEvent.Source == mxConfigurationController) { // Without the configuration controller this class can do nothing. mxConfigurationController = NULL; dispose(); } } } } // end of namespace sd::framework