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/.
10 #ifndef INCLUDED_SC_INC_COLORSCALE_HXX
11 #define INCLUDED_SC_INC_COLORSCALE_HXX
13 #include <formula/grammar.hxx>
14 #include <tools/color.hxx>
15 #include "rangelst.hxx"
16 #include "conditio.hxx"
17 #include "document.hxx"
22 //TODO: merge this with conditio.hxx
30 // don't change the order
31 // they are also used in the dialog to determine the position
33 enum ScColorScaleEntryType
38 COLORSCALE_PERCENTILE
,
44 class SC_DLLPUBLIC ScColorScaleEntry
49 std::unique_ptr
<ScFormulaCell
> mpCell
;
50 std::unique_ptr
<ScFormulaListener
> mpListener
;
51 ScColorScaleEntryType meType
;
52 ScConditionalFormat
* mpFormat
;
55 ScColorScaleEntry(double nVal
, const Color
& rCol
);
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
* pDoc
, 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
);
94 struct SC_DLLPUBLIC ScDataBarFormatData
96 ScDataBarFormatData():
97 maAxisColor(COL_BLACK
),
100 meAxisPosition(databar::AUTOMATIC
),
104 mpUpperLimit(new ScColorScaleEntry()),
105 mpLowerLimit(new ScColorScaleEntry())
108 ScDataBarFormatData(const ScDataBarFormatData
& r
):
109 maPositiveColor(r
.maPositiveColor
),
110 maAxisColor(r
.maAxisColor
),
111 mbGradient(r
.mbGradient
),
113 meAxisPosition(r
.meAxisPosition
),
114 mnMinLength(r
.mnMinLength
),
115 mnMaxLength(r
.mnMaxLength
),
116 mbOnlyBar(r
.mbOnlyBar
)
118 if(r
.mpNegativeColor
)
119 mpNegativeColor
.reset(new Color(*r
.mpNegativeColor
));
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::unique_ptr
<Color
> mpNegativeColor
;
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
> mpUpperLimit
;
185 std::unique_ptr
<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
>> ScColorScaleEntries
;
252 class SC_DLLPUBLIC ScColorScaleFormat
: 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 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
: 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 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
>> 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():
347 eIconSetType(IconSet_3Arrows
),
353 ScIconSetFormatData(ScIconSetFormatData
const&);
354 ScIconSetFormatData
& operator=(ScIconSetFormatData
const&) = delete; //TODO?
357 class SC_DLLPUBLIC ScIconSetFormat
: 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 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 BitmapEx
& getBitmap(sc::IconSetBitmapMap
& rBitmapMap
, ScIconSetType eType
, sal_Int32 nIndex
);
383 typedef ScIconSetFormatData::Entries_t::iterator iterator
;
384 typedef ScIconSetFormatData::Entries_t::const_iterator const_iterator
;
387 const_iterator
begin() const;
389 const_iterator
end() const;
394 * Makes sure that the mpFormatData does not contain valid entries.
395 * Should be called when it is not sure that the format is valid.
401 double GetMinValue() const;
402 double GetMaxValue() const;
403 double CalcValue(double nMin
, double nMax
, const ScIconSetFormat::const_iterator
& itr
) const;
405 std::unique_ptr
<ScIconSetFormatData
> mpFormatData
;
410 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */