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 .
22 #include <svl/setitem.hxx>
23 #include <svl/itemset.hxx>
24 #include <svl/languageoptions.hxx>
25 #include <tools/degree.hxx>
26 #include <editeng/svxenum.hxx>
28 #include "fonthelper.hxx"
31 namespace vcl
{ class Font
; }
35 class SvNumberFormatter
;
37 enum class ScRotateDir
: sal_uInt8
;
39 /// how to treat COL_AUTO in GetFont:
41 enum ScAutoFontColorMode
43 SC_AUTOCOL_RAW
, ///< COL_AUTO is returned
44 SC_AUTOCOL_BLACK
, ///< always use black
45 SC_AUTOCOL_PRINT
, ///< black or white, depending on background
46 SC_AUTOCOL_DISPLAY
, ///< from style settings, or black/white if needed
47 SC_AUTOCOL_IGNOREFONT
, ///< like DISPLAY, but ignore stored font color (assume COL_AUTO)
48 SC_AUTOCOL_IGNOREBACK
, ///< like DISPLAY, but ignore stored background color (use configured color)
49 SC_AUTOCOL_IGNOREALL
///< like DISPLAY, but ignore stored font and background colors
52 class SC_DLLPUBLIC ScPatternAttr final
: public SfxSetItem
54 std::optional
<OUString
> pName
;
55 mutable std::optional
<size_t> mxHashCode
;
59 ScPatternAttr(SfxItemSet
&& pItemSet
, const OUString
& rStyleName
);
60 ScPatternAttr(SfxItemSet
&& pItemSet
);
61 ScPatternAttr(SfxItemPool
* pItemPool
);
62 ScPatternAttr(const ScPatternAttr
& rPatternAttr
);
64 virtual ~ScPatternAttr() override
;
66 virtual ScPatternAttr
* Clone( SfxItemPool
*pPool
= nullptr ) const override
;
68 virtual bool operator==(const SfxPoolItem
& rCmp
) const override
;
70 const SfxPoolItem
& GetItem( sal_uInt16 nWhichP
) const
71 { return GetItemSet().Get(nWhichP
); }
72 template<class T
> const T
& GetItem( TypedWhichId
<T
> nWhich
) const
73 { return static_cast<const T
&>(GetItem(sal_uInt16(nWhich
))); }
75 static const SfxPoolItem
& GetItem( sal_uInt16 nWhich
, const SfxItemSet
& rItemSet
, const SfxItemSet
* pCondSet
);
76 template<class T
> static const T
& GetItem( TypedWhichId
<T
> nWhich
, const SfxItemSet
& rItemSet
, const SfxItemSet
* pCondSet
)
77 { return static_cast<const T
&>(GetItem(sal_uInt16(nWhich
), rItemSet
, pCondSet
)); }
79 const SfxPoolItem
& GetItem( sal_uInt16 nWhich
, const SfxItemSet
* pCondSet
) const;
80 template<class T
> const T
& GetItem( TypedWhichId
<T
> nWhich
, const SfxItemSet
* pCondSet
) const
81 { return static_cast<const T
&>(GetItem(sal_uInt16(nWhich
), pCondSet
)); }
83 /// @param pWhich are no ranges, but single IDs, 0-terminated
84 bool HasItemsSet( const sal_uInt16
* pWhich
) const;
85 void ClearItems( const sal_uInt16
* pWhich
);
87 void DeleteUnchanged( const ScPatternAttr
* pOldAttrs
);
89 static SvxCellOrientation
GetCellOrientation( const SfxItemSet
& rItemSet
, const SfxItemSet
* pCondSet
);
90 SvxCellOrientation
GetCellOrientation( const SfxItemSet
* pCondSet
= nullptr ) const;
92 /** Static helper function to fill a font object from the passed item set. */
93 static void GetFont( vcl::Font
& rFont
, const SfxItemSet
& rItemSet
,
94 ScAutoFontColorMode eAutoMode
,
95 const OutputDevice
* pOutDev
= nullptr,
96 const Fraction
* pScale
= nullptr,
97 const SfxItemSet
* pCondSet
= nullptr,
98 SvtScriptType nScript
= SvtScriptType::NONE
, const Color
* pBackConfigColor
= nullptr,
99 const Color
* pTextConfigColor
= nullptr );
101 static ScDxfFont
GetDxfFont(const SfxItemSet
& rSet
, SvtScriptType nScript
);
102 /** Fills a font object from the own item set. */
103 void GetFont( vcl::Font
& rFont
, ScAutoFontColorMode eAutoMode
,
104 const OutputDevice
* pOutDev
= nullptr,
105 const Fraction
* pScale
= nullptr,
106 const SfxItemSet
* pCondSet
= nullptr,
107 SvtScriptType nScript
= SvtScriptType::NONE
,
108 const Color
* pBackConfigColor
= nullptr,
109 const Color
* pTextConfigColor
= nullptr ) const;
111 /** Converts all Calc items contained in rSrcSet to edit engine items and puts them into rEditSet. */
112 static void FillToEditItemSet( SfxItemSet
& rEditSet
, const SfxItemSet
& rSrcSet
, const SfxItemSet
* pCondSet
= nullptr );
113 /** Converts all Calc items contained in the own item set to edit engine items and puts them into pEditSet. */
114 void FillEditItemSet( SfxItemSet
* pEditSet
, const SfxItemSet
* pCondSet
= nullptr ) const;
116 /** Converts all edit engine items contained in rEditSet to Calc items and puts them into rDestSet. */
117 static void GetFromEditItemSet( SfxItemSet
& rDestSet
, const SfxItemSet
& rEditSet
);
118 /** Converts all edit engine items contained in pEditSet to Calc items and puts them into the own item set. */
119 void GetFromEditItemSet( const SfxItemSet
* pEditSet
);
121 void FillEditParaItems( SfxItemSet
* pSet
) const;
123 ScPatternAttr
* PutInPool( ScDocument
* pDestDoc
, ScDocument
* pSrcDoc
) const;
125 void SetStyleSheet(ScStyleSheet
* pNewStyle
, bool bClearDirectFormat
= true);
126 const ScStyleSheet
* GetStyleSheet() const { return pStyle
; }
127 const OUString
* GetStyleName() const;
128 void UpdateStyleSheet(const ScDocument
& rDoc
);
131 bool IsVisible() const;
132 bool IsVisibleEqual( const ScPatternAttr
& rOther
) const;
134 /** If font is an old symbol font StarBats/StarMath
135 with text encoding RTL_TEXTENC_SYMBOL */
136 bool IsSymbolFont() const;
138 sal_uInt32
GetNumberFormat( SvNumberFormatter
* ) const;
139 sal_uInt32
GetNumberFormat( SvNumberFormatter
* pFormatter
,
140 const SfxItemSet
* pCondSet
) const;
142 Degree100
GetRotateVal( const SfxItemSet
* pCondSet
) const;
143 ScRotateDir
GetRotateDir( const SfxItemSet
* pCondSet
) const;
145 void SetKey(sal_uInt64 nKey
);
146 sal_uInt64
GetKey() const;
149 void CalcHashCode() const;
152 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */