##// END OF EJS Templates
Adds win32 command condition to src.pro
Adds win32 command condition to src.pro

File last commit:

r614:ac346143dd38
r627:110f905bcf35
Show More
chartthemebluecerulean_p.h
36 lines | 1.1 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
Fonts and background of the themes...
r614 backgroundGradient.setColorAt(0.0, QRgb(0x2e303a));
Tero Ahola
Colors of the darker theme
r608 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
Tero Ahola
Fonts and background of the themes...
r614 m_masterFont = QFont("arial");
m_titleBrush = QBrush(QRgb(0xffffff));
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
Fonts and background of the themes...
r614 m_axisLabelBrush = QBrush(QRgb(0xffffff));
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