mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Show labels over top/bottom event markers
This commit is contained in:
parent
800ca0e2e0
commit
639588a261
@ -859,12 +859,6 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
|||||||
legendx -= bw*2;
|
legendx -= bw*2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (m_day && (p_profile->appearance->lineCursorMode() || (m_codes[0]==CPAP_FlowRate))) {
|
|
||||||
QHash<ChannelID, gLineOverlayBar *>::iterator fit;
|
|
||||||
for (fit = flags.begin(); fit != flags.end(); ++fit) {
|
|
||||||
fit.value()->paint(painter, w, region);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if (!total_points) { // No Data?
|
if (!total_points) { // No Data?
|
||||||
@ -877,5 +871,11 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
painter.setClipping(false);
|
painter.setClipping(false);
|
||||||
|
if (m_day && (p_profile->appearance->lineCursorMode() || (m_codes[0]==CPAP_FlowRate))) {
|
||||||
|
QHash<ChannelID, gLineOverlayBar *>::iterator fit;
|
||||||
|
for (fit = flags.begin(); fit != flags.end(); ++fit) {
|
||||||
|
fit.value()->paint(painter, w, region);
|
||||||
|
}
|
||||||
|
}
|
||||||
painter.setRenderHint(QPainter::Antialiasing, false);
|
painter.setRenderHint(QPainter::Antialiasing, false);
|
||||||
}
|
}
|
||||||
|
@ -178,17 +178,17 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
|||||||
m_count++;
|
m_count++;
|
||||||
m_sum += raw;
|
m_sum += raw;
|
||||||
|
|
||||||
if ((odt == ODT_Bars) || (xx < 3600000)) {
|
// if ((odt == ODT_Bars) || (xx < 3600000)) {
|
||||||
// show the fat dots in the middle
|
// show the fat dots in the middle
|
||||||
painter.setPen(QPen(m_flag_color,4));
|
painter.setPen(QPen(m_flag_color,4));
|
||||||
|
|
||||||
painter.drawPoint(x1, double(height) / double(yy)*double(-20 - w.min_y) + topp);
|
painter.drawPoint(x1, double(height) / double(yy)*double(-20 - w.min_y) + topp);
|
||||||
painter.setPen(QPen(m_flag_color,1));
|
painter.setPen(QPen(m_flag_color,1));
|
||||||
|
|
||||||
} else {
|
// } else {
|
||||||
// thin lines down the bottom
|
// // thin lines down the bottom
|
||||||
painter.drawLine(x1, start_py + 1, x1, start_py + 1 + 12);
|
// painter.drawLine(x1, start_py + 1, x1, start_py + 1 + 12);
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
} else if (m_flt == FT_Bar) {
|
} else if (m_flt == FT_Bar) {
|
||||||
////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////
|
||||||
@ -203,19 +203,19 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
x1 = jj * double(X - w.min_x) + left;
|
x1 = jj * (double(X) - double(w.min_x)) + left;
|
||||||
m_count++;
|
m_count++;
|
||||||
m_sum += raw;
|
m_sum += raw;
|
||||||
int z = start_py + height;
|
int z = start_py + height;
|
||||||
|
|
||||||
|
|
||||||
if ((odt == ODT_Bars) || (xx < 3600000)) {
|
|
||||||
z = top;
|
|
||||||
double d1 = jj * double(raw) * 1000.0;
|
double d1 = jj * double(raw) * 1000.0;
|
||||||
|
|
||||||
|
|
||||||
|
if ((odt == ODT_Bars)) { // || (xx < 3600000)) {
|
||||||
QRect rect(x1-d1-2, top, d1+2, height);
|
QRect rect(x1-d1-2, top, d1+2, height);
|
||||||
QColor col = m_flag_color;
|
QColor col = m_flag_color;
|
||||||
|
|
||||||
|
|
||||||
painter.setPen(QPen(col,4));
|
painter.setPen(QPen(col,4));
|
||||||
painter.drawPoint(x1, top);
|
painter.drawPoint(x1, top);
|
||||||
|
|
||||||
@ -239,13 +239,8 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
|||||||
painter.setPen(QPen(col,1));
|
painter.setPen(QPen(col,1));
|
||||||
painter.drawLine(x1, top, x1, bottom);
|
painter.drawLine(x1, top, x1, bottom);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
} else {
|
|
||||||
painter.drawLine(x1, z, x1, z - 12);
|
|
||||||
}
|
|
||||||
|
|
||||||
QColor txcol = hover ? Qt::red: Qt::black;
|
QColor txcol = hover ? Qt::red: Qt::black;
|
||||||
|
|
||||||
if (xx < 300000) {
|
if (xx < 300000) {
|
||||||
QString lab = QString("%1 (%2)").arg(schema::channel[m_code].fullname()).arg(raw);
|
QString lab = QString("%1 (%2)").arg(schema::channel[m_code].fullname()).arg(raw);
|
||||||
GetTextExtent(lab, x, y);
|
GetTextExtent(lab, x, y);
|
||||||
@ -260,6 +255,25 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
|||||||
w.renderText(lab, x1 - (x / 2)+2, top - y + (3 * w.printScaleY()),0,txcol);
|
w.renderText(lab, x1 - (x / 2)+2, top - y + (3 * w.printScaleY()),0,txcol);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
} else {
|
||||||
|
QRect rect(x1-d1-2, topp, d1+6, height);
|
||||||
|
|
||||||
|
if (rect.contains(mouse)) {
|
||||||
|
painter.setPen(QPen(m_flag_color,4));
|
||||||
|
|
||||||
|
QString lab = QString("%1 (%2)").arg(schema::channel[m_code].label()).arg(raw);
|
||||||
|
GetTextExtent(lab, x, y);
|
||||||
|
w.renderText(lab, x1 - (x / 2)+2, start_py + 14 + y + (3 * w.printScaleY()),0);
|
||||||
|
x1-=1;
|
||||||
|
} else {
|
||||||
|
painter.setPen(QPen(m_flag_color,1));
|
||||||
|
}
|
||||||
|
|
||||||
|
painter.drawLine(x1, z, x1, z - 12);
|
||||||
|
painter.drawLine(x1, start_py+2, x1, start_py + 14);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,9 +10,12 @@
|
|||||||
<br/>
|
<br/>
|
||||||
<b>New features & bug fixes in v0.9.7</b><br/>
|
<b>New features & bug fixes in v0.9.7</b><br/>
|
||||||
<list>
|
<list>
|
||||||
|
<li>New Feature: Large Leak flagging where not present, using redline threshold</li>
|
||||||
|
<li>New Feature: Can switch off individual daily view linechart event overlays in a combo box down the bottom left</li>
|
||||||
|
<li>New Feature: Events are now visible on all daily charts in line cursor mode</li>
|
||||||
<li>Fix an issue that caused some burried PRS1 session data to not be imported</li>
|
<li>Fix an issue that caused some burried PRS1 session data to not be imported</li>
|
||||||
<li>Fix a lot of pressure and pressure relief strings</li>
|
<li>Fix a lot of pressure and pressure relief strings</li>
|
||||||
<li>New Feature: Added basic Weinmann SOMNOsoft2 Import importer</li>
|
<li>New Feature: Added (very experimental)Weinmann SOMNOsoft2 Import importer</li>
|
||||||
<li>Fixed inverted CMS50 .spoR file pulse and spo2</l>
|
<li>Fixed inverted CMS50 .spoR file pulse and spo2</l>
|
||||||
<li>Added CMS50i .spo2 file import support</li>
|
<li>Added CMS50i .spo2 file import support</li>
|
||||||
<li>New Feature: Added a Welcome page to make things a little friendlier</li>
|
<li>New Feature: Added a Welcome page to make things a little friendlier</li>
|
||||||
|
@ -161,7 +161,7 @@ QString GenerateWelcomeHTML()
|
|||||||
else if (ahi < 10) ahitext = QString("<font color=red>")+QObject::tr("not very good")+"</font>";
|
else if (ahi < 10) ahitext = QString("<font color=red>")+QObject::tr("not very good")+"</font>";
|
||||||
else ahitext = QString("<font color=red>")+QObject::tr("horrible, please consult your doctor")+"</font>";
|
else ahitext = QString("<font color=red>")+QObject::tr("horrible, please consult your doctor")+"</font>";
|
||||||
|
|
||||||
html += QObject::tr("Your had an AHI of %1, which is considered %2").arg(ahi,0,'f',2).arg(ahitext)+"<br/>";
|
html += QObject::tr("You had an AHI of %1, which is considered %2").arg(ahi,0,'f',2).arg(ahitext)+"<br/>";
|
||||||
|
|
||||||
int seconds = int(hours * 3600.0) % 60;
|
int seconds = int(hours * 3600.0) % 60;
|
||||||
int minutes = int(hours * 60) % 60;
|
int minutes = int(hours * 60) % 60;
|
||||||
|
Loading…
Reference in New Issue
Block a user