LibreOffice Module xmloff (master) 1
eventexport.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#pragma once
21
22#include <sal/config.h>
23
24#include <map>
25
26#include <com/sun/star/container/XNameReplace.hpp>
27#include <com/sun/star/script/ScriptEventDescriptor.hpp>
28#include <com/sun/star/beans/PropertyValue.hpp>
29#include <com/sun/star/uno/Sequence.hxx>
31
32namespace xmloff
33{
34
35 //= OEventDescriptorMapper
36 typedef ::cppu::WeakImplHelper < css::container::XNameReplace
48 {
49 typedef std::map< OUString, css::uno::Sequence < css::beans::PropertyValue > > MapString2PropertyValueSequence;
51
52 public:
54 const css::uno::Sequence< css::script::ScriptEventDescriptor >& _rEvents);
55
56 // XNameReplace
57 virtual void SAL_CALL replaceByName( const OUString& aName, const css::uno::Any& aElement ) override;
58
59 // XNameAccess
60 virtual css::uno::Any SAL_CALL getByName( const OUString& aName ) override;
61 virtual css::uno::Sequence< OUString > SAL_CALL getElementNames( ) override;
62 virtual sal_Bool SAL_CALL hasByName( const OUString& aName ) override;
63
64 // XElementAccess
65 virtual css::uno::Type SAL_CALL getElementType( ) override;
66 virtual sal_Bool SAL_CALL hasElements( ) override;
67 };
68
69} // namespace xmloff
70
71/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
helper class wrapping different script event representations
Definition: eventexport.hxx:48
virtual css::uno::Sequence< OUString > SAL_CALL getElementNames() override
OEventDescriptorMapper(const css::uno::Sequence< css::script::ScriptEventDescriptor > &_rEvents)
Definition: eventexport.cxx:35
virtual sal_Bool SAL_CALL hasElements() override
virtual css::uno::Type SAL_CALL getElementType() override
virtual sal_Bool SAL_CALL hasByName(const OUString &aName) override
std::map< OUString, css::uno::Sequence< css::beans::PropertyValue > > MapString2PropertyValueSequence
Definition: eventexport.hxx:49
MapString2PropertyValueSequence m_aMappedEvents
Definition: eventexport.hxx:50
virtual css::uno::Any SAL_CALL getByName(const OUString &aName) override
Definition: eventexport.cxx:92
virtual void SAL_CALL replaceByName(const OUString &aName, const css::uno::Any &aElement) override
Definition: eventexport.cxx:86
::cppu::WeakImplHelper< css::container::XNameReplace > OEventDescriptorMapper_Base
Definition: eventexport.hxx:37
unsigned char sal_Bool