1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
| // xlsxconditionalformatting_p.h
|
| #ifndef XLSXCONDITIONALFORMATTING_P_H
| #define XLSXCONDITIONALFORMATTING_P_H
|
| #include <QSharedData>
| #include <QMap>
|
| #include <memory>
|
| #include "xlsxconditionalformatting.h"
| #include "xlsxformat.h"
| #include "xlsxcolor_p.h"
|
| QT_BEGIN_NAMESPACE_XLSX
|
| class XlsxCfVoData
| {
| public:
| XlsxCfVoData()
| :gte(true)
| {
| }
|
| XlsxCfVoData(ConditionalFormatting::ValueObjectType type, const QString &value, bool gte=true)
| :type(type), value(value), gte(gte)
| {
| }
|
| ConditionalFormatting::ValueObjectType type;
| QString value;
| bool gte;
| };
|
| class XlsxCfRuleData
| {
| public:
| enum Attribute {
| A_type,
| A_dxfId,
| //A_priority,
| A_stopIfTrue,
| A_aboveAverage,
| A_percent,
| A_bottom,
| A_operator,
| A_text,
| A_timePeriod,
| A_rank,
| A_stdDev,
| A_equalAverage,
|
| A_dxfFormat,
| A_formula1,
| A_formula2,
| A_formula3,
| A_formula1_temp,
|
| A_color1,
| A_color2,
| A_color3,
|
| A_cfvo1,
| A_cfvo2,
| A_cfvo3,
|
| A_hideData
| };
|
| XlsxCfRuleData()
| :priority(1)
| {}
|
| int priority;
| Format dxfFormat;
| QMap<int, QVariant> attrs;
| };
|
| class ConditionalFormattingPrivate : public QSharedData
| {
| public:
| ConditionalFormattingPrivate();
| ConditionalFormattingPrivate(const ConditionalFormattingPrivate &other);
| ~ConditionalFormattingPrivate();
|
| void writeCfVo(QXmlStreamWriter &writer, const XlsxCfVoData& cfvo) const;
| bool readCfVo(QXmlStreamReader &reader, XlsxCfVoData& cfvo);
| bool readCfRule(QXmlStreamReader &reader, XlsxCfRuleData *cfRule, Styles *styles);
| bool readCfDataBar(QXmlStreamReader &reader, XlsxCfRuleData *cfRule);
| bool readCfColorScale(QXmlStreamReader &reader, XlsxCfRuleData *cfRule);
|
| QList<std::shared_ptr<XlsxCfRuleData> >cfRules;
| QList<CellRange> ranges;
| };
|
| QT_END_NAMESPACE_XLSX
|
| Q_DECLARE_METATYPE(QXlsx::XlsxCfVoData)
| #endif // XLSXCONDITIONALFORMATTING_P_H
|
|