diff --git a/sleepyhead/Graphs/gLineChart.cpp b/sleepyhead/Graphs/gLineChart.cpp index 741941dd..bf7aaabc 100644 --- a/sleepyhead/Graphs/gLineChart.cpp +++ b/sleepyhead/Graphs/gLineChart.cpp @@ -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); } diff --git a/sleepyhead/Graphs/gLineOverlay.cpp b/sleepyhead/Graphs/gLineOverlay.cpp index 8efccf28..8df794ad 100644 --- a/sleepyhead/Graphs/gLineOverlay.cpp +++ b/sleepyhead/Graphs/gLineOverlay.cpp @@ -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,27 +261,44 @@ 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) { - m_hover = true; + ////////////////////////////////////////////////////////////////////////////////////// + // 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; - 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)); - } + // 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; + 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); } - painter.drawLine(x1, z, x1, z - 12); - painter.drawLine(x1, start_py+2, x1, start_py + 14); + } } } diff --git a/sleepyhead/SleepLib/loader_plugins/prs1_loader.cpp b/sleepyhead/SleepLib/loader_plugins/prs1_loader.cpp index f170dd7a..23b78dc0 100644 --- a/sleepyhead/SleepLib/loader_plugins/prs1_loader.cpp +++ b/sleepyhead/SleepLib/loader_plugins/prs1_loader.cpp @@ -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); }