mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Feint backing lines in event overlays. Fixed PRS1 Mask Pressure scale bug
This commit is contained in:
parent
554132d1c5
commit
45d1430de9
@ -172,7 +172,7 @@ skipcheck:
|
||||
if (chan->type() == schema::FLAG) {
|
||||
lob = new gLineOverlayBar(code, chan->defaultColor(), chan->label(), FT_Bar);
|
||||
} else if (chan->type() == schema::MINOR_FLAG) {
|
||||
lob = new gLineOverlayBar(code, chan->defaultColor(), chan->label(), FT_Bar);
|
||||
lob = new gLineOverlayBar(code, chan->defaultColor(), chan->label(), FT_Dot);
|
||||
} else if (chan->type() == schema::SPAN) {
|
||||
lob = new gLineOverlayBar(code, chan->defaultColor(), chan->label(), FT_Span);
|
||||
}
|
||||
|
@ -163,7 +163,7 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
|
||||
painter.fillRect(rect, QBrush(col));
|
||||
}
|
||||
} else if (m_flt == FT_Dot) {
|
||||
}/* else if (m_flt == FT_Dot) {
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
// FT_Dot
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
@ -193,7 +193,7 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
// painter.drawLine(x1, start_py + 1, x1, start_py + 1 + 12);
|
||||
// }
|
||||
}
|
||||
} else if (m_flt == FT_Bar) {
|
||||
} */else if ((m_flt == FT_Bar) || (m_flt == FT_Dot)) {
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
// FT_Bar
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
@ -214,7 +214,7 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
double d1 = jj * double(raw) * 1000.0;
|
||||
|
||||
|
||||
if ((odt == ODT_Bars)) { // || (xx < 3600000)) {
|
||||
if ((m_flt == FT_Bar) && (odt == ODT_Bars)) { // || (xx < 3600000)) {
|
||||
QRect rect(x1-d1-2, top, d1+2, height);
|
||||
QColor col = m_flag_color;
|
||||
|
||||
@ -261,28 +261,45 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
|
||||
|
||||
} else {
|
||||
if (!m_blockhover && QRect(x1-2, topp, 6, height).contains(mouse)) {
|
||||
if (!m_hover) {
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
// Top and bottom markers
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
bool b = false;
|
||||
if (!m_blockhover && QRect(x1-2, topp, 6, height).contains(mouse) && !m_hover) {
|
||||
// only want to draw the highlight/label once per frame
|
||||
m_hover = true;
|
||||
b = true;
|
||||
|
||||
// Draw text label
|
||||
QString lab = QString("%1 (%2)").arg(schema::channel[m_code].label()).arg(raw);
|
||||
GetTextExtent(lab, x, y);
|
||||
painter.fillRect(x1 - (x / 2) - x, start_py + 14 + (3 * w.printScaleY()), x+4,y+4, QBrush(QColor(255,255,255,245)));
|
||||
painter.setPen(QPen(Qt::gray,1));
|
||||
painter.drawRect(x1 - (x / 2) - x, start_py + 14 + (3 * w.printScaleY()), x+4,y+4);
|
||||
w.renderText(lab, x1 - (x / 2)+2 - x, start_py + 14 + y + (3 * w.printScaleY()),0);
|
||||
//x1-=1;
|
||||
painter.setPen(QPen(m_flag_color,4));
|
||||
} else {
|
||||
painter.setPen(QPen(m_flag_color,1));
|
||||
}
|
||||
} else {
|
||||
painter.setPen(QPen(m_flag_color,1));
|
||||
}
|
||||
|
||||
//x1-=1;
|
||||
QColor col = m_flag_color;
|
||||
col.setAlpha(60);
|
||||
painter.setPen(QPen(col, 4));
|
||||
|
||||
painter.drawLine(x1, start_py+14, x1, z - 12);
|
||||
painter.setPen(QPen(m_flag_color,4));
|
||||
|
||||
painter.drawLine(x1, z, x1, z - 14);
|
||||
painter.drawLine(x1, start_py+2, x1, start_py + 16);
|
||||
} else {
|
||||
QColor col = m_flag_color;
|
||||
col.setAlpha(10);
|
||||
painter.setPen(QPen(col,1));
|
||||
painter.drawLine(x1, start_py+14, x1, z - 12);
|
||||
painter.setPen(QPen(m_flag_color,1));
|
||||
painter.drawLine(x1, z, x1, z - 12);
|
||||
painter.drawLine(x1, start_py+2, x1, start_py + 14);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1727,7 +1727,7 @@ bool PRS1Import::ParseWaveforms()
|
||||
}
|
||||
|
||||
if (data[1].size() > 0) {
|
||||
EventList * pres = session->AddEventList(CPAP_MaskPressureHi, EVL_Waveform, 1.0, 0.0, 0.0, 0.0, dur / data[1].size());
|
||||
EventList * pres = session->AddEventList(CPAP_MaskPressureHi, EVL_Waveform, 0.1, 0.0, 0.0, 0.0, dur / data[1].size());
|
||||
pres->AddWaveform(ti, (unsigned char *)data[1].data(), data[1].size(), dur);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user