lok: avoid expensive fetching of a property.
[LibreOffice.git] / include / xmloff / unoatrcn.hxx
blob2773af3f86db149c27c0c2ab4fec7d2c3f1227e0
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>
31 #include <com/sun/star/lang/XUnoTunnel.hpp>
33 #include <xmloff/xmlcnimp.hxx>
35 #include <cppuhelper/implbase3.hxx>
37 extern css::uno::Reference< css::uno::XInterface > SvUnoAttributeContainer_CreateInstance();
39 class XMLOFF_DLLPUBLIC SvUnoAttributeContainer final :
40 public ::cppu::WeakAggImplHelper3<
41 css::lang::XServiceInfo,
42 css::lang::XUnoTunnel,
43 css::container::XNameContainer >
45 private:
46 std::unique_ptr<SvXMLAttrContainerData> mpContainer;
48 SAL_DLLPRIVATE sal_uInt16 getIndexByName(const OUString& aName )
49 const;
51 public:
52 SvUnoAttributeContainer( std::unique_ptr<SvXMLAttrContainerData> pContainer = nullptr );
53 SvXMLAttrContainerData* GetContainerImpl() const { return mpContainer.get(); }
55 static const css::uno::Sequence< sal_Int8 > & getUnoTunnelId() throw();
56 virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
58 // css::container::XElementAccess
59 virtual css::uno::Type SAL_CALL getElementType() override;
60 virtual sal_Bool SAL_CALL hasElements() override;
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;
67 // css::container::XNameReplace
68 virtual void SAL_CALL replaceByName(const OUString& aName, const css::uno::Any& aElement) override;
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;
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;
80 #endif
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */