##// END OF EJS Templates
We have so many stupid warnings that "treat warnings as errors" flag is needed...
We have so many stupid warnings that "treat warnings as errors" flag is needed...

File last commit:

r608:9ab5701700a1
r609:a1ef8de9fe8d
Show More
chartthemebluecerulean_p.h
38 lines | 1.2 KiB | text/x-c | CLexer
/ src / themes / chartthemebluecerulean_p.h
Tero Ahola
Added draft of dark blue theme
r581 #include "charttheme_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class ChartThemeBlueCerulean: public ChartTheme
{
public:
ChartThemeBlueCerulean() : ChartTheme(QChart::ChartThemeBlueCerulean)
{
// Series colors
Tero Ahola
Colors of the darker theme
r608 m_seriesColors << QRgb(0x38ad6b);
m_seriesColors << QRgb(0x3c84a7);
m_seriesColors << QRgb(0xeb8817);
m_seriesColors << QRgb(0x7b7f8c);
m_seriesColors << QRgb(0xbf593e);
Tero Ahola
Added draft of dark blue theme
r581 generateSeriesGradients();
Tero Ahola
Removed chart view background
r598 // Background
QLinearGradient backgroundGradient;
Tero Ahola
Colors of the darker theme
r608 backgroundGradient.setColorAt(0.0, QRgb(0xd6d6d6));
backgroundGradient.setColorAt(1.0, QRgb(0x121218));
Tero Ahola
Removed chart view background
r598 backgroundGradient.setCoordinateMode(QGradient::ObjectBoundingMode);
m_chartBackgroundGradient = backgroundGradient;
Tero Ahola
Added draft of dark blue theme
r581
// Axes and other
m_masterFont = QFont();
Tero Ahola
Colors of the darker theme
r608 m_axisLinePen = QPen(QRgb(0x86878c));
Tero Ahola
Added draft of dark blue theme
r581 m_axisLinePen.setWidth(2);
Tero Ahola
Colors of the darker theme
r608 m_axisLabelBrush = QBrush(QRgb(0x86878c));
Tero Ahola
Added draft of dark blue theme
r581 m_axisLabelPen = Qt::NoPen; // NoPen for performance reasons
m_backgroundShadesPen = Qt::NoPen;
m_backgroundShades = BackgroundShadesNone;
Tero Ahola
Colors of the darker theme
r608 m_gridLinePen = QPen(QRgb(0x86878c));
Tero Ahola
New theme with light colors, chartview background
r584 m_gridLinePen.setWidth(1);
Tero Ahola
Added draft of dark blue theme
r581 }
};
QTCOMMERCIALCHART_END_NAMESPACE