##// END OF EJS Templates
Merge remote-tracking branch 'origin/5.6' into 5.7...
Merge remote-tracking branch 'origin/5.6' into 5.7 Conflicts: src/charts/doc/qtcharts.qdocconf Change-Id: If6160b2f643e7df8c32400b97afac229b95b78de

File last commit:

r2854:46147b040d06
r2893:0464d42b101e merge 5.7.0
Show More
charttheme_p.h
104 lines | 3.7 KiB | text/x-c | CLexer
Miikka Heikkinen
Updated license...
r2854 /****************************************************************************
Jani Honkonen
Add license headers
r794 **
Miikka Heikkinen
Updated license...
r2854 ** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
Jani Honkonen
Add license headers
r794 **
Miikka Heikkinen
Updated license...
r2854 ** This file is part of the Qt Charts module of the Qt Toolkit.
Jani Honkonen
Add license headers
r794 **
Miikka Heikkinen
Updated license...
r2854 ** $QT_BEGIN_LICENSE:GPL$
Titta Heikkala
Updated license headers...
r2845 ** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
Miikka Heikkinen
Updated license...
r2854 ** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 or (at your option) any later version
** approved by the KDE Free Qt Foundation. The licenses are as published by
** the Free Software Foundation and appearing in the file LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
Jani Honkonen
Add license headers
r794 **
Titta Heikkala
Updated license headers...
r2845 ** $QT_END_LICENSE$
**
Miikka Heikkinen
Updated license...
r2854 ****************************************************************************/
Jani Honkonen
Add license headers
r794
unknown
Added missing warning about private implementation
r1366 // W A R N I N G
// -------------
//
Titta Heikkala
Updated private header warning...
r2807 // This file is not part of the Qt 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
Titta Heikkala
Fix include syntax...
r2714 #include <private/chartthememanager_p.h>
#include <QtGui/QColor>
#include <QtGui/QGradientStops>
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_BEGIN_NAMESPACE
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103
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; }
Titta Heikkala
Minor typo correction...
r2796 QPen gridLinePen() const { return m_gridLinePen; }
Titta Heikkala
Added minor ticks to value axis...
r2795 QPen minorGridLinePen() const { return m_minorGridLinePen; }
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;
Titta Heikkala
Added minor ticks to value axis...
r2795 QPen m_minorGridLinePen;
Michal Klocek
Refactors internals...
r2273
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 };
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_END_NAMESPACE
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103
#endif // CHARTTHEME_H