charttheme_p.h
110 lines
| 3.1 KiB
| text/x-c
|
CLexer
/ src / charttheme_p.h
Jani Honkonen
|
r794 | /**************************************************************************** | ||
** | ||||
** Copyright (C) 2012 Digia Plc | ||||
** All rights reserved. | ||||
** For any questions to Digia, please use contact form at http://qt.digia.com | ||||
** | ||||
** This file is part of the Qt Commercial Charts Add-on. | ||||
** | ||||
** $QT_BEGIN_LICENSE$ | ||||
** Licensees holding valid Qt Commercial licenses may use this file in | ||||
** accordance with the Qt Commercial License Agreement provided with the | ||||
** Software or, alternatively, in accordance with the terms contained in | ||||
** a written agreement between you and Digia. | ||||
** | ||||
** If you have questions regarding the use of this file, please use | ||||
** contact form at http://qt.digia.com | ||||
** $QT_END_LICENSE$ | ||||
** | ||||
****************************************************************************/ | ||||
unknown
|
r1366 | // W A R N I N G | ||
// ------------- | ||||
// | ||||
// This file is not part of the QtCommercial Chart API. It exists purely as an | ||||
// implementation detail. This header file may change from version to | ||||
// version without notice, or even be removed. | ||||
// | ||||
// We mean it. | ||||
Tero Ahola
|
r103 | #ifndef CHARTTHEME_H | ||
#define CHARTTHEME_H | ||||
#include "qchartglobal.h" | ||||
Michal Klocek
|
r143 | #include "qchart.h" | ||
Tero Ahola
|
r103 | #include <QColor> | ||
Jani Honkonen
|
r494 | #include <QGradientStops> | ||
Tero Ahola
|
r103 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Michal Klocek
|
r143 | class ChartItem; | ||
Michal Klocek
|
r145 | class LineChartItem; | ||
Michal Klocek
|
r349 | class QLineSeries; | ||
sauimone
|
r1674 | class AbstractBarChartItem; | ||
sauimone
|
r1584 | class QAbstractBarSeries; | ||
sauimone
|
r666 | class StackedBarChartItem; | ||
sauimone
|
r338 | class QStackedBarSeries; | ||
class QPercentBarSeries; | ||||
sauimone
|
r666 | class PercentBarChartItem; | ||
Tero Ahola
|
r182 | class QScatterSeries; | ||
Michal Klocek
|
r470 | class ScatterChartItem; | ||
Jani Honkonen
|
r568 | class PieChartItem; | ||
Jani Honkonen
|
r163 | class QPieSeries; | ||
Marek Rosa
|
r460 | class SplineChartItem; | ||
Marek Rosa
|
r401 | class QSplineSeries; | ||
Michal Klocek
|
r421 | class AreaChartItem; | ||
class QAreaSeries; | ||||
Michal Klocek
|
r143 | |||
class ChartTheme | ||||
Tero Ahola
|
r103 | { | ||
Tero Ahola
|
r548 | public: | ||
enum BackgroundShadesMode { | ||||
BackgroundShadesNone = 0, | ||||
BackgroundShadesVertical, | ||||
BackgroundShadesHorizontal, | ||||
BackgroundShadesBoth | ||||
}; | ||||
Michal Klocek
|
r143 | protected: | ||
Tero Ahola
|
r853 | explicit ChartTheme(QChart::ChartTheme id = QChart::ChartThemeLight); | ||
Tero Ahola
|
r103 | public: | ||
Marek Rosa
|
r948 | static ChartTheme *createTheme(QChart::ChartTheme theme); | ||
Jani Honkonen
|
r2097 | QChart::ChartTheme id() const { return m_id; } | ||
Marek Rosa
|
r948 | void decorate(QChart *chart); | ||
void decorate(QLegend *legend); | ||||
sauimone
|
r1584 | void decorate(QAbstractBarSeries *series, int index); | ||
Marek Rosa
|
r948 | void decorate(QLineSeries *series, int index); | ||
void decorate(QAreaSeries *series, int index); | ||||
void decorate(QScatterSeries *series, int index); | ||||
void decorate(QPieSeries *series, int index); | ||||
void decorate(QSplineSeries *series, int index); | ||||
Michal Klocek
|
r1698 | void decorate(QAbstractAxis *axis); | ||
Michal Klocek
|
r943 | void setForced(bool enabled); | ||
bool isForced() { return m_force; } | ||||
Michal Klocek
|
r143 | |||
Jani Honkonen
|
r494 | public: // utils | ||
Tero Ahola
|
r507 | void generateSeriesGradients(); | ||
Jani Honkonen
|
r494 | static QColor colorAt(const QColor &start, const QColor &end, qreal pos); | ||
static QColor colorAt(const QGradient &gradient, qreal pos); | ||||
Michal Klocek
|
r143 | protected: | ||
Michal Klocek
|
r153 | QChart::ChartTheme m_id; | ||
Jani Honkonen
|
r494 | QList<QColor> m_seriesColors; | ||
QList<QGradient> m_seriesGradients; | ||||
Tero Ahola
|
r584 | QLinearGradient m_chartBackgroundGradient; | ||
Tero Ahola
|
r507 | |||
Tero Ahola
|
r548 | QFont m_masterFont; | ||
Tero Ahola
|
r717 | QFont m_labelFont; | ||
Tero Ahola
|
r1528 | QBrush m_labelBrush; | ||
Tero Ahola
|
r548 | QPen m_axisLinePen; | ||
QPen m_backgroundShadesPen; | ||||
QBrush m_backgroundShadesBrush; | ||||
BackgroundShadesMode m_backgroundShades; | ||||
Tero Ahola
|
r1001 | bool m_backgroundDropShadowEnabled; | ||
Tero Ahola
|
r548 | QPen m_gridLinePen; | ||
Michal Klocek
|
r943 | bool m_force; | ||
Tero Ahola
|
r103 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif // CHARTTHEME_H | ||||