bump product version to 7.6.3.2-android
[LibreOffice.git] / include / editeng / unoipset.hxx
blob412fc9be229839d750bef172a5b97a45f8b4c947
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_EDITENG_UNOIPSET_HXX
21 #define INCLUDED_EDITENG_UNOIPSET_HXX
23 #include <editeng/editengdllapi.h>
24 #include <svl/itemprop.hxx>
25 #include <vector>
27 namespace com::sun::star::beans { class XPropertySetInfo; }
29 class SfxItemSet;
30 class SvxItemPropertySetUsrAnys;
32 class EDITENG_DLLPUBLIC SvxItemPropertySet
34 SfxItemPropertyMap m_aPropertyMap;
35 mutable css::uno::Reference<css::beans::XPropertySetInfo> m_xInfo;
36 SfxItemPool& mrItemPool;
38 public:
39 SvxItemPropertySet( o3tl::span<const SfxItemPropertyMapEntry> pMap, SfxItemPool& rPool );
40 ~SvxItemPropertySet();
42 SvxItemPropertySet& operator=( SvxItemPropertySet const & ) = delete; // MSVC2015 workaround
43 SvxItemPropertySet( SvxItemPropertySet const & ) = delete; // MSVC2015 workaround
45 // Methods, which work directly with the ItemSet
46 static css::uno::Any getPropertyValue( const SfxItemPropertyMapEntry* pMap, const SfxItemSet& rSet, bool bSearchInParent, bool bDontConvertNegativeValues );
47 static void setPropertyValue( const SfxItemPropertyMapEntry* pMap, const css::uno::Any& rVal, SfxItemSet& rSet, bool bDontConvertNegativeValues );
49 // Methods that use Any instead
50 css::uno::Any getPropertyValue( const SfxItemPropertyMapEntry* pMap, SvxItemPropertySetUsrAnys& rAnys ) const;
51 static void setPropertyValue( const SfxItemPropertyMapEntry* pMap, const css::uno::Any& rVal, SvxItemPropertySetUsrAnys& rAnys );
53 css::uno::Reference< css::beans::XPropertySetInfo > const & getPropertySetInfo() const;
54 const SfxItemPropertyMap& getPropertyMap() const { return m_aPropertyMap;}
55 const SfxItemPropertyMapEntry* getPropertyMapEntry(std::u16string_view rName) const;
58 struct SvxIDPropertyCombine
60 sal_uInt16 nWID;
61 sal_uInt8 memberId;
62 css::uno::Any aAny;
66 class EDITENG_DLLPUBLIC SvxItemPropertySetUsrAnys
68 ::std::vector< SvxIDPropertyCombine > aCombineList;
70 public:
71 SvxItemPropertySetUsrAnys();
72 ~SvxItemPropertySetUsrAnys();
73 bool AreThereOwnUsrAnys() const { return ! aCombineList.empty(); }
74 css::uno::Any* GetUsrAnyForID(SfxItemPropertyMapEntry const & entry) const;
75 void AddUsrAnyForID(const css::uno::Any& rAny, SfxItemPropertyMapEntry const & entry);
76 void ClearAllUsrAny();
79 /** converts the given any with a metric to 100th/mm if needed */
80 EDITENG_DLLPUBLIC void SvxUnoConvertToMM( const MapUnit eSourceMapUnit, css::uno::Any & rMetric ) noexcept;
82 /** converts the given any with a metric from 100th/mm to the given metric if needed */
83 EDITENG_DLLPUBLIC void SvxUnoConvertFromMM( const MapUnit eDestinationMapUnit, css::uno::Any & rMetric ) noexcept;
85 #endif // INCLUDED_EDITENG_UNOIPSET_HXX
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */