1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
24 #include <svl/setitem.hxx>
25 #include <svl/itemset.hxx>
26 #include <svl/languageoptions.hxx>
27 #include <tools/degree.hxx>
28 #include <editeng/svxenum.hxx>
30 #include "fonthelper.hxx"
32 namespace vcl
{ class Font
; }
36 class SvNumberFormatter
;
38 enum class ScRotateDir
: sal_uInt8
;
40 /// how to treat COL_AUTO in GetFont:
42 enum ScAutoFontColorMode
44 SC_AUTOCOL_RAW
, ///< COL_AUTO is returned
45 SC_AUTOCOL_BLACK
, ///< always use black
46 SC_AUTOCOL_PRINT
, ///< black or white, depending on background
47 SC_AUTOCOL_DISPLAY
, ///< from style settings, or black/white if needed
48 SC_AUTOCOL_IGNOREFONT
, ///< like DISPLAY, but ignore stored font color (assume COL_AUTO)
49 SC_AUTOCOL_IGNOREBACK
, ///< like DISPLAY, but ignore stored background color (use configured color)
50 SC_AUTOCOL_IGNOREALL
///< like DISPLAY, but ignore stored font and background colors
53 class SC_DLLPUBLIC ScPatternAttr final
: public SfxSetItem
55 std::optional
<OUString
> pName
;
56 mutable std::optional
<size_t> mxHashCode
;
60 ScPatternAttr(SfxItemSet
&& pItemSet
, const OUString
& rStyleName
);
61 ScPatternAttr(SfxItemSet
&& pItemSet
);
62 ScPatternAttr(SfxItemPool
* pItemPool
);
63 ScPatternAttr(const ScPatternAttr
& rPatternAttr
);
65 virtual ScPatternAttr
* Clone( SfxItemPool
*pPool
= nullptr ) const override
;
67 virtual bool operator==(const SfxPoolItem
& rCmp
) const override
;
68 // Class cannot be IsSortable() because it's mutable, implement at least Lookup().
69 virtual bool HasLookup() const override
{ return true; }
70 virtual lookup_iterator
Lookup(lookup_iterator begin
, lookup_iterator end
) const override
;
72 const SfxPoolItem
& GetItem( sal_uInt16 nWhichP
) const
73 { return GetItemSet().Get(nWhichP
); }
74 template<class T
> const T
& GetItem( TypedWhichId
<T
> nWhich
) const
75 { return static_cast<const T
&>(GetItem(sal_uInt16(nWhich
))); }
77 static const SfxPoolItem
& GetItem( sal_uInt16 nWhich
, const SfxItemSet
& rItemSet
, const SfxItemSet
* pCondSet
);
78 template<class T
> static const T
& GetItem( TypedWhichId
<T
> nWhich
, const SfxItemSet
& rItemSet
, const SfxItemSet
* pCondSet
)
79 { return static_cast<const T
&>(GetItem(sal_uInt16(nWhich
), rItemSet
, pCondSet
)); }
81 const SfxPoolItem
& GetItem( sal_uInt16 nWhich
, const SfxItemSet
* pCondSet
) const;
82 template<class T
> const T
& GetItem( TypedWhichId
<T
> nWhich
, const SfxItemSet
* pCondSet
) const
83 { return static_cast<const T
&>(GetItem(sal_uInt16(nWhich
), pCondSet
)); }
85 /// @param pWhich are no ranges, but single IDs, 0-terminated
86 bool HasItemsSet( const sal_uInt16
* pWhich
) const;
87 void ClearItems( const sal_uInt16
* pWhich
);
89 void DeleteUnchanged( const ScPatternAttr
* pOldAttrs
);
91 static SvxCellOrientation
GetCellOrientation( const SfxItemSet
& rItemSet
, const SfxItemSet
* pCondSet
);
92 SvxCellOrientation
GetCellOrientation( const SfxItemSet
* pCondSet
= nullptr ) const;
94 /** Static helper function to fill a font object from the passed item set. */
95 static void GetFont( vcl::Font
& rFont
, const SfxItemSet
& rItemSet
,
96 ScAutoFontColorMode eAutoMode
,
97 const OutputDevice
* pOutDev
= nullptr,
98 const Fraction
* pScale
= nullptr,
99 const SfxItemSet
* pCondSet
= nullptr,
100 SvtScriptType nScript
= SvtScriptType::NONE
, const Color
* pBackConfigColor
= nullptr,
101 const Color
* pTextConfigColor
= nullptr );
103 static ScDxfFont
GetDxfFont(const SfxItemSet
& rSet
, SvtScriptType nScript
);
104 /** Fills a font object from the own item set. */
105 void GetFont( vcl::Font
& rFont
, ScAutoFontColorMode eAutoMode
,
106 const OutputDevice
* pOutDev
= nullptr,
107 const Fraction
* pScale
= nullptr,
108 const SfxItemSet
* pCondSet
= nullptr,
109 SvtScriptType nScript
= SvtScriptType::NONE
,
110 const Color
* pBackConfigColor
= nullptr,
111 const Color
* pTextConfigColor
= nullptr ) const;
113 /** Converts all Calc items contained in rSrcSet to edit engine items and puts them into rEditSet. */
114 static void FillToEditItemSet( SfxItemSet
& rEditSet
, const SfxItemSet
& rSrcSet
, const SfxItemSet
* pCondSet
= nullptr );
115 /** Converts all Calc items contained in the own item set to edit engine items and puts them into pEditSet. */
116 void FillEditItemSet( SfxItemSet
* pEditSet
, const SfxItemSet
* pCondSet
= nullptr ) const;
118 /** Converts all edit engine items contained in rEditSet to Calc items and puts them into rDestSet. */
119 static void GetFromEditItemSet( SfxItemSet
& rDestSet
, const SfxItemSet
& rEditSet
);
120 /** Converts all edit engine items contained in pEditSet to Calc items and puts them into the own item set. */
121 void GetFromEditItemSet( const SfxItemSet
* pEditSet
);
123 void FillEditParaItems( SfxItemSet
* pSet
) const;
125 ScPatternAttr
* PutInPool( ScDocument
* pDestDoc
, ScDocument
* pSrcDoc
) const;
127 void SetStyleSheet(ScStyleSheet
* pNewStyle
, bool bClearDirectFormat
= true);
128 const ScStyleSheet
* GetStyleSheet() const { return pStyle
; }
129 const OUString
* GetStyleName() const;
130 void UpdateStyleSheet(const ScDocument
& rDoc
);
133 bool IsVisible() const;
134 bool IsVisibleEqual( const ScPatternAttr
& rOther
) const;
136 /** If font is an old symbol font StarBats/StarMath
137 with text encoding RTL_TEXTENC_SYMBOL */
138 bool IsSymbolFont() const;
140 sal_uInt32
GetNumberFormat( SvNumberFormatter
* ) const;
141 sal_uInt32
GetNumberFormat( SvNumberFormatter
* pFormatter
,
142 const SfxItemSet
* pCondSet
) const;
144 Degree100
GetRotateVal( const SfxItemSet
* pCondSet
) const;
145 ScRotateDir
GetRotateDir( const SfxItemSet
* pCondSet
) const;
147 void SetKey(sal_uInt64 nKey
);
148 sal_uInt64
GetKey() const;
150 static std::optional
<bool> FastEqualPatternSets( const SfxItemSet
& rSet1
, const SfxItemSet
& rSet2
);
152 // TODO: tdf#135215: This is a band-aid to detect changes and invalidate the hash,
153 // a proper way would be probably to override SfxItemSet::Changed(), but 6cb400f41df0dd10
154 // hardcoded SfxSetItem to contain SfxItemSet.
155 SfxItemSet
& GetItemSet() { mxHashCode
.reset(); return SfxSetItem::GetItemSet(); }
156 using SfxSetItem::GetItemSet
;
159 void CalcHashCode() const;
162 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */