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_EDITENG_UNOIPSET_HXX
21 #define INCLUDED_EDITENG_UNOIPSET_HXX
22 
23 #include <editeng/editengdllapi.h>
24 #include <svl/itemprop.hxx>
25 #include <memory>
26 #include <vector>
27 
28 namespace com::sun::star::beans { class XPropertySetInfo; }
29 
30 class SfxItemSet;
31 struct SvxIDPropertyCombine;
32 
33 class EDITENG_DLLPUBLIC SvxItemPropertySet
34 {
35     SfxItemPropertyMap          m_aPropertyMap;
36     mutable css::uno::Reference<css::beans::XPropertySetInfo> m_xInfo;
37     ::std::vector< SvxIDPropertyCombine > aCombineList;
38     SfxItemPool&                    mrItemPool;
39 
40 public:
41     SvxItemPropertySet( const SfxItemPropertyMapEntry *pMap, SfxItemPool& rPool );
42     ~SvxItemPropertySet();
43 
44     SvxItemPropertySet& operator=( SvxItemPropertySet const & ) = delete; // MSVC2015 workaround
45     SvxItemPropertySet( SvxItemPropertySet const & ) = delete; // MSVC2015 workaround
46 
47     // Methods, which work directly with the ItemSet
48     static css::uno::Any getPropertyValue( const SfxItemPropertyMapEntry* pMap, const SfxItemSet& rSet, bool bSearchInParent, bool bDontConvertNegativeValues );
49     static void setPropertyValue( const SfxItemPropertyMapEntry* pMap, const css::uno::Any& rVal, SfxItemSet& rSet, bool bDontConvertNegativeValues );
50 
51     // Methods that use Any instead
52     css::uno::Any getPropertyValue( const SfxItemPropertyMapEntry* pMap ) const;
53     void setPropertyValue( const SfxItemPropertyMapEntry* pMap, const css::uno::Any& rVal ) const;
54 
AreThereOwnUsrAnys() const55     bool AreThereOwnUsrAnys() const { return ! aCombineList.empty(); }
56     css::uno::Any* GetUsrAnyForID(SfxItemPropertyMapEntry const & entry) const;
57     void AddUsrAnyForID(const css::uno::Any& rAny, SfxItemPropertyMapEntry const & entry);
58     void ClearAllUsrAny();
59 
60     css::uno::Reference< css::beans::XPropertySetInfo > const & getPropertySetInfo() const;
getPropertyMap() const61     const SfxItemPropertyMap& getPropertyMap() const { return m_aPropertyMap;}
62     const SfxItemPropertyMapEntry* getPropertyMapEntry(std::u16string_view rName) const;
63 };
64 
65 /** converts the given any with a metric to 100th/mm if needed */
66 EDITENG_DLLPUBLIC void SvxUnoConvertToMM( const MapUnit eSourceMapUnit, css::uno::Any & rMetric ) noexcept;
67 
68 /** converts the given any with a metric from 100th/mm to the given metric if needed */
69 EDITENG_DLLPUBLIC void SvxUnoConvertFromMM( const MapUnit eDestinationMapUnit, css::uno::Any & rMetric ) noexcept;
70 
71 #endif // INCLUDED_EDITENG_UNOIPSET_HXX
72 
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
74