/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * 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 . */ #include #include #include #include #include #include #include #include #include #include using namespace css; using namespace css::uno; namespace sfx2 { namespace sidebar { namespace { OUString getString(utl::OConfigurationNode const & aNode, const char* pNodeName) { return comphelper::getString(aNode.getNodeValue(pNodeName)); } sal_Int32 getInt32(utl::OConfigurationNode const & aNode, const char* pNodeName) { return comphelper::getINT32(aNode.getNodeValue(pNodeName)); } bool getBool(utl::OConfigurationNode const & aNode, const char* pNodeName) { return comphelper::getBOOL(aNode.getNodeValue(pNodeName)); } } //end anonymous namespace ResourceManager& ResourceManager::Instance() { static ResourceManager maInstance; return maInstance; } ResourceManager::ResourceManager() : maDecks(), maPanels(), maProcessedApplications(), maMiscOptions() { ReadDeckList(); ReadPanelList(); } ResourceManager::~ResourceManager() { } const DeckDescriptor* ResourceManager::GetDeckDescriptor(const OUString& rsDeckId) const { DeckContainer::const_iterator iDeck; for (iDeck = maDecks.begin(); iDeck != maDecks.end(); ++iDeck) { if (iDeck->mbExperimental && !maMiscOptions.IsExperimentalMode()) continue; if (iDeck->msId.equals(rsDeckId)) return &*iDeck; } return NULL; } const PanelDescriptor* ResourceManager::GetPanelDescriptor(const OUString& rsPanelId) const { PanelContainer::const_iterator iPanel; for (iPanel = maPanels.begin(); iPanel != maPanels.end(); ++iPanel) { if (iPanel->msId.equals(rsPanelId)) return &*iPanel; } return NULL; } void ResourceManager::SetIsDeckEnabled(const OUString& rsDeckId, const bool bIsEnabled) { DeckContainer::iterator iDeck; for (iDeck = maDecks.begin(); iDeck != maDecks.end(); ++iDeck) { if (iDeck->mbExperimental && !maMiscOptions.IsExperimentalMode()) continue; if (iDeck->msId.equals(rsDeckId)) { iDeck->mbIsEnabled = bIsEnabled; return; } } } void ResourceManager::SetDeckTitle(const OUString& rsDeckId, const OUString& sTitle) { DeckContainer::iterator iDeck; for (iDeck = maDecks.begin(); iDeck != maDecks.end(); ++iDeck) { if (iDeck->mbExperimental && !maMiscOptions.IsExperimentalMode()) continue; if (iDeck->msId.equals(rsDeckId)) { iDeck->msTitle = sTitle; iDeck->msHelpText = sTitle; return; } } } void ResourceManager::SetDeckToDescriptor(const OUString& rsDeckId, VclPtr aDeck) { DeckContainer::iterator iDeck; for (iDeck = maDecks.begin(); iDeck != maDecks.end(); ++iDeck) { if (iDeck->mbExperimental && !maMiscOptions.IsExperimentalMode()) continue; if (iDeck->msId.equals(rsDeckId)) { iDeck->mpDeck = aDeck; return; } } } void ResourceManager::SetDeckOrderIndex(const OUString& rsDeckId, const sal_Int32 orderIndex) { DeckContainer::iterator iDeck; for (iDeck = maDecks.begin(); iDeck != maDecks.end(); ++iDeck) { if (iDeck->mbExperimental && !maMiscOptions.IsExperimentalMode()) continue; if (iDeck->msId.equals(rsDeckId)) { iDeck->mnOrderIndex = orderIndex; return; } } } void ResourceManager::SetPanelOrderIndex(const OUString& rsPanelId, const sal_Int32 orderIndex) { PanelContainer::iterator iPanel; for (iPanel = maPanels.begin(); iPanel != maPanels.end(); ++iPanel) { if (iPanel->mbExperimental && !maMiscOptions.IsExperimentalMode()) continue; if (iPanel->msId.equals(rsPanelId)) { iPanel->mnOrderIndex = orderIndex; return; } } } const ResourceManager::DeckContextDescriptorContainer& ResourceManager::GetMatchingDecks ( DeckContextDescriptorContainer& rDecks, const Context& rContext, const bool bIsDocumentReadOnly, const Reference& rxFrame) { ReadLegacyAddons(rxFrame); std::multimap aOrderedIds; DeckContainer::const_iterator iDeck; for (iDeck = maDecks.begin(); iDeck != maDecks.end(); ++iDeck) { if (iDeck->mbExperimental && !maMiscOptions.IsExperimentalMode()) continue; const DeckDescriptor& rDeckDescriptor (*iDeck); if (rDeckDescriptor.maContextList.GetMatch(rContext) == NULL) continue; DeckContextDescriptor aDeckContextDescriptor; aDeckContextDescriptor.msId = rDeckDescriptor.msId; aDeckContextDescriptor.mbIsEnabled = ! bIsDocumentReadOnly || IsDeckEnabled(rDeckDescriptor.msId, rContext, rxFrame); aOrderedIds.insert(::std::multimap::value_type( rDeckDescriptor.mnOrderIndex, aDeckContextDescriptor)); } std::multimap::const_iterator iId; for (iId = aOrderedIds.begin(); iId != aOrderedIds.end(); ++iId) { rDecks.push_back(iId->second); } return rDecks; } const ResourceManager::PanelContextDescriptorContainer& ResourceManager::GetMatchingPanels ( PanelContextDescriptorContainer& rPanelIds, const Context& rContext, const OUString& rsDeckId, const Reference& rxFrame) { ReadLegacyAddons(rxFrame); std::multimap aOrderedIds; PanelContainer::const_iterator iPanel; for (iPanel = maPanels.begin(); iPanel != maPanels.end(); ++iPanel) { const PanelDescriptor& rPanelDescriptor (*iPanel); if (rPanelDescriptor.mbExperimental && !maMiscOptions.IsExperimentalMode()) continue; if ( ! rPanelDescriptor.msDeckId.equals(rsDeckId)) continue; const ContextList::Entry* pEntry = rPanelDescriptor.maContextList.GetMatch(rContext); if (pEntry == NULL) continue; PanelContextDescriptor aPanelContextDescriptor; aPanelContextDescriptor.msId = rPanelDescriptor.msId; aPanelContextDescriptor.msMenuCommand = pEntry->msMenuCommand; aPanelContextDescriptor.mbIsInitiallyVisible = pEntry->mbIsInitiallyVisible; aPanelContextDescriptor.mbShowForReadOnlyDocuments = rPanelDescriptor.mbShowForReadOnlyDocuments; aOrderedIds.insert(std::multimap::value_type( rPanelDescriptor.mnOrderIndex, aPanelContextDescriptor)); } std::multimap::const_iterator iId; for (iId = aOrderedIds.begin(); iId != aOrderedIds.end(); ++iId) { rPanelIds.push_back(iId->second); } return rPanelIds; } void ResourceManager::ReadDeckList() { const utl::OConfigurationTreeRoot aDeckRootNode( comphelper::getProcessComponentContext(), OUString("org.openoffice.Office.UI.Sidebar/Content/DeckList"), false); if (!aDeckRootNode.isValid()) return; const Sequence aDeckNodeNames (aDeckRootNode.getNodeNames()); const sal_Int32 nCount(aDeckNodeNames.getLength()); maDecks.resize(nCount); sal_Int32 nWriteIndex(0); for (sal_Int32 nReadIndex(0); nReadIndex aPanelNodeNames (aPanelRootNode.getNodeNames()); const sal_Int32 nCount (aPanelNodeNames.getLength()); maPanels.resize(nCount); sal_Int32 nWriteIndex (0); for (sal_Int32 nReadIndex(0); nReadIndex aValues; sal_Int32 nCount; if (aValue >>= aValues) nCount = aValues.getLength(); else nCount = 0; for (sal_Int32 nIndex=0; nIndex 0 ? (sMenuCommandOverride == "none" ? OUString() : sMenuCommandOverride) : rsDefaultMenuCommand); // Setup a list of application enums. Note that the // application name may result in more than one value (eg // DrawImpress will result in two enums, one for Draw and one // for Impress). std::vector aApplications; EnumContext::Application eApplication (EnumContext::GetApplicationEnum(sApplicationName)); if (eApplication == EnumContext::Application_None && !sApplicationName.equals(EnumContext::GetApplicationName(EnumContext::Application_None))) { // Handle some special names: abbreviations that make // context descriptions more readable. if (sApplicationName == "Writer") aApplications.push_back(EnumContext::Application_Writer); else if (sApplicationName == "Calc") aApplications.push_back(EnumContext::Application_Calc); else if (sApplicationName == "Draw") aApplications.push_back(EnumContext::Application_Draw); else if (sApplicationName == "Impress") aApplications.push_back(EnumContext::Application_Impress); else if (sApplicationName == "DrawImpress") { // A special case among the special names: it is // common to use the same context descriptions for // both Draw and Impress. This special case helps to // avoid duplication in the .xcu file. aApplications.push_back(EnumContext::Application_Draw); aApplications.push_back(EnumContext::Application_Impress); } else if (sApplicationName == "WriterVariants") { // Another special case for all Writer variants. aApplications.push_back(EnumContext::Application_Writer); aApplications.push_back(EnumContext::Application_WriterGlobal); aApplications.push_back(EnumContext::Application_WriterWeb); aApplications.push_back(EnumContext::Application_WriterXML); aApplications.push_back(EnumContext::Application_WriterForm); aApplications.push_back(EnumContext::Application_WriterReport); } else { SAL_WARN("sfx2.sidebar", "application name " << sApplicationName << " not recognized"); continue; } } else { // No conversion of the application name necessary. aApplications.push_back(eApplication); } // Setup the actual context enum. const EnumContext::Context eContext (EnumContext::GetContextEnum(sContextName)); if (eContext == EnumContext::Context_Unknown) { SAL_WARN("sfx2.sidebar", "context name " << sContextName << " not recognized"); continue; } // Setup the flag that controls whether a deck/pane is // initially visible/expanded. bool bIsInitiallyVisible; if (sInitialState == "visible") bIsInitiallyVisible = true; else if (sInitialState == "hidden") bIsInitiallyVisible = false; else { OSL_FAIL("unrecognized state"); continue; } // Add context descriptors. std::vector::const_iterator iApplication; for (iApplication = aApplications.begin(); iApplication != aApplications.end(); ++iApplication) { if (*iApplication != EnumContext::Application_None) { rContextList.AddContextDescription( Context( EnumContext::GetApplicationName(*iApplication), EnumContext::GetContextName(eContext)), bIsInitiallyVisible, sMenuCommand); } } } } void ResourceManager::ReadLegacyAddons (const Reference& rxFrame) { // Get module name for given frame. OUString sModuleName (Tools::GetModuleName(rxFrame)); if (sModuleName.getLength() == 0) return; if (maProcessedApplications.find(sModuleName) != maProcessedApplications.end()) { // Addons for this application have already been read. // There is nothing more to do. return; } // Mark module as processed. Even when there is an error that // prevents the configuration data from being read, this error // will not be triggered a second time. maProcessedApplications.insert(sModuleName); // Get access to the configuration root node for the application. utl::OConfigurationTreeRoot aLegacyRootNode (GetLegacyAddonRootNode(sModuleName)); if (!aLegacyRootNode.isValid()) return; // Process child nodes. std::vector aMatchingNodeNames; GetToolPanelNodeNames(aMatchingNodeNames, aLegacyRootNode); const sal_Int32 nCount (aMatchingNodeNames.size()); size_t nDeckWriteIndex (maDecks.size()); size_t nPanelWriteIndex (maPanels.size()); maDecks.resize(maDecks.size() + nCount); maPanels.resize(maPanels.size() + nCount); for (sal_Int32 nReadIndex(0); nReadIndexmsId.equals(rsPanelId)) { ContextList::Entry* pEntry(iPanel->maContextList.GetMatch(rContext)); if (pEntry != NULL) pEntry->mbIsInitiallyVisible = bExpansionState; } } } utl::OConfigurationTreeRoot ResourceManager::GetLegacyAddonRootNode (const OUString& rsModuleName) { try { const Reference xContext(comphelper::getProcessComponentContext()); const Reference xModuleAccess = frame::ModuleManager::create(xContext); const comphelper::NamedValueCollection aModuleProperties(xModuleAccess->getByName(rsModuleName)); const OUString sWindowStateRef(aModuleProperties.getOrDefault( "ooSetupFactoryWindowStateConfigRef", OUString())); OUStringBuffer aPathComposer; aPathComposer.appendAscii("org.openoffice.Office.UI."); aPathComposer.append(sWindowStateRef); aPathComposer.appendAscii("/UIElements/States"); return utl::OConfigurationTreeRoot(xContext, aPathComposer.makeStringAndClear(), false); } catch (const Exception&) { DBG_UNHANDLED_EXCEPTION(); } return utl::OConfigurationTreeRoot(); } void ResourceManager::GetToolPanelNodeNames ( std::vector& rMatchingNames, const utl::OConfigurationTreeRoot& aRoot) { Sequence aChildNodeNames (aRoot.getNodeNames()); const sal_Int32 nCount (aChildNodeNames.getLength()); for (sal_Int32 nIndex(0); nIndex& rxFrame) { // Check if any panel that matches the current context can be // displayed. ResourceManager::PanelContextDescriptorContainer aPanelContextDescriptors; ResourceManager::Instance().GetMatchingPanels(aPanelContextDescriptors, rContext, rsDeckId, rxFrame); ResourceManager::PanelContextDescriptorContainer::const_iterator iPanel; for (iPanel = aPanelContextDescriptors.begin(); iPanel != aPanelContextDescriptors.end(); ++iPanel) { if (iPanel->mbShowForReadOnlyDocuments) return true; } return false; } } } // end of namespace sfx2::sidebar /* vim:set shiftwidth=4 softtabstop=4 expandtab: */