/* -*- 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 .
*/
OUString ConfigurationAccess_ControllerFactory::getServiceFromCommandModule( std::u16string_view rCommandURL, std::u16string_view rModule ) const
{
std::unique_lock g(m_mutex); auto pIter = m_aMenuControllerMap.find( getHashKeyFromStrings( rCommandURL, rModule ));
if ( pIter != m_aMenuControllerMap.end() ) return pIter->second.m_aImplementationName; elseif ( !rModule.empty() )
{ // Try to detect if we have a generic popup menu controller
pIter = m_aMenuControllerMap.find(
getHashKeyFromStrings( rCommandURL, std::u16string_view() ));
if ( pIter != m_aMenuControllerMap.end() ) return pIter->second.m_aImplementationName;
}
auto pIter = m_aMenuControllerMap.find( getHashKeyFromStrings( rCommandURL, rModule ));
if ( pIter != m_aMenuControllerMap.end() ) return pIter->second.m_aValue; elseif ( !rModule.empty() )
{ // Try to detect if we have a generic popup menu controller
pIter = m_aMenuControllerMap.find(
getHashKeyFromStrings( rCommandURL, std::u16string_view() ));
if ( pIter != m_aMenuControllerMap.end() ) return pIter->second.m_aValue;
}
if ( impl_getElementProps( aEvent.Element, aCommand, aModule, aService, aValue ))
{ // Create hash key from command and module as they are together a primary key to // the UNO service that implements the popup menu controller.
OUString aHashKey( getHashKeyFromStrings( aCommand, aModule ));
ControllerInfo& rControllerInfo = m_aMenuControllerMap[ aHashKey ];
rControllerInfo.m_aImplementationName = aService;
rControllerInfo.m_aValue = aValue;
}
}
if ( impl_getElementProps( aEvent.Element, aCommand, aModule, aService, aValue ))
{ // Create hash key from command and module as they are together a primary key to // the UNO service that implements the popup menu controller.
OUString aHashKey( getHashKeyFromStrings( aCommand, aModule ));
m_aMenuControllerMap.erase( aHashKey );
}
}
m_aMenuControllerMap.clear(); for ( OUString const & name : aPopupMenuControllers )
{ try
{ if ( impl_getElementProps( m_xConfigAccess->getByName( name ), aCommand, aModule, aService,aValue ))
{ // Create hash key from command and module as they are together a primary key to // the UNO service that implements the popup menu controller.
aHashKey = getHashKeyFromStrings( aCommand, aModule );
m_aMenuControllerMap.emplace( aHashKey, ControllerInfo(aService,aValue) );
}
} catch ( const NoSuchElementException& )
{
} catch ( const WrappedTargetException& )
{
}
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.