LibreOffice Module xmloff (master) 1
unoatrcn.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#ifndef INCLUDED_XMLOFF_UNOATRCN_HXX
21#define INCLUDED_XMLOFF_UNOATRCN_HXX
22
23#include <sal/config.h>
24
25#include <memory>
26
27#include <xmloff/dllapi.h>
28#include <sal/types.h>
29#include <com/sun/star/container/XNameContainer.hpp>
30#include <com/sun/star/lang/XServiceInfo.hpp>
31
32#include <xmloff/xmlcnimp.hxx>
33
35
36extern css::uno::Reference< css::uno::XInterface > SvUnoAttributeContainer_CreateInstance();
37
40 css::lang::XServiceInfo,
41 css::container::XNameContainer >
42{
43private:
44 std::unique_ptr<SvXMLAttrContainerData> mpContainer;
45
46 SAL_DLLPRIVATE sal_uInt16 getIndexByName(std::u16string_view aName )
47 const;
48
49public:
50 SvUnoAttributeContainer( std::unique_ptr<SvXMLAttrContainerData> pContainer = nullptr );
51 SvXMLAttrContainerData* GetContainerImpl() const { return mpContainer.get(); }
52
53 // css::container::XElementAccess
54 virtual css::uno::Type SAL_CALL getElementType() override;
55 virtual sal_Bool SAL_CALL hasElements() override;
56
57 // css::container::XNameAccess
58 virtual css::uno::Any SAL_CALL getByName(const OUString& aName) override;
59 virtual css::uno::Sequence< OUString > SAL_CALL getElementNames() override;
60 virtual sal_Bool SAL_CALL hasByName(const OUString& aName) override;
61
62 // css::container::XNameReplace
63 virtual void SAL_CALL replaceByName(const OUString& aName, const css::uno::Any& aElement) override;
64
65 // css::container::XNameContainer
66 virtual void SAL_CALL insertByName(const OUString& aName, const css::uno::Any& aElement) override;
67 virtual void SAL_CALL removeByName(const OUString& Name) override;
68
69 // css::lang::XServiceInfo
70 virtual OUString SAL_CALL getImplementationName() override;
71 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
72 virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) override;
73};
74
75#endif
76
77/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
SvXMLAttrContainerData * GetContainerImpl() const
Definition: unoatrcn.hxx:51
std::unique_ptr< SvXMLAttrContainerData > mpContainer
Definition: unoatrcn.hxx:44
#define XMLOFF_DLLPUBLIC
Definition: dllapi.h:29
css::uno::Sequence< OUString > getSupportedServiceNames()
OUString getImplementationName()
bool CPPUHELPER_DLLPUBLIC supportsService(css::lang::XServiceInfo *implementation, rtl::OUString const &name)
unsigned char sal_Bool
css::uno::Reference< css::uno::XInterface > SvUnoAttributeContainer_CreateInstance()
Definition: unoatrcn.cxx:36