2020-07-18 18:56:00 +00:00
|
|
|
/* gFlagsLine Implementation
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
2018-04-02 02:08:32 +00:00
|
|
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2021-11-02 20:34:12 +00:00
|
|
|
* Copyright (c) 2019-2022 The OSCAR Team
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-07-11 04:54:53 +00:00
|
|
|
#include <cmath>
|
2011-07-31 20:24:43 +00:00
|
|
|
#include <QVector>
|
2011-06-26 08:30:44 +00:00
|
|
|
#include "SleepLib/profiles.h"
|
|
|
|
#include "gFlagsLine.h"
|
2011-08-25 06:11:44 +00:00
|
|
|
#include "gYAxis.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-08-12 10:44:05 +00:00
|
|
|
gLabelArea::gLabelArea(Layer * layer)
|
2014-04-17 05:55:38 +00:00
|
|
|
: gSpacer(20)
|
2013-10-25 10:39:30 +00:00
|
|
|
{
|
2014-08-28 08:01:25 +00:00
|
|
|
m_layertype = LT_Spacer;
|
2014-08-12 10:44:05 +00:00
|
|
|
m_mainlayer = layer;
|
2013-10-25 10:39:30 +00:00
|
|
|
}
|
2014-08-12 10:44:05 +00:00
|
|
|
bool gLabelArea::mouseMoveEvent(QMouseEvent *event, gGraph *graph)
|
2013-10-25 10:39:30 +00:00
|
|
|
{
|
2014-08-12 10:44:05 +00:00
|
|
|
if (m_mainlayer) {
|
|
|
|
return m_mainlayer->mouseMoveEvent(event, graph);
|
2014-04-17 05:55:38 +00:00
|
|
|
}
|
|
|
|
|
2013-10-25 15:44:14 +00:00
|
|
|
return false;
|
2013-10-25 10:39:30 +00:00
|
|
|
}
|
2014-08-29 05:32:49 +00:00
|
|
|
int gLabelArea::minimumWidth()
|
|
|
|
{
|
|
|
|
return gYAxis::Margin;
|
|
|
|
}
|
|
|
|
|
2013-10-25 10:39:30 +00:00
|
|
|
|
|
|
|
|
2011-07-11 04:54:53 +00:00
|
|
|
gFlagsGroup::gFlagsGroup()
|
|
|
|
{
|
2014-04-17 05:55:38 +00:00
|
|
|
m_barh = 0;
|
|
|
|
m_empty = true;
|
2011-07-11 04:54:53 +00:00
|
|
|
}
|
|
|
|
gFlagsGroup::~gFlagsGroup()
|
|
|
|
{
|
|
|
|
}
|
2014-08-17 12:56:05 +00:00
|
|
|
|
|
|
|
|
2011-07-27 09:21:53 +00:00
|
|
|
qint64 gFlagsGroup::Minx()
|
|
|
|
{
|
|
|
|
if (m_day) {
|
|
|
|
return m_day->first();
|
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
2011-07-27 09:21:53 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
qint64 gFlagsGroup::Maxx()
|
|
|
|
{
|
|
|
|
if (m_day) {
|
|
|
|
return m_day->last();
|
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
2011-07-27 09:21:53 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
void gFlagsGroup::SetDay(Day *d)
|
2011-07-11 04:54:53 +00:00
|
|
|
{
|
2011-09-01 03:37:25 +00:00
|
|
|
LayerGroup::SetDay(d);
|
2014-04-17 05:55:38 +00:00
|
|
|
int cnt = 0;
|
|
|
|
|
2014-08-06 19:49:05 +00:00
|
|
|
if (!d) {
|
|
|
|
m_empty = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-07 20:27:23 +00:00
|
|
|
quint32 z = schema::FLAG | schema::SPAN;
|
|
|
|
if (p_profile->general->showUnknownFlags()) z |= schema::UNKNOWN;
|
|
|
|
availableChans = d->getSortedMachineChannels(z);
|
2014-08-06 19:49:05 +00:00
|
|
|
|
2014-08-07 13:58:13 +00:00
|
|
|
m_rebuild_cpap = (availableChans.size() == 0);
|
2014-08-06 19:49:05 +00:00
|
|
|
|
2014-08-07 13:58:13 +00:00
|
|
|
if (m_rebuild_cpap) {
|
|
|
|
QHash<ChannelID, schema::Channel *> chans;
|
2014-08-06 19:49:05 +00:00
|
|
|
|
2018-05-05 21:58:11 +00:00
|
|
|
for (const auto & sess : m_day->sessions) {
|
|
|
|
for (auto it=sess->eventlist.begin(), end=sess->eventlist.end(); it != end; ++it) {
|
2014-08-07 13:58:13 +00:00
|
|
|
ChannelID code = it.key();
|
|
|
|
if (chans.contains(code)) continue;
|
|
|
|
|
|
|
|
schema::Channel * chan = &schema::channel[code];
|
2014-04-17 05:55:38 +00:00
|
|
|
|
2014-08-07 13:58:13 +00:00
|
|
|
if (chan->type() == schema::FLAG) {
|
2014-08-07 20:27:23 +00:00
|
|
|
availableChans.push_back(code);
|
2014-08-07 13:58:13 +00:00
|
|
|
} else if (chan->type() == schema::MINOR_FLAG) {
|
2014-08-07 20:27:23 +00:00
|
|
|
availableChans.push_back(code);
|
2014-08-07 13:58:13 +00:00
|
|
|
} else if (chan->type() == schema::SPAN) {
|
2014-08-07 20:27:23 +00:00
|
|
|
availableChans.push_back(code);
|
|
|
|
} else if (chan->type() == schema::UNKNOWN) {
|
|
|
|
availableChans.push_back(code);
|
2014-08-07 13:58:13 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-06 19:49:05 +00:00
|
|
|
}
|
2014-08-07 13:58:13 +00:00
|
|
|
availableChans = chans.keys();
|
2014-08-06 19:49:05 +00:00
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
2014-08-07 20:27:23 +00:00
|
|
|
lvisible.clear();
|
2018-05-05 21:58:11 +00:00
|
|
|
for (const auto code : availableChans) {
|
2014-08-07 13:58:13 +00:00
|
|
|
// const schema::Channel & chan = schema::channel[code];
|
|
|
|
gFlagsLine * fl = new gFlagsLine(code);
|
2014-08-06 19:49:05 +00:00
|
|
|
fl->SetDay(d);
|
|
|
|
lvisible.push_back(fl);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
cnt = lvisible.size();
|
|
|
|
|
|
|
|
// for (int i = 0; i < layers.size(); i++) {
|
|
|
|
// gFlagsLine *f = dynamic_cast<gFlagsLine *>(layers[i]);
|
|
|
|
|
|
|
|
// if (!f) { continue; }
|
|
|
|
|
|
|
|
// bool e = f->isEmpty();
|
|
|
|
|
|
|
|
// if (!e || f->isAlwaysVisible()) {
|
|
|
|
// lvisible.push_back(f);
|
|
|
|
|
|
|
|
// if (!e) {
|
|
|
|
// cnt++;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
m_empty = (cnt == 0);
|
|
|
|
|
2014-08-07 13:58:13 +00:00
|
|
|
if (m_empty) {
|
|
|
|
if (d) {
|
2014-08-17 15:36:53 +00:00
|
|
|
m_empty = !d->hasEvents();
|
2014-08-07 13:58:13 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
m_barh = 0;
|
2011-09-01 03:37:25 +00:00
|
|
|
}
|
2014-08-17 12:56:05 +00:00
|
|
|
bool gFlagsGroup::isEmpty()
|
|
|
|
{
|
|
|
|
if (m_day) {
|
2014-08-17 15:36:53 +00:00
|
|
|
if (m_day->hasEnabledSessions() && m_day->hasEvents())
|
|
|
|
return false;
|
2014-08-17 12:56:05 +00:00
|
|
|
}
|
2014-08-17 15:36:53 +00:00
|
|
|
return true;
|
2014-08-17 12:56:05 +00:00
|
|
|
}
|
2011-09-01 03:37:25 +00:00
|
|
|
|
2014-05-13 17:47:33 +00:00
|
|
|
void gFlagsGroup::paint(QPainter &painter, gGraph &g, const QRegion ®ion)
|
2011-09-01 03:37:25 +00:00
|
|
|
{
|
2018-06-10 07:53:10 +00:00
|
|
|
QRectF outline(region.boundingRect());
|
|
|
|
outline.translate(0.0f, 0.001f);
|
|
|
|
|
|
|
|
int left = region.boundingRect().left()+1;
|
|
|
|
int top = region.boundingRect().top()+1;
|
2014-05-13 17:47:33 +00:00
|
|
|
int width = region.boundingRect().width();
|
|
|
|
int height = region.boundingRect().height();
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (!m_visible) { return; }
|
|
|
|
|
|
|
|
if (!m_day) { return; }
|
2011-09-01 03:37:25 +00:00
|
|
|
|
2014-08-06 19:49:05 +00:00
|
|
|
|
|
|
|
QVector<gFlagsLine *> visflags;
|
|
|
|
|
2018-05-05 21:58:11 +00:00
|
|
|
for (const auto & flagsline : lvisible) {
|
|
|
|
if (schema::channel[flagsline->code()].enabled())
|
|
|
|
visflags.push_back(flagsline);
|
2014-08-06 19:49:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int vis = visflags.size();
|
2014-04-17 05:55:38 +00:00
|
|
|
m_barh = float(height) / float(vis);
|
|
|
|
float linetop = top;
|
2011-08-25 06:11:44 +00:00
|
|
|
|
2013-09-10 15:09:09 +00:00
|
|
|
QColor barcol;
|
2014-04-17 05:55:38 +00:00
|
|
|
|
2018-05-05 21:58:11 +00:00
|
|
|
for (int i=0, end=visflags.size(); i < end; i++) {
|
2011-08-25 06:11:44 +00:00
|
|
|
// Alternating box color
|
2020-07-18 18:56:00 +00:00
|
|
|
barcol = COLOR_ALT_BG2;
|
|
|
|
if (i & 1) {
|
|
|
|
if (g.printing() && AppSetting->monochromePrinting()) {
|
|
|
|
barcol = QColor(0xe4, 0xe4, 0xe4, 0xff);
|
|
|
|
} else {
|
|
|
|
barcol = COLOR_ALT_BG1;
|
|
|
|
}
|
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
2014-09-22 04:32:15 +00:00
|
|
|
painter.fillRect(left, floor(linetop), width-1, ceil(m_barh), QBrush(barcol));
|
|
|
|
|
2011-08-25 06:11:44 +00:00
|
|
|
// Paint the actual flags
|
2014-05-13 17:47:33 +00:00
|
|
|
QRect rect(left, linetop, width, m_barh);
|
2014-08-06 19:49:05 +00:00
|
|
|
visflags[i]->m_rect = rect;
|
|
|
|
visflags[i]->paint(painter, g, QRegion(rect));
|
2014-04-17 05:55:38 +00:00
|
|
|
linetop += m_barh;
|
2011-07-11 04:54:53 +00:00
|
|
|
}
|
2011-08-25 06:11:44 +00:00
|
|
|
|
2014-05-07 19:52:59 +00:00
|
|
|
painter.setPen(COLOR_Outline);
|
2018-06-10 07:53:10 +00:00
|
|
|
painter.drawRect(outline);
|
2014-08-07 13:58:13 +00:00
|
|
|
|
|
|
|
if (m_rebuild_cpap) {
|
|
|
|
|
|
|
|
QString txt = QObject::tr("Database Outdated\nPlease Rebuild CPAP Data");
|
|
|
|
painter.setFont(*bigfont);
|
|
|
|
painter.setPen(QPen(QColor(0,0,0,32)));
|
|
|
|
painter.drawText(region.boundingRect(), Qt::AlignCenter | Qt::AlignVCenter, txt);
|
|
|
|
}
|
2011-07-11 04:54:53 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
bool gFlagsGroup::mouseMoveEvent(QMouseEvent *event, gGraph *graph)
|
2013-10-25 10:39:30 +00:00
|
|
|
{
|
2014-07-20 09:42:34 +00:00
|
|
|
|
2014-08-17 12:56:05 +00:00
|
|
|
//if (p_profile->appearance->lineCursorMode()) {
|
2014-07-21 09:39:26 +00:00
|
|
|
graph->timedRedraw(0);
|
2014-08-17 12:56:05 +00:00
|
|
|
// }
|
2014-07-20 09:42:34 +00:00
|
|
|
|
2018-04-22 12:06:48 +00:00
|
|
|
if (!AppSetting->graphTooltips()) {
|
2013-10-26 13:59:37 +00:00
|
|
|
return false;
|
2014-04-17 05:55:38 +00:00
|
|
|
}
|
|
|
|
|
2018-05-05 21:58:11 +00:00
|
|
|
for (int i=0, end=lvisible.size(); i < end; i++) {
|
|
|
|
gFlagsLine *fl = lvisible.at(i);
|
2013-10-25 10:39:30 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (fl->m_rect.contains(event->x(), event->y())) {
|
|
|
|
if (fl->mouseMoveEvent(event, graph)) { return true; }
|
2013-10-25 10:39:30 +00:00
|
|
|
} else {
|
|
|
|
// Inside main graph area?
|
2014-04-17 05:55:38 +00:00
|
|
|
if ((event->y() > fl->m_rect.y()) && (event->y()) < (fl->m_rect.y() + fl->m_rect.height())) {
|
2018-05-05 21:58:11 +00:00
|
|
|
if (event->x() < fl->m_rect.x()) {
|
2013-10-25 10:39:30 +00:00
|
|
|
// Display tooltip
|
2014-04-17 05:55:38 +00:00
|
|
|
QString ttip = schema::channel[fl->code()].fullname() + "\n" +
|
|
|
|
schema::channel[fl->code()].description();
|
2014-08-06 05:30:15 +00:00
|
|
|
graph->ToolTip(ttip, event->x()+15, event->y(), TT_AlignLeft);
|
2014-08-17 12:56:05 +00:00
|
|
|
graph->timedRedraw(0);
|
2013-10-25 10:39:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2014-08-12 10:44:05 +00:00
|
|
|
return false;
|
2013-10-25 10:39:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-06 19:49:05 +00:00
|
|
|
gFlagsLine::gFlagsLine(ChannelID code)
|
|
|
|
: Layer(code)
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
gFlagsLine::~gFlagsLine()
|
|
|
|
{
|
|
|
|
}
|
2014-05-13 17:47:33 +00:00
|
|
|
void gFlagsLine::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
2014-05-13 17:47:33 +00:00
|
|
|
int left = region.boundingRect().left();
|
|
|
|
int top = region.boundingRect().top();
|
|
|
|
int width = region.boundingRect().width();
|
|
|
|
int height = region.boundingRect().height();
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (!m_visible) { return; }
|
|
|
|
|
|
|
|
if (!m_day) { return; }
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
double minx;
|
|
|
|
double maxx;
|
|
|
|
|
2011-08-25 06:11:44 +00:00
|
|
|
if (w.blockZoom()) {
|
2014-04-17 05:55:38 +00:00
|
|
|
minx = w.rmin_x;
|
|
|
|
maxx = w.rmax_x;
|
2011-06-26 08:30:44 +00:00
|
|
|
} else {
|
2014-04-17 05:55:38 +00:00
|
|
|
minx = w.min_x;
|
|
|
|
maxx = w.max_x;
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
double xx = maxx - minx;
|
|
|
|
|
|
|
|
if (xx <= 0) { return; }
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
double xmult = width / xx;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-08-06 19:49:05 +00:00
|
|
|
schema::Channel & chan = schema::channel[m_code];
|
|
|
|
|
|
|
|
GetTextExtent(chan.label(), m_lx, m_ly);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
// Draw text label
|
2014-08-06 19:49:05 +00:00
|
|
|
w.renderText(chan.label(), left - m_lx - 10, top + (height / 2) + (m_ly / 2));
|
2011-09-01 13:07:26 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
float x1, x2;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
float bartop = top + 2;
|
|
|
|
float bottom = top + height - 2;
|
|
|
|
qint64 X, X2, L;
|
2012-01-05 11:35:23 +00:00
|
|
|
|
|
|
|
qint64 start;
|
2014-04-17 05:55:38 +00:00
|
|
|
quint32 *tptr;
|
2012-01-10 02:34:44 +00:00
|
|
|
EventStoreType *dptr, * eptr;
|
2012-01-05 11:35:23 +00:00
|
|
|
int idx;
|
2014-04-17 05:55:38 +00:00
|
|
|
QHash<ChannelID, QVector<EventList *> >::iterator cei;
|
2012-01-10 02:34:44 +00:00
|
|
|
|
2014-07-11 12:09:38 +00:00
|
|
|
qint64 clockdrift = qint64(p_profile->cpap->clockDrift()) * 1000L;
|
2014-04-17 05:55:38 +00:00
|
|
|
qint64 drift = 0;
|
2012-01-19 15:18:34 +00:00
|
|
|
|
2014-05-07 19:52:59 +00:00
|
|
|
QVector<QLine> vlines;
|
|
|
|
|
|
|
|
QColor color=schema::channel[m_code].defaultColor();
|
2020-07-18 18:56:00 +00:00
|
|
|
if (w.printing() && AppSetting->monochromePrinting()) {
|
|
|
|
color = Qt::black;
|
|
|
|
}
|
2014-05-07 19:52:59 +00:00
|
|
|
QBrush brush(color);
|
|
|
|
|
2018-04-22 12:06:48 +00:00
|
|
|
int tooltipTimeout = AppSetting->tooltipTimeout();
|
|
|
|
|
2014-08-06 19:49:05 +00:00
|
|
|
bool hover = false;
|
2018-05-05 21:58:11 +00:00
|
|
|
for (const auto & sess : m_day->sessions) {
|
|
|
|
if (!sess->enabled()) {
|
2012-01-10 02:34:44 +00:00
|
|
|
continue;
|
2014-04-17 05:55:38 +00:00
|
|
|
}
|
|
|
|
|
2018-05-05 21:58:11 +00:00
|
|
|
drift = (sess->type() == MT_CPAP) ? clockdrift : 0;
|
2014-04-17 05:55:38 +00:00
|
|
|
|
2018-05-05 21:58:11 +00:00
|
|
|
cei = sess->eventlist.find(m_code);
|
2012-01-10 02:34:44 +00:00
|
|
|
|
2018-05-05 21:58:11 +00:00
|
|
|
if (cei == sess->eventlist.end()) {
|
2012-01-10 02:34:44 +00:00
|
|
|
continue;
|
2014-04-17 05:55:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-05-05 21:58:11 +00:00
|
|
|
for (const auto & el : cei.value()) {
|
|
|
|
|
|
|
|
start = el->first() + drift;
|
|
|
|
tptr = el->rawTime();
|
|
|
|
dptr = el->rawData();
|
|
|
|
int np = el->count();
|
2014-04-17 05:55:38 +00:00
|
|
|
eptr = dptr + np;
|
|
|
|
|
|
|
|
for (idx = 0; dptr < eptr; dptr++, tptr++, idx++) {
|
|
|
|
X = start + *tptr;
|
|
|
|
L = *dptr * 1000;
|
2012-01-10 02:34:44 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (X >= minx) {
|
2012-01-10 02:34:44 +00:00
|
|
|
break;
|
2014-04-17 05:55:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
X2 = X - L;
|
|
|
|
|
|
|
|
if (X2 >= minx) {
|
2012-01-10 02:34:44 +00:00
|
|
|
break;
|
2014-04-17 05:55:38 +00:00
|
|
|
}
|
2012-01-10 02:34:44 +00:00
|
|
|
|
|
|
|
}
|
2012-01-05 11:35:23 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
np -= idx;
|
|
|
|
|
2014-08-07 20:27:23 +00:00
|
|
|
if (chan.type() == schema::SPAN) {
|
2012-01-10 02:34:44 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2014-08-07 20:27:23 +00:00
|
|
|
// Draw Event Flag Spans
|
2012-01-10 02:34:44 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2012-01-05 11:35:23 +00:00
|
|
|
|
2014-08-07 20:27:23 +00:00
|
|
|
for (; dptr < eptr; dptr++) {
|
|
|
|
X = start + * tptr++;
|
2012-01-05 11:35:23 +00:00
|
|
|
|
|
|
|
|
2014-08-07 20:27:23 +00:00
|
|
|
L = *dptr * 1000L;
|
|
|
|
X2 = X - L;
|
2014-09-22 04:32:15 +00:00
|
|
|
if (X2 > maxx) {
|
|
|
|
break;
|
|
|
|
}
|
2014-08-06 19:49:05 +00:00
|
|
|
|
2014-08-07 20:27:23 +00:00
|
|
|
x1 = double(X - minx) * xmult + left;
|
|
|
|
x2 = double(X2 - minx) * xmult + left;
|
2021-03-21 18:15:47 +00:00
|
|
|
int width = x1-x2;
|
|
|
|
width = qMax(2,width); // Insure Rectangle will be visable. Flag events are 2 pixels wide.
|
2014-08-07 20:27:23 +00:00
|
|
|
|
|
|
|
brush = QBrush(color);
|
2021-03-21 18:15:47 +00:00
|
|
|
painter.fillRect(x2, bartop, width, bottom-bartop, brush);
|
|
|
|
if (!w.selectingArea() && !hover && QRect(x2, bartop, width , bottom-bartop).contains(w.graphView()->currentMousePos())) {
|
2014-08-06 19:49:05 +00:00
|
|
|
hover = true;
|
|
|
|
painter.setPen(QPen(Qt::red,1));
|
|
|
|
|
2021-03-21 18:15:47 +00:00
|
|
|
painter.drawRect(x2, bartop, width, bottom-bartop);
|
2014-08-06 19:49:05 +00:00
|
|
|
int x,y;
|
2021-03-21 18:15:47 +00:00
|
|
|
double s = *dptr;
|
|
|
|
double m;
|
|
|
|
s=60*modf(s/60,&m);
|
2014-09-22 05:44:55 +00:00
|
|
|
QString lab = QString("%1").arg(schema::channel[m_code].fullname());
|
|
|
|
if (m>0) {
|
|
|
|
lab += QObject::tr(" (%2 min, %3 sec)").arg(m).arg(s);
|
|
|
|
} else {
|
2021-03-21 18:15:47 +00:00
|
|
|
lab += QObject::tr(" (%3 sec)").arg(s);
|
2014-09-22 05:44:55 +00:00
|
|
|
}
|
2014-08-06 19:49:05 +00:00
|
|
|
GetTextExtent(lab, x, y);
|
2018-04-22 12:06:48 +00:00
|
|
|
w.ToolTip(lab, x2 - 10, bartop + (3 * w.printScaleY()), TT_AlignRight, tooltipTimeout);
|
2014-08-06 19:49:05 +00:00
|
|
|
|
2014-08-07 20:27:23 +00:00
|
|
|
}
|
2012-01-10 02:34:44 +00:00
|
|
|
}
|
2014-08-07 20:27:23 +00:00
|
|
|
|
|
|
|
} else { //if (chan.type() == schema::FLAG) {
|
2012-01-10 02:34:44 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2014-08-07 20:27:23 +00:00
|
|
|
// Draw Event Flag Bars
|
2012-01-10 02:34:44 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2012-01-05 11:35:23 +00:00
|
|
|
|
2014-10-15 11:25:05 +00:00
|
|
|
for (int i = 0; i < np; i++, dptr++) {
|
2014-08-07 20:27:23 +00:00
|
|
|
X = start + *tptr++;
|
2012-01-05 11:35:23 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (X > maxx) {
|
2012-01-10 02:34:44 +00:00
|
|
|
break;
|
2014-04-17 05:55:38 +00:00
|
|
|
}
|
2012-01-10 02:34:44 +00:00
|
|
|
|
2014-08-07 20:27:23 +00:00
|
|
|
x1 = (X - minx) * xmult + left;
|
2012-01-05 12:12:42 +00:00
|
|
|
|
2014-08-11 01:20:09 +00:00
|
|
|
if (!w.selectingArea() && !hover && QRect(x1-3, bartop-2, 6, bottom-bartop+4).contains(w.graphView()->currentMousePos())) {
|
2014-08-06 19:49:05 +00:00
|
|
|
hover = true;
|
|
|
|
painter.setPen(QPen(Qt::red,1));
|
|
|
|
|
2014-08-07 20:27:23 +00:00
|
|
|
painter.drawRect(x1-2, bartop-2, 4, bottom-bartop+4);
|
2014-08-06 19:49:05 +00:00
|
|
|
int x,y;
|
2019-07-05 17:29:57 +00:00
|
|
|
// QString lab = QString("%1 (%2)").arg(schema::channel[m_code].fullname()).arg(*dptr);
|
|
|
|
QString lab = QString("%1").arg(schema::channel[m_code].fullname());
|
|
|
|
if (*dptr != 0)
|
|
|
|
lab += QString(" (%2)").arg(*dptr);
|
2014-08-06 19:49:05 +00:00
|
|
|
GetTextExtent(lab, x, y);
|
|
|
|
|
2018-04-22 12:06:48 +00:00
|
|
|
w.ToolTip(lab, x1 - 10, bartop + (3 * w.printScaleY()), TT_AlignRight, tooltipTimeout);
|
2014-08-06 19:49:05 +00:00
|
|
|
}
|
2014-08-07 20:27:23 +00:00
|
|
|
|
|
|
|
vlines.append(QLine(x1, bartop, x1, bottom));
|
2012-01-10 02:34:44 +00:00
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
2020-07-18 18:56:00 +00:00
|
|
|
if (w.printing() && AppSetting->monochromePrinting()) {
|
|
|
|
painter.setPen(QPen(Qt::black, 1.5));
|
|
|
|
} else {
|
|
|
|
painter.setPen(color);
|
|
|
|
}
|
2014-05-07 19:52:59 +00:00
|
|
|
painter.drawLines(vlines);
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
2013-10-25 10:39:30 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
bool gFlagsLine::mouseMoveEvent(QMouseEvent *event, gGraph *graph)
|
2013-10-25 10:39:30 +00:00
|
|
|
{
|
2013-10-25 15:44:14 +00:00
|
|
|
Q_UNUSED(event)
|
|
|
|
Q_UNUSED(graph)
|
2014-04-17 05:55:38 +00:00
|
|
|
// qDebug() << code() << event->x() << event->y() << graph->rect();
|
2013-10-25 10:39:30 +00:00
|
|
|
|
2014-08-12 10:44:05 +00:00
|
|
|
return false;
|
2013-10-25 10:39:30 +00:00
|
|
|
}
|