android: Update app-specific/MIME type icons
[LibreOffice.git] / include / xmloff / unoatrcn.hxx
blobb09a06250215b8a6c184b9e7b0dab84a0865e015
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_XMLOFF_UNOATRCN_HXX
21 #define INCLUDED_XMLOFF_UNOATRCN_HXX
23 #include <sal/config.h>
25 #include <memory>
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>
32 #include <xmloff/xmlcnimp.hxx>
34 #include <cppuhelper/implbase2.hxx>
36 extern css::uno::Reference< css::uno::XInterface > SvUnoAttributeContainer_CreateInstance();
38 class XMLOFF_DLLPUBLIC SvUnoAttributeContainer final :
39 public ::cppu::WeakAggImplHelper2<
40 css::lang::XServiceInfo,
41 css::container::XNameContainer >
43 private:
44 std::unique_ptr<SvXMLAttrContainerData> mpContainer;
46 SAL_DLLPRIVATE sal_uInt16 getIndexByName(std::u16string_view aName )
47 const;
49 public:
50 SvUnoAttributeContainer( std::unique_ptr<SvXMLAttrContainerData> pContainer = nullptr );
51 SvXMLAttrContainerData* GetContainerImpl() const { return mpContainer.get(); }
53 // css::container::XElementAccess
54 virtual css::uno::Type SAL_CALL getElementType() override;
55 virtual sal_Bool SAL_CALL hasElements() override;
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;
62 // css::container::XNameReplace
63 virtual void SAL_CALL replaceByName(const OUString& aName, const css::uno::Any& aElement) override;
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;
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;
75 #endif
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */