##// END OF EJS Templates
Added QChart::localizeNumbers...
Added QChart::localizeNumbers When this property is true, the default QLocale is used to convert various values to strings for series and axis labels instead of corresponding QString functions, which always use "C" locale. Task-number: QTRD-3231 Change-Id: I95a936ae6d49c2589a7c53a481fd850c90846ae4 Reviewed-by: Titta Heikkala <titta.heikkala@digia.com>

File last commit:

r2688:bdd8266c9c7d
r2707:ef2ab40bd1b9
Show More
charttheme_p.h
93 lines | 3.0 KiB | text/x-c | CLexer
Jani Honkonen
Add license headers
r794 /****************************************************************************
**
Titta Heikkala
Update copyright year...
r2688 ** Copyright (C) 2014 Digia Plc
Jani Honkonen
Add license headers
r794 ** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** This file is part of the Qt Enterprise Charts Add-on.
Jani Honkonen
Add license headers
r794 **
** $QT_BEGIN_LICENSE$
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
Jani Honkonen
Add license headers
r794 ** 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
Added missing warning about private implementation
r1366 // W A R N I N G
// -------------
//
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 // This file is not part of the Qt Enterprise Chart API. It exists purely as an
unknown
Added missing warning about private implementation
r1366 // implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 #ifndef CHARTTHEME_H
#define CHARTTHEME_H
Michal Klocek
Refactors internals...
r2273 #include "chartthememanager_p.h"
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 #include <QColor>
Jani Honkonen
Adding list of series gradients to theme.
r494 #include <QGradientStops>
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103
QTCOMMERCIALCHART_BEGIN_NAMESPACE
Michal Klocek
Refactor themes...
r143 class ChartTheme
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 {
Michal Klocek
Refactors internals...
r2273
Tero Ahola
Added axis related modifiers to theme
r548 public:
enum BackgroundShadesMode {
BackgroundShadesNone = 0,
BackgroundShadesVertical,
BackgroundShadesHorizontal,
BackgroundShadesBoth
};
Michal Klocek
Refactor themes...
r143 protected:
Michal Klocek
Refactors internals...
r2273 explicit ChartTheme(QChart::ChartTheme id = QChart::ChartThemeLight):m_id(id),
Miikka Heikkinen
Fix explicitly set default pen/brush/font getting overridden by theme...
r2516 m_backgroundShadesBrush(Qt::SolidPattern),
Heikkinen Miikka
Fix android build issues...
r2522 m_backgroundShades(BackgroundShadesNone),
Miikka Heikkinen
Fix explicitly set default pen/brush/font getting overridden by theme...
r2516 m_backgroundDropShadowEnabled(false)
{};
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 public:
Jani Honkonen
astyle and manual coding style fixes for src-folder
r2097 QChart::ChartTheme id() const { return m_id; }
Michal Klocek
Refactors internals...
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
A new box-and-whiskers series type added to charts....
r2548 QPen outlinePen() const { return m_outlinePen; }
Michal Klocek
Refactors internals...
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
Adding list of series gradients to theme.
r494
Michal Klocek
Refactor themes...
r143 protected:
Michal Klocek
Adds missing ids to theme classes
r153 QChart::ChartTheme m_id;
Jani Honkonen
Adding list of series gradients to theme.
r494 QList<QColor> m_seriesColors;
QList<QGradient> m_seriesGradients;
Tero Ahola
New theme with light colors, chartview background
r584 QLinearGradient m_chartBackgroundGradient;
Tero Ahola
Theme gradients now generated from a single base color
r507
Tero Ahola
Added axis related modifiers to theme
r548 QFont m_masterFont;
Tero Ahola
Defined point sizes for fonts
r717 QFont m_labelFont;
Tero Ahola
Removed QLegend::setLabelPen, clean up theme label brushes
r1528 QBrush m_labelBrush;
Tero Ahola
Added axis related modifiers to theme
r548 QPen m_axisLinePen;
QPen m_backgroundShadesPen;
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 QPen m_outlinePen;
Tero Ahola
Added axis related modifiers to theme
r548 QBrush m_backgroundShadesBrush;
BackgroundShadesMode m_backgroundShades;
Tero Ahola
Added drop shadow effect for light themes
r1001 bool m_backgroundDropShadowEnabled;
Tero Ahola
Added axis related modifiers to theme
r548 QPen m_gridLinePen;
Michal Klocek
Refactors internals...
r2273
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif // CHARTTHEME_H