2014-08-17 12:56:05 +00:00
|
|
|
/* SessionBar Graph Implementation
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) 2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
|
|
* distribution for more details. */
|
|
|
|
|
2013-10-10 17:36:53 +00:00
|
|
|
#include <QPainter>
|
|
|
|
#include <QLinearGradient>
|
|
|
|
#include <QBrush>
|
|
|
|
#include <QRect>
|
|
|
|
#include <QMouseEvent>
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
#include "sessionbar.h"
|
|
|
|
|
2013-10-12 07:40:45 +00:00
|
|
|
SBSeg::SBSeg()
|
|
|
|
{
|
2014-04-23 13:19:56 +00:00
|
|
|
session = nullptr;
|
2014-04-17 05:52:25 +00:00
|
|
|
color = QColor();
|
|
|
|
highlight = false;
|
2013-10-12 07:40:45 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
SBSeg::SBSeg(Session *sess, QColor col)
|
2013-10-12 07:40:45 +00:00
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
session = sess;
|
|
|
|
color = col;
|
|
|
|
highlight = false;
|
2013-10-12 07:40:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//SBSeg::SBSeg(const SBSeg & a)
|
|
|
|
//{
|
|
|
|
// session=(Session *)a.session;
|
|
|
|
// color=a.color;
|
|
|
|
// highlight=a.highlight;
|
|
|
|
//}
|
|
|
|
|
2013-10-10 17:36:53 +00:00
|
|
|
SessionBar::SessionBar(QWidget *parent) :
|
|
|
|
QWidget(parent)
|
|
|
|
{
|
|
|
|
timer.setParent(this);
|
2014-05-25 07:07:08 +00:00
|
|
|
m_selectIDX = -1;
|
|
|
|
m_selectColor = Qt::red;
|
|
|
|
m_selectMode = false;
|
2013-10-10 17:36:53 +00:00
|
|
|
}
|
2013-10-12 07:40:45 +00:00
|
|
|
//SessionBar::SessionBar(const SessionBar & copy)
|
|
|
|
// :QWidget(this)
|
|
|
|
//{
|
|
|
|
// timer.setParent(this);
|
|
|
|
// QList<SBSeg>::const_iterator i;
|
|
|
|
// for (i=copy.segments.begin();i!=copy.segments.end();++i) {
|
|
|
|
// segments.push_back(*i);
|
|
|
|
// }
|
|
|
|
//}
|
|
|
|
|
2013-10-10 17:36:53 +00:00
|
|
|
SessionBar::~SessionBar()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
void SessionBar::updateTimer()
|
|
|
|
{
|
|
|
|
if (!underMouse()) {
|
|
|
|
QList<SBSeg>::iterator i;
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
for (i = segments.begin(); i != segments.end(); ++i) {
|
|
|
|
(*i).highlight = false;
|
2013-10-10 17:36:53 +00:00
|
|
|
}
|
|
|
|
} else {
|
2014-04-17 05:52:25 +00:00
|
|
|
timer.singleShot(50, this, SLOT(updateTimer()));
|
2013-10-10 17:36:53 +00:00
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2013-10-10 17:36:53 +00:00
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
SegType SessionBar::min()
|
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
if (segments.isEmpty()) {
|
2013-10-10 17:36:53 +00:00
|
|
|
return 0;
|
2014-04-17 05:52:25 +00:00
|
|
|
}
|
2013-10-10 17:36:53 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
QList<SBSeg>::iterator i = segments.begin();
|
|
|
|
SegType min = (*i).session->first();
|
2013-10-10 17:36:53 +00:00
|
|
|
i++;
|
|
|
|
|
|
|
|
qint64 val;
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
for (; i != segments.end(); ++i) {
|
|
|
|
val = (*i).session->first();
|
|
|
|
|
|
|
|
if (min > val) {
|
|
|
|
min = val;
|
|
|
|
}
|
2013-10-10 17:36:53 +00:00
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2013-10-10 17:36:53 +00:00
|
|
|
return min;
|
|
|
|
}
|
|
|
|
|
|
|
|
SegType SessionBar::max()
|
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
if (segments.isEmpty()) {
|
2013-10-10 17:36:53 +00:00
|
|
|
return 0;
|
2014-04-17 05:52:25 +00:00
|
|
|
}
|
2013-10-10 17:36:53 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
QList<SBSeg>::iterator i = segments.begin();
|
|
|
|
SegType max = (*i).session->last();
|
2013-10-10 17:36:53 +00:00
|
|
|
i++;
|
|
|
|
qint64 val;
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
for (; i != segments.end(); ++i) {
|
|
|
|
val = (*i).session->last();
|
|
|
|
|
|
|
|
if (max < val) {
|
|
|
|
max = val;
|
|
|
|
}
|
2013-10-10 17:36:53 +00:00
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2013-10-10 17:36:53 +00:00
|
|
|
return max;
|
|
|
|
}
|
|
|
|
|
2014-08-21 06:03:30 +00:00
|
|
|
QColor brighten(QColor, float f=2.0);
|
2013-10-10 17:36:53 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
void SessionBar::mousePressEvent(QMouseEvent *ev)
|
2013-10-10 17:36:53 +00:00
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
SegType mn = min();
|
|
|
|
SegType mx = max();
|
|
|
|
|
|
|
|
if (mx < mn) {
|
2013-10-25 10:39:30 +00:00
|
|
|
return;
|
2014-04-17 05:52:25 +00:00
|
|
|
}
|
2013-10-10 17:36:53 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
SegType total = mx - mn;
|
2014-05-25 07:07:08 +00:00
|
|
|
double px = double(width() ) / double(total);
|
2013-10-10 17:36:53 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
double sx, ex;
|
2013-10-10 17:36:53 +00:00
|
|
|
QList<SBSeg>::iterator i;
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
int cnt = 0;
|
|
|
|
|
|
|
|
for (i = segments.begin(); i != segments.end(); ++i) {
|
|
|
|
Session *sess = (*i).session;
|
|
|
|
sx = double(sess->first() - mn) * px;
|
|
|
|
ex = double(sess->last() - mn) * px;
|
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
if (ex > width()) { ex = width(); }
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2013-10-10 17:36:53 +00:00
|
|
|
//ex-=sx;
|
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
if ((ev->x() >= sx) && (ev->x() < ex)
|
2014-04-17 05:52:25 +00:00
|
|
|
&& (ev->y() > 0) && (ev->y() < height())) {
|
2014-05-25 07:07:08 +00:00
|
|
|
m_selectIDX = cnt;
|
|
|
|
emit sessionClicked((*i).session);
|
2013-10-10 17:36:53 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2013-10-10 17:36:53 +00:00
|
|
|
cnt++;
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
if (timer.isActive()) { timer.stop(); }
|
|
|
|
|
|
|
|
timer.singleShot(50, this, SLOT(updateTimer()));
|
2013-10-10 17:36:53 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
void SessionBar::mouseMoveEvent(QMouseEvent *ev)
|
2013-10-10 17:36:53 +00:00
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
SegType mn = min();
|
|
|
|
SegType mx = max();
|
|
|
|
|
|
|
|
if (mx < mn) {
|
2013-10-25 10:39:30 +00:00
|
|
|
return;
|
2014-04-17 05:52:25 +00:00
|
|
|
}
|
2013-10-10 17:36:53 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
SegType total = mx - mn;
|
|
|
|
double px = double(width() - 5) / double(total);
|
2013-10-10 17:36:53 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
double sx, ex;
|
2013-10-10 17:36:53 +00:00
|
|
|
QList<SBSeg>::iterator i;
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
for (i = segments.begin(); i != segments.end(); ++i) {
|
|
|
|
SBSeg &seg = *i;
|
|
|
|
sx = double(seg.session->first() - mn) * px;
|
|
|
|
ex = double(seg.session->last() - mn) * px;
|
|
|
|
|
|
|
|
if (ex > width() - 5) { ex = width() - 5; }
|
|
|
|
|
2013-10-10 17:36:53 +00:00
|
|
|
//ex-=sx;
|
|
|
|
|
|
|
|
if ((ev->x() > sx) && (ev->x() < ex)
|
2014-04-17 05:52:25 +00:00
|
|
|
&& (ev->y() > 0) && (ev->y() < height())) {
|
|
|
|
seg.highlight = true;
|
|
|
|
} else { seg.highlight = false; }
|
2013-10-10 17:36:53 +00:00
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
if (timer.isActive()) { timer.stop(); }
|
|
|
|
|
|
|
|
timer.singleShot(50, this, SLOT(updateTimer()));
|
2013-10-10 17:36:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SessionBar::paintEvent(QPaintEvent *)
|
|
|
|
{
|
|
|
|
QPainter painter(this);
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
QRect rect(1, 1, width() - 2, height() - 2);
|
2013-10-10 17:36:53 +00:00
|
|
|
|
|
|
|
painter.drawRect(rect);
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
SegType mn = min();
|
|
|
|
SegType mx = max();
|
|
|
|
|
|
|
|
if (mx < mn) {
|
2013-10-22 11:42:57 +00:00
|
|
|
return;
|
2014-04-17 05:52:25 +00:00
|
|
|
}
|
2013-10-10 17:36:53 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
SegType total = mx - mn;
|
|
|
|
double px = double(width() - 5) / double(total);
|
2013-10-10 17:36:53 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
double sx, ex;
|
2013-10-10 17:36:53 +00:00
|
|
|
QList<SBSeg>::iterator i;
|
2014-05-25 07:07:08 +00:00
|
|
|
QRect selectRect;
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
int cnt = 0;
|
2014-04-17 05:52:25 +00:00
|
|
|
for (i = segments.begin(); i != segments.end(); ++i) {
|
|
|
|
SBSeg &seg = *i;
|
|
|
|
qint64 mm = seg.session->first(), MM = seg.session->last(), L = MM - mm;
|
|
|
|
sx = double(mm - mn) * px;
|
|
|
|
ex = double(MM - mn) * px;
|
|
|
|
|
|
|
|
if (ex > width() - 5) { ex = width() - 5; }
|
|
|
|
|
|
|
|
ex -= sx;
|
|
|
|
|
|
|
|
int len = L / 1000L;
|
|
|
|
int h = len / 3600;
|
|
|
|
int m = (len / 60) % 60;
|
2014-04-17 04:56:04 +00:00
|
|
|
//int s=len % 60;
|
2013-10-10 17:36:53 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
QString msg = QString("%1h %2m").arg((short)h, 1, 10, QChar('0')).arg((short)m, 1, 10,
|
|
|
|
QChar('0')); //.arg((short)s,2,10,QChar('0'));
|
2013-10-10 17:36:53 +00:00
|
|
|
//painter.setBrush(QBrush((*i).color);
|
2014-04-17 05:52:25 +00:00
|
|
|
QRect segrect(3 + sx, 3, ex, height() - 6);
|
|
|
|
|
2013-10-10 17:36:53 +00:00
|
|
|
if (seg.session->enabled()) {
|
2014-04-17 05:52:25 +00:00
|
|
|
QLinearGradient linearGrad(QPointF(0, 0), QPointF(0, height() / 2));
|
2013-10-10 17:36:53 +00:00
|
|
|
linearGrad.setSpread(QGradient::ReflectSpread);
|
2014-04-17 05:52:25 +00:00
|
|
|
QColor col = seg.color;
|
2014-05-25 07:07:08 +00:00
|
|
|
if (m_selectMode && (cnt == m_selectIDX)) {
|
|
|
|
// col = m_selectColor;
|
|
|
|
} else if (seg.highlight) { col = brighten(col); }
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2013-10-10 17:36:53 +00:00
|
|
|
linearGrad.setColorAt(0, col);
|
|
|
|
linearGrad.setColorAt(1, brighten(col));
|
|
|
|
QBrush brush(linearGrad);
|
2014-04-17 05:52:25 +00:00
|
|
|
painter.fillRect(segrect, brush);
|
2013-10-10 17:36:53 +00:00
|
|
|
} else {
|
|
|
|
if (seg.highlight) {
|
2014-04-17 05:52:25 +00:00
|
|
|
QColor col = QColor("#f0f0f0");
|
|
|
|
painter.fillRect(segrect, col);
|
2013-10-10 17:36:53 +00:00
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2013-10-10 17:36:53 +00:00
|
|
|
//msg="Off";
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
QRect rect = painter.boundingRect(segrect, Qt::AlignCenter, msg);
|
|
|
|
|
2013-10-10 17:36:53 +00:00
|
|
|
if (rect.width() < segrect.width()) {
|
2014-05-25 07:07:08 +00:00
|
|
|
painter.setPen(Qt::black);
|
2014-04-17 05:52:25 +00:00
|
|
|
painter.drawText(segrect, Qt::AlignCenter, msg);
|
2013-10-10 17:36:53 +00:00
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
|
|
|
|
if (m_selectMode && (cnt == m_selectIDX)) {
|
|
|
|
painter.setPen(QPen(m_selectColor, 3));
|
|
|
|
} else {
|
|
|
|
painter.setPen(QPen(Qt::black, 1));
|
|
|
|
}
|
2013-10-10 17:36:53 +00:00
|
|
|
painter.drawRect(segrect);
|
2014-05-25 07:07:08 +00:00
|
|
|
cnt++;
|
2013-10-10 17:36:53 +00:00
|
|
|
|
|
|
|
}
|
2014-05-25 07:07:08 +00:00
|
|
|
if (!cnt) {
|
|
|
|
QString msg = tr("No Sessions Present");
|
|
|
|
QRect rct = painter.boundingRect(this->rect(), Qt::AlignCenter, msg);
|
|
|
|
painter.setPen(Qt::black);
|
|
|
|
painter.drawText(rct, Qt::AlignCenter, msg);
|
|
|
|
}
|
2013-10-10 17:36:53 +00:00
|
|
|
}
|