android: Update app-specific/MIME type icons
[LibreOffice.git] / include / comphelper / attributelist.hxx
blob35f9de82b5903880469df01830f155bf4809d1d5
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_COMPHELPER_ATTRIBUTELIST_HXX
21 #define INCLUDED_COMPHELPER_ATTRIBUTELIST_HXX
23 #include <sal/config.h>
25 #include <vector>
27 #include <com/sun/star/util/XCloneable.hpp>
28 #include <com/sun/star/xml/sax/XAttributeList.hpp>
29 #include <cppuhelper/implbase.hxx>
30 #include <comphelper/comphelperdllapi.h>
32 namespace comphelper
35 class COMPHELPER_DLLPUBLIC AttributeList final :
36 public ::cppu::WeakImplHelper<css::xml::sax::XAttributeList, css::util::XCloneable>
38 struct TagAttribute
40 OUString sName;
41 OUString sValue;
43 std::vector<TagAttribute> mAttributes;
44 public:
45 AttributeList();
46 AttributeList(const AttributeList &r) = default;
47 AttributeList(const css::uno::Reference<css::xml::sax::XAttributeList>& rAttrList);
48 AttributeList(AttributeList&&) = delete;
50 virtual ~AttributeList() override;
52 // methods that are not contained in any interface
53 void AddAttribute(const OUString &sName, const OUString &sValue);
54 void Clear()
56 mAttributes.clear();
58 void RemoveAttribute(const OUString& sName);
59 void AppendAttributeList(const css::uno::Reference< css::xml::sax::XAttributeList >&);
60 void SetValueByIndex(sal_Int16 i, const OUString& rValue);
61 void RemoveAttributeByIndex(sal_Int16 i);
62 void RenameAttributeByIndex(sal_Int16 i, const OUString& rNewName);
63 sal_Int16 GetIndexByName(const OUString& rName) const;
65 // css::xml::sax::XAttributeList
66 virtual sal_Int16 SAL_CALL getLength() override
68 return static_cast<sal_Int16>(mAttributes.size());
70 virtual OUString SAL_CALL getNameByIndex(sal_Int16 i) override
72 return mAttributes[i].sName;
74 virtual OUString SAL_CALL getTypeByIndex(sal_Int16) override { return "CDATA"; }
75 virtual OUString SAL_CALL getTypeByName(const OUString&) override { return "CDATA"; }
76 virtual OUString SAL_CALL getValueByIndex(sal_Int16 i) override
78 return mAttributes[i].sValue;
80 virtual OUString SAL_CALL getValueByName(const OUString& aName) override;
82 // css::util::XCloneable
83 virtual css::uno::Reference< XCloneable > SAL_CALL
84 createClone() override;
87 } // namespace comphelper
89 #endif // INCLUDED_COMPHELPER_ATTRIBUTELIST_HXX
91 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */