Added % of night in LargeLeak overview chart

This commit is contained in:
Mark Watkins 2014-08-07 02:12:55 +10:00
parent 43d670611a
commit 6913da8e69
7 changed files with 19 additions and 8 deletions

View File

@ -161,6 +161,7 @@ void gToolTip::timerDone()
{ {
m_visible = false; m_visible = false;
m_graphview->redraw(); m_graphview->redraw();
m_graphview->resetMouse();
} }
#ifdef ENABLE_THREADED_DRAWING #ifdef ENABLE_THREADED_DRAWING

View File

@ -383,6 +383,7 @@ class gGraphView
inline QPoint currentMousePos() const { return m_mouse; } inline QPoint currentMousePos() const { return m_mouse; }
void dumpInfo(); void dumpInfo();
void resetMouse() { m_mouse = QPoint(0,0); }
// for profiling purposes, a count of lines drawn in a single frame // for profiling purposes, a count of lines drawn in a single frame
int lines_drawn_this_frame; int lines_drawn_this_frame;

View File

@ -874,6 +874,7 @@ bool PRS1Import::ParseF0Events()
EventList *FL = session->AddEventList(CPAP_FlowLimit, EVL_Event); EventList *FL = session->AddEventList(CPAP_FlowLimit, EVL_Event);
EventList *VS = session->AddEventList(CPAP_VSnore, EVL_Event); EventList *VS = session->AddEventList(CPAP_VSnore, EVL_Event);
EventList *VS2 = session->AddEventList(CPAP_VSnore2, EVL_Event); EventList *VS2 = session->AddEventList(CPAP_VSnore2, EVL_Event);
EventList *T1 = session->AddEventList(CPAP_Test1, EVL_Event, 0.1);
Code[12] = session->AddEventList(PRS1_0B, EVL_Event); Code[12] = session->AddEventList(PRS1_0B, EVL_Event);
Code[17] = session->AddEventList(PRS1_0E, EVL_Event); Code[17] = session->AddEventList(PRS1_0E, EVL_Event);
@ -1054,12 +1055,15 @@ bool PRS1Import::ParseF0Events()
} }
if ((event->family == 0) && (event->familyVersion >= 4)) { if ((event->family == 0) && (event->familyVersion >= 4)) {
data[0] = buffer[pos];
pos++; pos++;
} }
break; break;
case 0x0e: // Unknown case 0x0e: // Unknown
data[0] = ((char *)buffer)[pos++]; data[0] = ((char *)buffer)[pos++];
data[1] = buffer[pos++]; //(buffer[pos+1] << 8) | buffer[pos]; data[1] = buffer[pos++]; //(buffer[pos+1] << 8) | buffer[pos];
//data[0]/=10.0; //data[0]/=10.0;
@ -1074,7 +1078,7 @@ bool PRS1Import::ParseF0Events()
//session->AddEvent(new Event(t,CPAP_CSR, data, 2)); //session->AddEvent(new Event(t,CPAP_CSR, data, 2));
break; break;
case 0x10: // Unknown, Large Leak case 0x10: // Large Leak
data[0] = buffer[pos + 1] << 8 | buffer[pos]; data[0] = buffer[pos + 1] << 8 | buffer[pos];
pos += 2; pos += 2;
data[1] = buffer[pos++]; data[1] = buffer[pos++];

View File

@ -153,7 +153,7 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
ChannelID cpapcodes[] = { ChannelID cpapcodes[] = {
CPAP_FlowRate, CPAP_MaskPressure, CPAP_Pressure, CPAP_Leak, CPAP_Snore, CPAP_RespRate, CPAP_FlowRate, CPAP_MaskPressure, CPAP_Pressure, CPAP_Leak, CPAP_Snore, CPAP_RespRate,
CPAP_TidalVolume, CPAP_MinuteVent, CPAP_FLG, CPAP_PTB, CPAP_RespEvent, CPAP_Ti, CPAP_Te, CPAP_TidalVolume, CPAP_MinuteVent, CPAP_FLG, CPAP_PTB, CPAP_RespEvent, CPAP_Ti, CPAP_Te,
CPAP_IE, ZEO_SleepStage, POS_Inclination, POS_Orientation CPAP_IE, ZEO_SleepStage, POS_Inclination, POS_Orientation, CPAP_Test1
}; };
int cpapsize = sizeof(cpapcodes) / sizeof(ChannelID); int cpapsize = sizeof(cpapcodes) / sizeof(ChannelID);
@ -338,6 +338,7 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
graphlist[schema::channel[CPAP_Snore].code()]->AddLayer(AddCPAP(new gLineChart(CPAP_Snore, COLOR_Snore, true))); graphlist[schema::channel[CPAP_Snore].code()]->AddLayer(AddCPAP(new gLineChart(CPAP_Snore, COLOR_Snore, true)));
graphlist[schema::channel[CPAP_PTB].code()]->AddLayer(AddCPAP(new gLineChart(CPAP_PTB, COLOR_PTB, square))); graphlist[schema::channel[CPAP_PTB].code()]->AddLayer(AddCPAP(new gLineChart(CPAP_PTB, COLOR_PTB, square)));
graphlist[schema::channel[CPAP_Test1].code()]->AddLayer(AddCPAP(new gLineChart(CPAP_Test1, COLOR_PTB, false)));
gLineChart *lc = nullptr; gLineChart *lc = nullptr;

View File

@ -11,8 +11,8 @@ Important: One id code per item, DO NOT CHANGE ID NUMBERS!!!
<channel id="0x111e" class="data" name="TestChan1" details="Respiratory Rate" label="Mark's Resp. Rate" unit="breaths/min" color="black"/> <channel id="0x111e" class="data" name="TestChan1" details="Debugging Channel #2" label="Test #1" unit="" color="pink"/>
<channel id="0x111f" class="data" name="TestChan2" details="Tidal Volume" label="Tidal Volume" unit="L/min" color="blue"/> <channel id="0x111f" class="data" name="TestChan2" details="Debugging Channel #2" label="Test #2" unit="" color="blue"/>
<channel id="0x1160" class="data" name="RMS9_E01" details="RMS9 Empty 1" label="E01" unit="" color="black"/> <channel id="0x1160" class="data" name="RMS9_E01" details="RMS9 Empty 1" label="E01" unit="" color="black"/>
<channel id="0x1161" class="data" name="RMS9_E02" details="RMS9 Empty 2" label="E02" unit="" color="black"/> <channel id="0x1161" class="data" name="RMS9_E02" details="RMS9 Empty 2" label="E02" unit="" color="black"/>

View File

@ -135,7 +135,8 @@ Overview::Overview(QWidget *parent, gGraphView *shared) :
SET = createGraph("Settings", STR_TR_Settings, STR_TR_Settings); SET = createGraph("Settings", STR_TR_Settings, STR_TR_Settings);
LK = createGraph("Leaks", STR_TR_Leaks, STR_TR_UnintentionalLeaks + "\n(" + STR_UNIT_LPM + ")"); LK = createGraph("Leaks", STR_TR_Leaks, STR_TR_UnintentionalLeaks + "\n(" + STR_UNIT_LPM + ")");
TOTLK = createGraph("TotalLeaks", STR_TR_TotalLeaks, STR_TR_TotalLeaks + "\n(" + STR_UNIT_LPM + ")"); TOTLK = createGraph("TotalLeaks", STR_TR_TotalLeaks, STR_TR_TotalLeaks + "\n(" + STR_UNIT_LPM + ")");
NPB = createGraph("TimeInPB", tr("% in PB"), tr("Periodic\nBreathing\n(% of night)")); NPB = createGraph("TimeInPB", tr("% in %1").arg(schema::channel[CPAP_CSR].label()), tr("%1\n(% of night)").arg(schema::channel[CPAP_LargeLeak].description()));
NLL = createGraph("TimeInLL", tr("% in %1").arg(schema::channel[CPAP_LargeLeak].label()), tr("Large Leaks\n(% of night)"));
if (ahicode == CPAP_RDI) { if (ahicode == CPAP_RDI) {
AHIHR = createGraph(STR_GRAPH_PeakAHI, tr("Peak RDI"), tr("Peak RDI\nShows RDI Clusters\n(RDI/hr)")); AHIHR = createGraph(STR_GRAPH_PeakAHI, tr("Peak RDI"), tr("Peak RDI\nShows RDI Clusters\n(RDI/hr)"));
@ -296,7 +297,10 @@ Overview::Overview(QWidget *parent, gGraphView *shared) :
TOTLK->AddLayer(totlk); TOTLK->AddLayer(totlk);
NPB->AddLayer(npb = new SummaryChart(tr("% PB"), GT_POINTS)); NPB->AddLayer(npb = new SummaryChart(tr("% PB"), GT_POINTS));
npb->addSlice(CPAP_CSR, COLOR_DarkGreen, ST_SPH); npb->addSlice(CPAP_CSR, schema::channel[CPAP_CSR].defaultColor(), ST_SPH);
NLL->AddLayer(nll = new SummaryChart(tr("% %1").arg(schema::channel[CPAP_LargeLeak].fullname()), GT_POINTS));
nll->addSlice(CPAP_LargeLeak, schema::channel[CPAP_LargeLeak].defaultColor(), ST_SPH);
// <--- The code to the previous marker is crap // <--- The code to the previous marker is crap
GraphView->LoadSettings("Overview"); //no trans GraphView->LoadSettings("Overview"); //no trans

View File

@ -63,12 +63,12 @@ class Overview : public QWidget
\param QString name The title of the graph \param QString name The title of the graph
\param QString units The units of measurements to show in the popup */ \param QString units The units of measurements to show in the popup */
gGraph *createGraph(QString code, QString name, QString units = "", YTickerType yttype = YT_Number); gGraph *createGraph(QString code, QString name, QString units = "", YTickerType yttype = YT_Number);
gGraph *AHI, *AHIHR, *UC, *FL, *SA, *US, *PR, *LK, *NPB, *SET, *SES, *RR, *MV, *TV, *PTB, *PULSE, *SPO2, gGraph *AHI, *AHIHR, *UC, *FL, *SA, *US, *PR, *LK, *NPB, *SET, *SES, *RR, *MV, *TV, *PTB, *PULSE, *SPO2, *NLL,
// gGraph *AHI, *AHIHR, *UC, *FL, *US, *PR, *LK, *NPB, *SET, *SES, *RR, *MV, *TV, *PTB, *PULSE, *SPO2, // gGraph *AHI, *AHIHR, *UC, *FL, *US, *PR, *LK, *NPB, *SET, *SES, *RR, *MV, *TV, *PTB, *PULSE, *SPO2,
*WEIGHT, *ZOMBIE, *BMI, *TGMV, *TOTLK; *WEIGHT, *ZOMBIE, *BMI, *TGMV, *TOTLK;
SummaryChart *bc, *uc, *fl, *sa, *us, *pr, *lk, *npb, *set, *ses, *rr, *mv, *tv, *ptb, *pulse, *spo2, SummaryChart *bc, *uc, *fl, *sa, *us, *pr, *lk, *npb, *set, *ses, *rr, *mv, *tv, *ptb, *pulse, *spo2,
// SummaryChart *bc, *uc, *fl, *us, *pr, *lk, *npb, *set, *ses, *rr, *mv, *tv, *ptb, *pulse, *spo2, // SummaryChart *bc, *uc, *fl, *us, *pr, *lk, *npb, *set, *ses, *rr, *mv, *tv, *ptb, *pulse, *spo2,
*weight, *zombie, *bmi, *ahihr, *tgmv, *totlk; *weight, *zombie, *bmi, *ahihr, *tgmv, *totlk, *nll;
//! \breif List of SummaryCharts shown on the overview page //! \breif List of SummaryCharts shown on the overview page
QVector<SummaryChart *> OverviewCharts; QVector<SummaryChart *> OverviewCharts;