##// END OF EJS Templates
Pie pen now uses gradient start color
Pie pen now uses gradient start color

File last commit:

r510:abde8123ae71
r510:abde8123ae71
Show More
charttheme.cpp
332 lines | 9.7 KiB | text/x-c | CppLexer
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 #include "charttheme_p.h"
#include "qchart.h"
Michal Klocek
Adds more axis handling...
r176 #include "qchartaxis.h"
Jani Honkonen
Fix color generation for pie
r324 #include <QTime>
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103
Michal Klocek
Refactor themes...
r143 //series
sauimone
Added pen & brush to QBarSet
r214 #include "qbarset.h"
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 #include "qbarseries.h"
#include "qstackedbarseries.h"
#include "qpercentbarseries.h"
Michal Klocek
Rename QLineChartSeries to QLineSeries
r349 #include "qlineseries.h"
Michal Klocek
Adds area chart...
r421 #include "qareaseries.h"
Tero Ahola
Enabled theme colors in scatter again
r182 #include "qscatterseries.h"
Jani Honkonen
Make pie work better with chartwidgettest
r163 #include "qpieseries.h"
Jani Honkonen
Refactor pie (again). QPieSlice's now emit signals and no id's anymore. Just pointers in the interface.
r203 #include "qpieslice.h"
Marek Rosa
Spline working somewhat
r401 #include "qsplineseries.h"
Jani Honkonen
Make pie work better with chartwidgettest
r163
Michal Klocek
Refactor themes...
r143 //items
#include "axisitem_p.h"
sauimone
added _p to private class headers
r381 #include "barpresenter_p.h"
#include "stackedbarpresenter_p.h"
#include "percentbarpresenter_p.h"
Michal Klocek
Fix previous broken commit
r145 #include "linechartitem_p.h"
Michal Klocek
Adds area chart...
r421 #include "areachartitem_p.h"
Michal Klocek
Refactor scatter chart to fit the other classes...
r470 #include "scatterchartitem_p.h"
Marek Rosa
Spline with problems
r419 #include "piepresenter_p.h"
Marek Rosa
Renamed SplinePresenter to SplineChartItem
r460 #include "splinechartitem_p.h"
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103
Michal Klocek
Refactor themes...
r143 //themes
Jani Honkonen
Adding list of series gradients to theme.
r494 #include "chartthemedefault_p.h"
Michal Klocek
Refactor themes...
r143 #include "chartthemevanilla_p.h"
#include "chartthemeicy_p.h"
#include "chartthemegrayscale_p.h"
#include "chartthemescientific_p.h"
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103
Tero Ahola
tuning theme colors
r125
Michal Klocek
Refactor themes...
r143 QTCOMMERCIALCHART_BEGIN_NAMESPACE
Michal Klocek
Adds missing ids to theme classes
r153 ChartTheme::ChartTheme(QChart::ChartTheme id)
Michal Klocek
Refactor themes...
r143 {
Michal Klocek
Adds missing ids to theme classes
r153 m_id = id;
Jani Honkonen
Fix color generation for pie
r324 qsrand(QTime(0,0,0).secsTo(QTime::currentTime()));
Michal Klocek
Refactor themes...
r143 }
Michal Klocek
Adds missing ids to theme classes
r153 ChartTheme* ChartTheme::createTheme(QChart::ChartTheme theme)
Michal Klocek
Refactor themes...
r143 {
switch(theme) {
case QChart::ChartThemeVanilla:
return new ChartThemeVanilla();
case QChart::ChartThemeIcy:
return new ChartThemeIcy();
case QChart::ChartThemeGrayscale:
return new ChartThemeGrayscale();
case QChart::ChartThemeScientific:
return new ChartThemeScientific();
Jani Honkonen
Adding list of series gradients to theme.
r494 default:
return new ChartThemeDefault();
Michal Klocek
Refactor themes...
r143 }
}
void ChartTheme::decorate(QChart* chart)
{
Jani Honkonen
Adding list of series gradients to theme.
r494 chart->setChartBackgroundBrush(m_backgroundGradient);
Michal Klocek
Refactor themes...
r143 }
//TODO helper to by removed later
Michal Klocek
Rename QChartSeries to QSeries
r360 void ChartTheme::decorate(ChartItem* item, QSeries* series,int count)
Michal Klocek
Refactor themes...
r143 {
switch(series->type())
{
Michal Klocek
Rename QChartSeries to QSeries
r360 case QSeries::SeriesTypeLine: {
Michal Klocek
Rename QLineChartSeries to QLineSeries
r349 QLineSeries* s = static_cast<QLineSeries*>(series);
Michal Klocek
Fix previous broken commit
r145 LineChartItem* i = static_cast<LineChartItem*>(item);
Michal Klocek
Refactor themes...
r143 decorate(i,s,count);
break;
}
Michal Klocek
Adds area chart...
r421 case QSeries::SeriesTypeArea: {
QAreaSeries* s = static_cast<QAreaSeries*>(series);
AreaChartItem* i = static_cast<AreaChartItem*>(item);
decorate(i,s,count);
break;
}
Michal Klocek
Rename QChartSeries to QSeries
r360 case QSeries::SeriesTypeBar: {
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 QBarSeries* b = static_cast<QBarSeries*>(series);
sauimone
Common naming convention for barcharts
r216 BarPresenter* i = static_cast<BarPresenter*>(item);
Michal Klocek
Refactor themes...
r143 decorate(i,b,count);
break;
}
Michal Klocek
Rename QChartSeries to QSeries
r360 case QSeries::SeriesTypeStackedBar: {
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 QStackedBarSeries* s = static_cast<QStackedBarSeries*>(series);
sauimone
Common naming convention for barcharts
r216 StackedBarPresenter* i = static_cast<StackedBarPresenter*>(item);
Michal Klocek
Refactor themes...
r143 decorate(i,s,count);
break;
}
Michal Klocek
Rename QChartSeries to QSeries
r360 case QSeries::SeriesTypePercentBar: {
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 QPercentBarSeries* s = static_cast<QPercentBarSeries*>(series);
sauimone
Common naming convention for barcharts
r216 PercentBarPresenter* i = static_cast<PercentBarPresenter*>(item);
Michal Klocek
Refactor themes...
r143 decorate(i,s,count);
break;
}
Michal Klocek
Rename QChartSeries to QSeries
r360 case QSeries::SeriesTypeScatter: {
Tero Ahola
Scatter series marker visuals
r195 QScatterSeries* s = qobject_cast<QScatterSeries*>(series);
Q_ASSERT(s);
Michal Klocek
Refactor scatter chart to fit the other classes...
r470 ScatterChartItem* i = static_cast<ScatterChartItem*>(item);
Tero Ahola
Scatter series marker visuals
r195 Q_ASSERT(i);
decorate(i, s, count);
break;
}
Michal Klocek
Rename QChartSeries to QSeries
r360 case QSeries::SeriesTypePie: {
Jani Honkonen
Make pie work better with chartwidgettest
r163 QPieSeries* s = static_cast<QPieSeries*>(series);
PiePresenter* i = static_cast<PiePresenter*>(item);
decorate(i,s,count);
break;
}
Michal Klocek
Refactor themes...
r143 default:
qDebug()<<"Wrong item to be decorated by theme";
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 break;
}
Michal Klocek
Refactor themes...
r143
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 }
Michal Klocek
Adds area chart...
r421 void ChartTheme::decorate(AreaChartItem* item, QAreaSeries* series,int count)
{
QPen pen;
QBrush brush;
if(pen != series->pen()){
item->setPen(series->pen());
}else{
Jani Honkonen
Adding list of series gradients to theme.
r494 pen.setColor(m_seriesColors.at(count%m_seriesColors.size()));
Michal Klocek
Adds area chart...
r421 pen.setWidthF(2);
item->setPen(pen);
}
if(brush != series->brush()){
item->setBrush(series->brush());
}else{
Jani Honkonen
Adding list of series gradients to theme.
r494 QBrush brush(m_seriesColors.at(count%m_seriesColors.size()));
Michal Klocek
Adds area chart...
r421 item->setBrush(brush);
}
}
Michal Klocek
Rename QLineChartSeries to QLineSeries
r349 void ChartTheme::decorate(LineChartItem* item, QLineSeries* series,int count)
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 {
Michal Klocek
Adds to themes support to lineseries
r152 QPen pen;
if(pen != series->pen()){
Michal Klocek
Refactor animation to fit line,spline,scatter...
r476 item->setLinePen(series->pen());
Michal Klocek
Adds to themes support to lineseries
r152 return;
}
Jani Honkonen
Adding list of series gradients to theme.
r494 pen.setColor(m_seriesColors.at(count%m_seriesColors.size()));
Michal Klocek
Adds to themes support to lineseries
r152 pen.setWidthF(2);
Michal Klocek
Refactor animation to fit line,spline,scatter...
r476 item->setLinePen(pen);
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 }
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 void ChartTheme::decorate(BarPresenter* item, QBarSeries* series,int count)
Tero Ahola
One more alternative for changing themes
r108 {
sauimone
review fix: Removed iterator from barseries. Remove const from brush and pen. Renamed setters for tooltip, floating values and separators
r357 QList<QBarSet*> sets = series->barSets();
sauimone
Using new theme in barcharts
r509 for (int i=0; i<sets.count(); i++) {
qreal pos = (qreal) i / (qreal) sets.count();
QColor c = colorAt(m_seriesGradients.at(count % m_seriesGradients.size()), pos);
sets.at(i)->setBrush(QBrush(c));
sauimone
integrating bar charts to test app.. crashes for now
r164 }
Tero Ahola
One more alternative for changing themes
r108 }
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 void ChartTheme::decorate(StackedBarPresenter* item, QStackedBarSeries* series,int count)
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 {
sauimone
review fix: Removed iterator from barseries. Remove const from brush and pen. Renamed setters for tooltip, floating values and separators
r357 QList<QBarSet*> sets = series->barSets();
sauimone
Using new theme in barcharts
r509 for (int i=0; i<sets.count(); i++) {
qreal pos = (qreal) i / (qreal) sets.count();
QColor c = colorAt(m_seriesGradients.at(count % m_seriesGradients.size()), pos);
sets.at(i)->setBrush(QBrush(c));
sauimone
integrating bar charts to test app.. crashes for now
r164 }
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 }
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 void ChartTheme::decorate(PercentBarPresenter* item, QPercentBarSeries* series,int count)
Michal Klocek
Refactor themes...
r143 {
sauimone
review fix: Removed iterator from barseries. Remove const from brush and pen. Renamed setters for tooltip, floating values and separators
r357 QList<QBarSet*> sets = series->barSets();
sauimone
Using new theme in barcharts
r509 for (int i=0; i<sets.count(); i++) {
qreal pos = (qreal) i / (qreal) sets.count();
QColor c = colorAt(m_seriesGradients.at(count % m_seriesGradients.size()), pos);
sets.at(i)->setBrush(QBrush(c));
sauimone
integrating bar charts to test app.. crashes for now
r164 }
Michal Klocek
Refactor themes...
r143 }
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103
Michal Klocek
Refactor scatter chart to fit the other classes...
r470 void ChartTheme::decorate(ScatterChartItem* item, QScatterSeries* series, int count)
Tero Ahola
Enabled theme colors in scatter again
r182 {
Michal Klocek
Refactor scatter chart to fit the other classes...
r470 Q_ASSERT(item);
Tero Ahola
Enabled theme colors in scatter again
r182 Q_ASSERT(series);
Jani Honkonen
Adding list of series gradients to theme.
r494 QColor color = m_seriesColors.at(count % m_seriesColors.size());
Tero Ahola
Scatter series marker visuals
r195 // TODO: define alpha in the theme? or in the series?
Tero Ahola
Refactored chartwidgettest test data impl
r278 //color.setAlpha(120);
Tero Ahola
Scatter series marker visuals
r195
QBrush brush(color, Qt::SolidPattern);
Michal Klocek
Refactor scatter chart to fit the other classes...
r470 item->setBrush(Qt::blue);
Tero Ahola
Enabled theme colors in scatter again
r182
Tero Ahola
Refactored chartwidgettest test data impl
r278 QPen pen(brush, 3);
Tero Ahola
Scatter series marker visuals
r195 pen.setColor(color);
Michal Klocek
Refactor scatter chart to fit the other classes...
r470 item->setPen(pen);
Tero Ahola
Enabled theme colors in scatter again
r182 }
Jani Honkonen
Adding list of series gradients to theme.
r494 void ChartTheme::decorate(PiePresenter* item, QPieSeries* series, int count)
Jani Honkonen
Make pie work better with chartwidgettest
r163 {
Tero Ahola
Theme gradients now generated from a single base color
r507 // Get color for a slice from a gradient linearly, beginning from the start of the gradient
for (int i(0); i < series->slices().count(); i++) {
qreal pos = (qreal) i / (qreal) series->count();
Tero Ahola
Pie pen now uses gradient start color
r510 QColor penColor = colorAt(m_seriesGradients.at(count % m_seriesGradients.size()), 0.1);
series->slices().at(i)->setSlicePen(penColor);
QColor brushColor = colorAt(m_seriesGradients.at(count % m_seriesGradients.size()), pos);
series->slices().at(i)->setSliceBrush(brushColor);
Jani Honkonen
Make pie work better with chartwidgettest
r163 }
}
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103
Jani Honkonen
Adding list of series gradients to theme.
r494 void ChartTheme::decorate(QChartAxis* axis, AxisItem* item)
Michal Klocek
Adds more axis handling...
r176 {
//TODO: dummy defults for now
Michal Klocek
Refactors axis handling...
r223 axis->setLabelsBrush(Qt::black);
axis->setLabelsPen(Qt::NoPen);
axis->setShadesPen(Qt::NoPen);
axis->setShadesOpacity(0.5);
Michal Klocek
Adds more axis handling...
r176 }
Marek Rosa
Renamed SplinePresenter to SplineChartItem
r460 void ChartTheme::decorate(SplineChartItem* item, QSplineSeries* series, int count)
Marek Rosa
Spline working somewhat
r401 {
Marek Rosa
Renamed SplinePresenter to SplineChartItem
r460 Q_ASSERT(item);
Marek Rosa
Spline working somewhat
r401 Q_ASSERT(series);
Marek Rosa
Spline chart example added
r434 QPen pen;
Michal Klocek
Refactor animation to fit line,spline,scatter...
r476
Marek Rosa
Spline chart example added
r434 if(pen != series->pen()){
Michal Klocek
Refactor animation to fit line,spline,scatter...
r476 item->setLinePen(series->pen());
}else{
Jani Honkonen
Adding list of series gradients to theme.
r494 pen.setColor(m_seriesColors.at(count%m_seriesColors.size()));
Michal Klocek
Refactor animation to fit line,spline,scatter...
r476 pen.setWidthF(series->pen().widthF());
item->setLinePen(series->pen());
Marek Rosa
Spline chart example added
r434 }
Jani Honkonen
Adding list of series gradients to theme.
r494 // QColor color = m_seriesColors.at(count % m_seriesColors.size());
Marek Rosa
Spline working somewhat
r401 // TODO: define alpha in the theme? or in the series?
//color.setAlpha(120);
// QBrush brush(color, Qt::SolidPattern);
// presenter->m_markerBrush = brush;
// QPen pen(brush, 3);
// pen.setColor(color);
// presenter->m_markerPen = pen;
}
Tero Ahola
Theme gradients now generated from a single base color
r507 void ChartTheme::generateSeriesGradients()
{
// Generate gradients in HSV color space
foreach (QColor color, m_seriesColors) {
QLinearGradient g;
qreal h = color.hsvHueF();
qreal s = color.hsvSaturationF();
// TODO: tune the algorithm to give nice results with most base colors defined in
// most themes. The rest of the gradients we can define manually in theme specific
// implementation.
QColor start = color;
start.setHsvF(h, 0.05, 0.95);
g.setColorAt(0.0, start);
g.setColorAt(0.5, color);
QColor end = color;
end.setHsvF(h, s, 0.25);
g.setColorAt(1.0, end);
m_seriesGradients << g;
}
}
Jani Honkonen
Adding list of series gradients to theme.
r494 QColor ChartTheme::colorAt(const QColor &start, const QColor &end, qreal pos)
{
Q_ASSERT(pos >=0.0 && pos <= 1.0);
qreal r = start.redF() + ((end.redF() - start.redF()) * pos);
qreal g = start.greenF() + ((end.greenF() - start.greenF()) * pos);
qreal b = start.blueF() + ((end.blueF() - start.blueF()) * pos);
QColor c;
c.setRgbF(r, g, b);
return c;
}
QColor ChartTheme::colorAt(const QGradient &gradient, qreal pos)
{
Q_ASSERT(pos >=0 && pos <= 1.0);
// another possibility:
// http://stackoverflow.com/questions/3306786/get-intermediate-color-from-a-gradient
QGradientStops stops = gradient.stops();
int count = stops.count();
// find previous stop relative to position
QGradientStop prev = stops.first();
for (int i=0; i<count; i++) {
QGradientStop stop = stops.at(i);
if (pos > stop.first)
prev = stop;
// given position is actually a stop position?
if (pos == stop.first) {
//qDebug() << "stop color" << pos;
return stop.second;
}
}
// find next stop relative to position
QGradientStop next = stops.last();
for (int i=count-1; i>=0; i--) {
QGradientStop stop = stops.at(i);
if (pos < stop.first)
next = stop;
}
//qDebug() << "prev" << prev.first << "pos" << pos << "next" << next.first;
qreal range = next.first - prev.first;
qreal posDelta = pos - prev.first;
qreal relativePos = posDelta / range;
//qDebug() << "range" << range << "posDelta" << posDelta << "relativePos" << relativePos;
return colorAt(prev.second, next.second, relativePos);
}
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 QTCOMMERCIALCHART_END_NAMESPACE