/* -*- 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 .
*/
// loop through the collected events and translate them
sal_Int32 nSeparatorPos = -1; for ( constauto& rEvent : m_aCollectEvents )
{ // the name of the event is built from ListenerType::EventMethod
nSeparatorPos = rEvent.first.indexOf(EVENT_NAME_SEPARATOR);
OSL_ENSURE(-1 != nSeparatorPos, "OFormEventsImportContext::EndElement: invalid (unrecognized) event name!");
pTranslated->ListenerType = rEvent.first.copy(0, nSeparatorPos);
pTranslated->EventMethod = rEvent.first.copy(nSeparatorPos + sizeof(EVENT_NAME_SEPARATOR) - 1);
OUString sLibrary;
// the local macro name and the event type are specified as properties const PropertyValue* pEventDescription = rEvent.second.getConstArray(); const PropertyValue* pEventDescriptionEnd = pEventDescription + rEvent.second.getLength(); for (;pEventDescription != pEventDescriptionEnd; ++pEventDescription)
{ if (pEventDescription->Name == EVENT_LOCALMACRONAME ||
pEventDescription->Name == EVENT_SCRIPTURL)
pEventDescription->Value >>= pTranslated->ScriptCode; elseif (pEventDescription->Name == EVENT_TYPE)
pEventDescription->Value >>= pTranslated->ScriptType; elseif (pEventDescription->Name == EVENT_LIBRARY)
pEventDescription->Value >>= sLibrary;
}
if (pTranslated->ScriptType == EVENT_STARBASIC)
{ if (sLibrary == EVENT_STAROFFICE)
sLibrary = EVENT_APPLICATION;
if ( !sLibrary.isEmpty() )
{ // for StarBasic, the library is prepended
sLibrary += ":";
}
sLibrary += pTranslated->ScriptCode;
pTranslated->ScriptCode = sLibrary;
}
++pTranslated;
}
// register the events
m_rEventAttacher.registerEvents(aTranslated);
}
void ODefaultEventAttacherManager::registerEvents(const Reference< XPropertySet >& _rxElement, const Sequence< ScriptEventDescriptor >& _rEvents)
{
OSL_ENSURE(m_aEvents.end() == m_aEvents.find(_rxElement), "ODefaultEventAttacherManager::registerEvents: already have events for this object!"); // for the moment, only remember the script events
m_aEvents[_rxElement] = _rEvents;
}
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.