charttheme_p.h
93 lines
| 3.0 KiB
| text/x-c
|
CLexer
Jani Honkonen
|
r794 | /**************************************************************************** | ||
** | ||||
Miikka Heikkinen
|
r2432 | ** Copyright (C) 2013 Digia Plc | ||
Jani Honkonen
|
r794 | ** 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 | ||||
Michal Klocek
|
r2273 | #include "chartthememanager_p.h" | ||
Tero Ahola
|
r103 | #include <QColor> | ||
Jani Honkonen
|
r494 | #include <QGradientStops> | ||
Tero Ahola
|
r103 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Michal Klocek
|
r143 | class ChartTheme | ||
Tero Ahola
|
r103 | { | ||
Michal Klocek
|
r2273 | |||
Tero Ahola
|
r548 | public: | ||
enum BackgroundShadesMode { | ||||
BackgroundShadesNone = 0, | ||||
BackgroundShadesVertical, | ||||
BackgroundShadesHorizontal, | ||||
BackgroundShadesBoth | ||||
}; | ||||
Michal Klocek
|
r143 | protected: | ||
Michal Klocek
|
r2273 | explicit ChartTheme(QChart::ChartTheme id = QChart::ChartThemeLight):m_id(id), | ||
Miikka Heikkinen
|
r2516 | m_backgroundShadesBrush(Qt::SolidPattern), | ||
Heikkinen Miikka
|
r2522 | m_backgroundShades(BackgroundShadesNone), | ||
Miikka Heikkinen
|
r2516 | m_backgroundDropShadowEnabled(false) | ||
{}; | ||||
Tero Ahola
|
r103 | public: | ||
Jani Honkonen
|
r2097 | QChart::ChartTheme id() const { return m_id; } | ||
Michal Klocek
|
r2273 | QList<QGradient> seriesGradients() const { return m_seriesGradients; } | ||
QList<QColor> seriesColors() const { return m_seriesColors; } | ||||
QLinearGradient chartBackgroundGradient() const { return m_chartBackgroundGradient; } | ||||
QFont masterFont() const { return m_masterFont; } | ||||
QFont labelFont() const { return m_labelFont; } | ||||
QBrush labelBrush() const { return m_labelBrush; } | ||||
QPen axisLinePen() const { return m_axisLinePen; } | ||||
QPen backgroundShadesPen() const { return m_backgroundShadesPen; } | ||||
Mika Salmela
|
r2548 | QPen outlinePen() const { return m_outlinePen; } | ||
Michal Klocek
|
r2273 | QBrush backgroundShadesBrush() const { return m_backgroundShadesBrush; } | ||
BackgroundShadesMode backgroundShades() const { return m_backgroundShades; } | ||||
bool isBackgroundDropShadowEnabled() const { return m_backgroundDropShadowEnabled; } | ||||
QPen girdLinePen() const { return m_gridLinePen; } | ||||
Jani Honkonen
|
r494 | |||
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; | ||||
Mika Salmela
|
r2548 | QPen m_outlinePen; | ||
Tero Ahola
|
r548 | QBrush m_backgroundShadesBrush; | ||
BackgroundShadesMode m_backgroundShades; | ||||
Tero Ahola
|
r1001 | bool m_backgroundDropShadowEnabled; | ||
Tero Ahola
|
r548 | QPen m_gridLinePen; | ||
Michal Klocek
|
r2273 | |||
Tero Ahola
|
r103 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif // CHARTTHEME_H | ||||