Software summarychart gradients a bit

This commit is contained in:
Mark Watkins 2014-08-21 16:03:30 +10:00
parent 06ce5d686c
commit 40ab37c071
3 changed files with 8 additions and 8 deletions

View File

@ -20,7 +20,7 @@ gLineOverlayBar::~gLineOverlayBar()
{ {
} }
QColor brighten(QColor color); QColor brighten(QColor, float);
void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion &region) void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion &region)
{ {

View File

@ -381,7 +381,7 @@ void SummaryChart::SetDay(Day * nullday)
m_physminy = m_miny; m_physminy = m_miny;
} }
QColor brighten(QColor color) QColor brighten(QColor color, float mult = 2.0)
{ {
int cr, cg, cb; int cr, cg, cb;
@ -395,9 +395,9 @@ QColor brighten(QColor color)
if (cb < 64) { cb = 64; } if (cb < 64) { cb = 64; }
cr *= 2; cr *= mult;
cg *= 2; cg *= mult;
cb *= 2; cb *= mult;
if (cr > 255) { cr = 255; } if (cr > 255) { cr = 255; }
@ -649,7 +649,7 @@ void SummaryChart::paint(QPainter &painter, gGraph &w, const QRegion &region)
} }
QColor col1 = col; QColor col1 = col;
QColor col2 = Qt::white; QColor col2 = brighten(col,2.37);
//outlines->setColor(Qt::black); //outlines->setColor(Qt::black);
int np = d.value().size(); int np = d.value().size();
@ -767,7 +767,7 @@ void SummaryChart::paint(QPainter &painter, gGraph &w, const QRegion &region)
if (graphtype == GT_BAR) { if (graphtype == GT_BAR) {
QColor col1 = col; QColor col1 = col;
QColor col2 = Qt::white; QColor col2 = brighten(col,2.5);
QLinearGradient gradient(x1, py-h, x1+barw, py-h); QLinearGradient gradient(x1, py-h, x1+barw, py-h);
gradient.setColorAt(0,col1); gradient.setColorAt(0,col1);

View File

@ -117,7 +117,7 @@ SegType SessionBar::max()
return max; return max;
} }
QColor brighten(QColor color); QColor brighten(QColor, float f=2.0);
void SessionBar::mousePressEvent(QMouseEvent *ev) void SessionBar::mousePressEvent(QMouseEvent *ev)
{ {