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/.
12 #include <formula/grammar.hxx>
13 #include <tools/color.hxx>
14 #include "conditio.hxx"
15 #include "document.hxx"
21 //TODO: merge this with conditio.hxx
28 // don't change the order
29 // they are also used in the dialog to determine the position
31 enum ScColorScaleEntryType
36 COLORSCALE_PERCENTILE
,
42 class SC_DLLPUBLIC ScColorScaleEntry
46 std::unique_ptr
<ScFormulaCell
> mpCell
;
47 std::unique_ptr
<ScFormulaListener
> mpListener
;
48 ScConditionalFormat
* mpFormat
;
50 ScColorScaleEntryType meType
;
55 ScColorScaleEntry(double nVal
, const Color
& rCol
, ScColorScaleEntryType eType
= COLORSCALE_VALUE
);
57 ScColorScaleEntry(const ScColorScaleEntry
& rEntry
);
58 ScColorScaleEntry(ScDocument
* pDoc
, const ScColorScaleEntry
& rEntry
);
59 ~ScColorScaleEntry() COVERITY_NOEXCEPT_FALSE
;
61 const Color
& GetColor() const { return maColor
;}
62 void SetColor(const Color
&);
63 double GetValue() const;
64 void SetValue(double nValue
);
65 void SetFormula(const OUString
& rFormula
, ScDocument
& rDoc
, const ScAddress
& rAddr
,
66 formula::FormulaGrammar::Grammar eGrammar
= formula::FormulaGrammar::GRAM_DEFAULT
);
68 void UpdateReference( const sc::RefUpdateContext
& rCxt
);
69 void UpdateInsertTab( const sc::RefUpdateInsertTabContext
& rCxt
);
70 void UpdateDeleteTab( const sc::RefUpdateDeleteTabContext
& rCxt
);
71 void UpdateMoveTab( const sc::RefUpdateMoveTabContext
& rCxt
);
73 const ScTokenArray
* GetFormula() const;
74 OUString
GetFormula( formula::FormulaGrammar::Grammar eGrammar
) const;
76 ScColorScaleEntryType
GetType() const { return meType
;}
77 void SetType( ScColorScaleEntryType eType
);
79 void SetRepaintCallback(ScConditionalFormat
* pParent
);
80 void SetRepaintCallback(const std::function
<void()>& func
);
95 struct SC_DLLPUBLIC ScDataBarFormatData
97 ScDataBarFormatData():
98 maAxisColor(COL_BLACK
),
101 meAxisPosition(databar::AUTOMATIC
),
105 mpUpperLimit(new ScColorScaleEntry()),
106 mpLowerLimit(new ScColorScaleEntry())
109 ScDataBarFormatData(const ScDataBarFormatData
& r
):
110 maPositiveColor(r
.maPositiveColor
),
111 maAxisColor(r
.maAxisColor
),
112 mbGradient(r
.mbGradient
),
114 meAxisPosition(r
.meAxisPosition
),
115 mnMinLength(r
.mnMinLength
),
116 mnMaxLength(r
.mnMaxLength
),
117 mbOnlyBar(r
.mbOnlyBar
)
119 mxNegativeColor
= r
.mxNegativeColor
;
122 mpLowerLimit
.reset( new ScColorScaleEntry(*r
.mpLowerLimit
));
124 mpLowerLimit
.reset(new ScColorScaleEntry());
126 mpUpperLimit
.reset( new ScColorScaleEntry(*r
.mpUpperLimit
));
128 mpUpperLimit
.reset(new ScColorScaleEntry());
132 * Color for all Positive Values and if mbNeg == false also for negative ones
134 Color maPositiveColor
;
136 * Specifies the color for negative values. This is optional and depends on mbNeg.
138 * Default color is 0xFF0000, this value is not set
140 std::optional
<Color
> mxNegativeColor
;
142 * Color of the axis if used
143 * Default color is black
147 * Paint the bars with gradient. If this is used the default is to draw with
154 * Use different color for negative values. Color is specified in
155 * mpNegativeColor and defaults to 0xFF0000
159 bool mbNeg
; //differentiate between negative values
161 * Paint negative values into the same direction as positive values
162 * If false we will set the mid point according to the upper and lower limit and negative
163 * values are painted to the left and positive to the right
167 databar::ScAxisPosition meAxisPosition
;
169 * Minimal length of a databar in percent of cell length
170 * Value has to be in the range [0, 100)
174 * Maximal length of a databar in percent of cell length
175 * Value has to be in the range (0, 100]
180 * If TRUE we only show the bar and not the value
184 std::unique_ptr
<ScColorScaleEntry
, o3tl::default_delete
<ScColorScaleEntry
>> mpUpperLimit
;
185 std::unique_ptr
<ScColorScaleEntry
, o3tl::default_delete
<ScColorScaleEntry
>> mpLowerLimit
;
193 IconSet_3TrafficLights1
,
194 IconSet_3TrafficLights2
,
201 IconSet_3ColorSmilies
,
206 IconSet_4TrafficLights
,
214 struct ScIconSetMap
{
220 class SC_DLLPUBLIC ScColorFormat
: public ScFormatEntry
223 ScColorFormat(ScDocument
* pDoc
);
224 virtual ~ScColorFormat() override
;
226 const ScRangeList
& GetRange() const;
228 virtual void SetParent(ScConditionalFormat
* pParent
) override
;
230 virtual void startRendering() override
;
231 virtual void endRendering() override
;
234 std::vector
<double>& getValues() const;
236 double getMinValue() const;
237 double getMaxValue() const;
239 ScConditionalFormat
* mpParent
;
243 struct ScColorFormatCache
245 std::vector
<double> maValues
;
247 mutable std::unique_ptr
<ScColorFormatCache
> mpCache
;
250 typedef std::vector
<std::unique_ptr
<ScColorScaleEntry
, o3tl::default_delete
<ScColorScaleEntry
>>> ScColorScaleEntries
;
252 class SC_DLLPUBLIC ScColorScaleFormat final
: public ScColorFormat
255 ScColorScaleEntries maColorScales
;
257 double GetMinValue() const;
258 double GetMaxValue() const;
260 void calcMinMax(double& nMin
, double& nMax
) const;
261 double CalcValue(double nMin
, double nMax
, const ScColorScaleEntries::const_iterator
& rItr
) const;
263 ScColorScaleFormat(ScDocument
* pDoc
);
264 ScColorScaleFormat(ScDocument
* pDoc
, const ScColorScaleFormat
& rFormat
);
265 virtual ~ScColorScaleFormat() override
;
266 virtual ScColorFormat
* Clone(ScDocument
* pDoc
) const override
;
268 virtual void SetParent(ScConditionalFormat
* pParent
) override
;
270 std::optional
<Color
> GetColor(const ScAddress
& rAddr
) const;
271 void AddEntry(ScColorScaleEntry
* pEntry
);
273 virtual void UpdateReference( sc::RefUpdateContext
& rCxt
) override
;
274 virtual void UpdateInsertTab( sc::RefUpdateInsertTabContext
& rCxt
) override
;
275 virtual void UpdateDeleteTab( sc::RefUpdateDeleteTabContext
& rCxt
) override
;
276 virtual void UpdateMoveTab( sc::RefUpdateMoveTabContext
& rCxt
) override
;
278 virtual Type
GetType() const override
;
279 ScColorScaleEntries::iterator
begin();
280 ScColorScaleEntries::const_iterator
begin() const;
281 ScColorScaleEntries::iterator
end();
282 ScColorScaleEntries::const_iterator
end() const;
284 ScColorScaleEntry
* GetEntry(size_t nPos
);
285 const ScColorScaleEntry
* GetEntry(size_t nPos
) const;
290 * Makes sure that the maColorScales contain at least 2 entries.
291 * Should be called when it is not sure that the format is valid.
296 class SC_DLLPUBLIC ScDataBarFormat final
: public ScColorFormat
299 ScDataBarFormat(ScDocument
* pDoc
);
300 ScDataBarFormat(ScDocument
* pDoc
, const ScDataBarFormat
& rFormat
);
301 virtual ScColorFormat
* Clone(ScDocument
* pDoc
) const override
;
303 virtual void SetParent(ScConditionalFormat
* pParent
) override
;
305 std::unique_ptr
<ScDataBarInfo
> GetDataBarInfo(const ScAddress
& rAddr
) const;
307 void SetDataBarData( ScDataBarFormatData
* pData
);
308 const ScDataBarFormatData
* GetDataBarData() const;
309 ScDataBarFormatData
* GetDataBarData();
311 virtual void UpdateReference( sc::RefUpdateContext
& rCxt
) override
;
312 virtual void UpdateInsertTab( sc::RefUpdateInsertTabContext
& rCxt
) override
;
313 virtual void UpdateDeleteTab( sc::RefUpdateDeleteTabContext
& rCxt
) override
;
314 virtual void UpdateMoveTab( sc::RefUpdateMoveTabContext
& rCxt
) override
;
316 virtual Type
GetType() const override
;
319 * Makes sure that the mpFormatData does not contain valid entries.
320 * Should be called when it is not sure that the format is valid.
325 double getMin(double nMin
, double nMax
) const;
326 double getMax(double nMin
, double nMax
) const;
328 std::unique_ptr
<ScDataBarFormatData
> mpFormatData
;
331 struct ScIconSetFormatData
333 ScIconSetType eIconSetType
;
336 * Specifies whether the icons should be shown in reverse order
339 typedef std::vector
<std::unique_ptr
<ScColorScaleEntry
, o3tl::default_delete
<ScColorScaleEntry
>>> Entries_t
;
342 // the std::pair points to exactly one image
343 // std..pair::second == -1 means no image
344 std::vector
<std::pair
<ScIconSetType
, sal_Int32
> > maCustomVector
;
346 ScIconSetFormatData(ScIconSetType eType
= IconSet_3Arrows
):
353 ScIconSetFormatData(ScIconSetFormatData
const&);
354 ScIconSetFormatData
& operator=(ScIconSetFormatData
const&) = delete; //TODO?
357 class SC_DLLPUBLIC ScIconSetFormat final
: public ScColorFormat
360 ScIconSetFormat(ScDocument
* pDoc
);
361 ScIconSetFormat(ScDocument
* pDoc
, const ScIconSetFormat
& rFormat
);
363 virtual ScColorFormat
* Clone(ScDocument
* pDoc
) const override
;
365 virtual void SetParent(ScConditionalFormat
* pParent
) override
;
367 std::unique_ptr
<ScIconSetInfo
> GetIconSetInfo(const ScAddress
& rAddr
) const;
369 void SetIconSetData( ScIconSetFormatData
* pData
);
370 const ScIconSetFormatData
* GetIconSetData() const;
371 ScIconSetFormatData
* GetIconSetData();
373 virtual void UpdateReference( sc::RefUpdateContext
& rCxt
) override
;
374 virtual void UpdateInsertTab( sc::RefUpdateInsertTabContext
& rCxt
) override
;
375 virtual void UpdateDeleteTab( sc::RefUpdateDeleteTabContext
& rCxt
) override
;
376 virtual void UpdateMoveTab( sc::RefUpdateMoveTabContext
& rCxt
) override
;
378 virtual Type
GetType() const override
;
380 static const ScIconSetMap g_IconSetMap
[];
381 static const char* getIconSetName( ScIconSetType eType
);
382 static sal_Int32
getIconSetElements( ScIconSetType eType
);
383 static OUString
getIconName(ScIconSetType eType
, sal_Int32 nIndex
);
384 static BitmapEx
& getBitmap(sc::IconSetBitmapMap
& rBitmapMap
, ScIconSetType eType
, sal_Int32 nIndex
);
386 typedef ScIconSetFormatData::Entries_t::iterator iterator
;
387 typedef ScIconSetFormatData::Entries_t::const_iterator const_iterator
;
390 const_iterator
begin() const;
392 const_iterator
end() const;
397 * Makes sure that the mpFormatData does not contain valid entries.
398 * Should be called when it is not sure that the format is valid.
404 double GetMinValue() const;
405 double GetMaxValue() const;
406 double CalcValue(double nMin
, double nMax
, const ScIconSetFormat::const_iterator
& itr
) const;
408 std::unique_ptr
<ScIconSetFormatData
> mpFormatData
;
411 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */