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 #include <com/sun/star/lang/XUnoTunnel.hpp>
32 
33 #include <xmloff/xmlcnimp.hxx>
34 
35 #include <cppuhelper/implbase3.hxx>
36 
37 extern css::uno::Reference< css::uno::XInterface >  SvUnoAttributeContainer_CreateInstance();
38 
39 class XMLOFF_DLLPUBLIC SvUnoAttributeContainer final :
40     public ::cppu::WeakAggImplHelper3<
41         css::lang::XServiceInfo,
42         css::lang::XUnoTunnel,
43         css::container::XNameContainer >
44 {
45 private:
46     std::unique_ptr<SvXMLAttrContainerData> mpContainer;
47 
48     SAL_DLLPRIVATE sal_uInt16 getIndexByName(const OUString& aName )
49         const;
50 
51 public:
52     SvUnoAttributeContainer( std::unique_ptr<SvXMLAttrContainerData> pContainer = nullptr );
GetContainerImpl() const53     SvXMLAttrContainerData* GetContainerImpl() const { return mpContainer.get(); }
54 
55     static const css::uno::Sequence< sal_Int8 > & getUnoTunnelId() noexcept;
56     virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
57 
58     // css::container::XElementAccess
59     virtual css::uno::Type  SAL_CALL getElementType() override;
60     virtual sal_Bool SAL_CALL hasElements() override;
61 
62     // css::container::XNameAccess
63     virtual css::uno::Any SAL_CALL getByName(const OUString& aName) override;
64     virtual css::uno::Sequence< OUString > SAL_CALL getElementNames() override;
65     virtual sal_Bool SAL_CALL hasByName(const OUString& aName) override;
66 
67     // css::container::XNameReplace
68     virtual void SAL_CALL replaceByName(const OUString& aName, const css::uno::Any& aElement) override;
69 
70     // css::container::XNameContainer
71     virtual void SAL_CALL insertByName(const OUString& aName, const css::uno::Any& aElement) override;
72     virtual void SAL_CALL removeByName(const OUString& Name) override;
73 
74     // css::lang::XServiceInfo
75     virtual OUString SAL_CALL getImplementationName() override;
76     virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
77     virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) override;
78 };
79 
80 #endif
81 
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
83