mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Fix LineCursor information line for square plots
This commit is contained in:
parent
8d3a96a5a5
commit
4e9e44b9a5
@ -222,7 +222,7 @@ QString gLineChart::getMetaString(qint64 time)
|
||||
for (int i=0; i<m_codes.size(); ++i) {
|
||||
ChannelID code = m_codes[i];
|
||||
if (m_day->channelHasData(code)) {
|
||||
val = m_day->lookupValue(code, time);
|
||||
val = m_day->lookupValue(code, time, m_square_plot);
|
||||
lasttext += " "+QString("%1: %2 %3").arg(schema::channel[code].label()).arg(val,0,'f',2).arg(schema::channel[code].units());
|
||||
|
||||
if (code == CPAP_IPAP) {
|
||||
|
@ -253,10 +253,11 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
|
||||
// col = QColor("gold");
|
||||
hover = true;
|
||||
painter.setPen(QPen(col,3));
|
||||
} else {
|
||||
painter.setPen(QPen(col,1));
|
||||
painter.drawLine(x1, top, x1, bottom);
|
||||
}
|
||||
painter.drawLine(x1, top, x1, bottom);
|
||||
if (xx < (3600000)) {
|
||||
QString lab = QString("%1").arg(m_label);
|
||||
GetTextExtent(lab, x, y);
|
||||
|
@ -70,7 +70,7 @@ EventDataType Day::countInsideSpan(ChannelID span, ChannelID code)
|
||||
return count;
|
||||
}
|
||||
|
||||
EventDataType Day::lookupValue(ChannelID code, qint64 time)
|
||||
EventDataType Day::lookupValue(ChannelID code, qint64 time, bool square)
|
||||
{
|
||||
QList<Session *>::iterator end = sessions.end();
|
||||
for (QList<Session *>::iterator it = sessions.begin(); it != end; ++it) {
|
||||
@ -78,7 +78,7 @@ EventDataType Day::lookupValue(ChannelID code, qint64 time)
|
||||
|
||||
if (sess.enabled()) {
|
||||
if ((time > sess.first()) && (time < sess.last())) {
|
||||
return sess.SearchValue(code,time);
|
||||
return sess.SearchValue(code,time,square);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -104,7 +104,7 @@ class Day
|
||||
EventDataType timeBelowThreshold(ChannelID code, EventDataType threshold);
|
||||
|
||||
//! \brief Returns the value for Channel code at a given time
|
||||
EventDataType lookupValue(ChannelID code, qint64 time);
|
||||
EventDataType lookupValue(ChannelID code, qint64 time, bool square);
|
||||
|
||||
//! \brief Returns the count of code events inside span flag event durations
|
||||
EventDataType countInsideSpan(ChannelID span, ChannelID code);
|
||||
|
@ -953,7 +953,7 @@ void Session::UpdateSummaries()
|
||||
}
|
||||
}
|
||||
|
||||
EventDataType Session::SearchValue(ChannelID code, qint64 time)
|
||||
EventDataType Session::SearchValue(ChannelID code, qint64 time, bool square)
|
||||
{
|
||||
qint64 t1, t2, start;
|
||||
QHash<ChannelID, QVector<EventList *> >::iterator it;
|
||||
@ -996,22 +996,31 @@ EventDataType Session::SearchValue(ChannelID code, qint64 time)
|
||||
start = el->first();
|
||||
tptr = el->rawTime();
|
||||
// TODO: square plots need fixing
|
||||
|
||||
for (int j = 0; j < cnt-1; ++j) {
|
||||
tptr++;
|
||||
t2 = start + *tptr;
|
||||
if (t2 > time) {
|
||||
tptr--;
|
||||
t1 = start + *tptr;
|
||||
c = EventDataType(t2 - t1);
|
||||
d = EventDataType(t2 - time);
|
||||
e = d/c;
|
||||
a = el->data(j);
|
||||
b = el->data(j+1);
|
||||
if (a == b) {
|
||||
return a;
|
||||
} else {
|
||||
return b + ((a-b) * e);
|
||||
if (square) {
|
||||
for (int j = 0; j < cnt-1; ++j) {
|
||||
tptr++;
|
||||
t2 = start + *tptr;
|
||||
if (t2 > time) {
|
||||
return el->data(j);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
for (int j = 0; j < cnt-1; ++j) {
|
||||
tptr++;
|
||||
t2 = start + *tptr;
|
||||
if (t2 > time) {
|
||||
tptr--;
|
||||
t1 = start + *tptr;
|
||||
c = EventDataType(t2 - t1);
|
||||
d = EventDataType(t2 - time);
|
||||
e = d/c;
|
||||
a = el->data(j);
|
||||
b = el->data(j+1);
|
||||
if (a == b) {
|
||||
return a;
|
||||
} else {
|
||||
return b + ((a-b) * e);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -65,7 +65,7 @@ class Session
|
||||
inline bool isEmpty() { return (s_first == s_last); }
|
||||
|
||||
//! \brief Search for Event code happening at supplied time (ms since epoch)
|
||||
EventDataType SearchValue(ChannelID code, qint64 time);
|
||||
EventDataType SearchValue(ChannelID code, qint64 time, bool square);
|
||||
|
||||
//! \brief Return the sessionID
|
||||
inline const SessionID &session() {
|
||||
|
Loading…
Reference in New Issue
Block a user