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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
/* This file is part of the KDE project
Copyright (C) 2001,2002,2003,2004 Laurent Montel <montel@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef KCHART_PARAMS_H
#define KCHART_PARAMS_H
class KoXmlWriter;
class KoGenStyles;
class KoOasisLoadingContext;
class KoStore;
class KDChartParams;
class DCOPObject;
#include "kdchart/KDChartParams.h"
namespace KChart
{
class KChartPart;
class KChartParams : public KDChartParams
{
public:
typedef enum {
// From KDChart
NoType = KDChartParams::NoType,
Bar = KDChartParams::Bar,
Line = KDChartParams::Line,
Area = KDChartParams::Area,
Pie = KDChartParams::Pie,
HiLo = KDChartParams::HiLo,
Ring = KDChartParams::Ring,
Polar = KDChartParams::Polar,
BoxWhisker = KDChartParams::BoxWhisker
} ChartType;
// Data direction
typedef enum {
DataRows = 0,
DataColumns = 1
} DataDirection;
KChartParams( KChartPart *_part );
~KChartParams();
KChartPart * part() const { return m_part; }
// ----------------------------------------------------------------
// Reimplementation of selected KDChartParams methods
ChartType chartType() const { return m_chartType; }
void setChartType( ChartType _type ) {
m_chartType = _type;
KDChartParams::setChartType( (KDChartParams::ChartType) _type );
}
// Data in rows or columns.
DataDirection dataDirection() const { return m_dataDirection; }
void setDataDirection( DataDirection _dir ) {
m_dataDirection = _dir;
}
TQString chartTypeToString( ChartType _type) const;
ChartType stringToChartType( const TQString& string );
bool firstRowAsLabel() const { return m_firstRowAsLabel; }
void setFirstRowAsLabel( bool _val );
bool firstColAsLabel() const { return m_firstColAsLabel; }
void setFirstColAsLabel( bool _val );
// Data area
TQString dataArea() const { return m_dataArea; }
void setDataArea( TQString dataArea ) {
m_dataArea = dataArea;
}
// ----------------------------------------------------------------
// BAR CHART EXTENSIONS TO SUPPORT OPENDOCUMENT
public slots:
void setBarNumLines( int _numLines ) {
m_barNumLines = _numLines;
emit changed();
}
int barNumLines() const {
return m_barNumLines;
}
// ----------------------------------------------------------------
public:
DCOPObject *dcopObject();
bool loadOasis( const TQDomElement &chartElem,
KoOasisLoadingContext &loadingContext,
TQString &errorMessage,
KoStore *store );
void saveOasis( KoXmlWriter* bodyWriter, KoGenStyles& mainStyles ) const;
private:
bool loadOasisPlotarea( const TQDomElement &plotareaElem,
KoOasisLoadingContext &loadingContext,
TQString &errorMessage );
bool loadOasisAxis( const TQDomElement &axisElem,
KoOasisLoadingContext &loadingContext,
TQString &errorMessage,
KDChartAxisParams::AxisPos axisPos );
void loadOasisFont( KoOasisLoadingContext& context, TQFont& font, TQColor& color );
void saveOasisPlotArea( KoXmlWriter* bodyWriter, KoGenStyles& mainStyles ) const;
void saveOasisAxis( KoXmlWriter* bodyWriter, KoGenStyles& mainStyles,
KDChartAxisParams::AxisPos axisPos,
const char* axisName ) const;
TQString saveOasisFont( KoGenStyles& mainStyles, const TQFont& font,
const TQColor& color ) const;
private:
KChartPart *m_part;
// Info about the chart itself.
ChartType m_chartType;
// Info about the data.
DataDirection m_dataDirection; // Rows or Columns
bool m_firstRowAsLabel;
bool m_firstColAsLabel;
TQString m_dataArea;
// Extensions to support OpenDocument
int m_barNumLines; // Number of lines in a bar chart.
DCOPObject *m_dcop;
};
} //KChart namespace
#endif
|