/* Daily Panel Copyright (c)2011 Mark Watkins License: GPL */ #include "daily.h" #include "ui_daily.h" #include #include #include #include #include #include #include "SleepLib/session.h" #include "Graphs/graphdata_custom.h" #include "Graphs/gLineOverlay.h" #include "Graphs/gFlagsLine.h" #include "Graphs/gFooBar.h" #include "Graphs/gXAxis.h" #include "Graphs/gYAxis.h" #include "Graphs/gCandleStick.h" #include "Graphs/gBarChart.h" #include "Graphs/gpiechart.h" Daily::Daily(QWidget *parent,QGLWidget * shared) : QWidget(parent), ui(new Ui::Daily) { ui->setupUi(this); QString prof=pref["Profile"].toString(); profile=Profiles::Get(prof); if (!profile) { QMessageBox::critical(this,"Profile Error",QString("Couldn't get profile '%1'.. Have to abort!").arg(pref["Profile"].toString())); exit(-1); } gSplitter=new QSplitter(Qt::Vertical,ui->scrollArea); gSplitter->setStyleSheet("QSplitter::handle { background-color: 'dark grey'; }"); gSplitter->setHandleWidth(2); ui->graphSizer->addWidget(gSplitter); SF=new gGraphWindow(gSplitter,tr("Event Flags"),shared); FRW=new gGraphWindow(gSplitter,tr("Flow Rate"),SF); PRD=new gGraphWindow(gSplitter,tr("Pressure"),SF); LEAK=new gGraphWindow(gSplitter,tr("Leaks"),SF); MP=new gGraphWindow(gSplitter,tr("Mask Pressure"),SF); SNORE=new gGraphWindow(gSplitter,tr("Snore"),SF); FLG=new gGraphWindow(gSplitter,tr("Flow Limitation"),SF); MV=new gGraphWindow(gSplitter,tr("Minute Ventilation"),SF); TV=new gGraphWindow(gSplitter,tr("Tidal Volume"),SF); RR=new gGraphWindow(gSplitter,tr("Respiratory Rate"),SF); PTB=new gGraphWindow(gSplitter,tr("Patient Trig Breaths"),SF); PULSE=new gGraphWindow(gSplitter,tr("Pulse & SpO2"),SF); TAP=new gGraphWindow(NULL,"",(QGLWidget* )NULL); TAP_EAP=new gGraphWindow(NULL,"",(QGLWidget* )NULL); TAP_IAP=new gGraphWindow(NULL,"",(QGLWidget* )NULL); G_AHI=new gGraphWindow(NULL,"",(QGLWidget* )NULL); /*QGLFormat fmt; fmt.setDepth(false); fmt.setDirectRendering(false); fmt.setAlpha(true); fmt.setDoubleBuffer(false); fmt.setRgba(true); //fmt.setDefaultFormat(fmt); offscreen_context=new QGLContext(fmt); */ SF->SetLeftMargin(SF->GetLeftMargin()+gYAxis::Margin); SF->SetBlockZoom(true); SF->AddLayer(new gXAxis()); SF->setMinimumHeight(160); fg=new gFlagsGroup(); fg->AddLayer(new gFlagsLine(CPAP_CSR,QColor("light green"),"CSR",false,FT_Span)); fg->AddLayer(new gFlagsLine(CPAP_ClearAirway,QColor("purple"),"CA",true)); fg->AddLayer(new gFlagsLine(CPAP_Obstructive,QColor("#40c0ff"),"OA",true)); fg->AddLayer(new gFlagsLine(CPAP_Hypopnea,QColor("blue"),"H",true)); fg->AddLayer(new gFlagsLine(CPAP_FlowLimit,QColor("black"),"FL")); fg->AddLayer(new gFlagsLine(CPAP_RERA,QColor("gold"),"RE")); fg->AddLayer(new gFlagsLine(CPAP_VSnore,QColor("red"),"VS")); //fg->AddLayer(AddCPAP(new gFlagsLine(flags[8],QColor("dark green"),"U0E")); fg->AddLayer(new gFlagsLine(CPAP_Apnea,QColor("dark green"),"A")); //fg->AddLayer(AddCPAP(new gFlagsLine(flags[10],QColor("red"),"VS2")); SF->AddLayer(AddCPAP(fg)); // SF Foobar must go last SF->AddLayer(new gFooBar(10,QColor("orange"),QColor("dark grey"),true)); PRD->AddLayer(new gXAxis()); PRD->AddLayer(new gYAxis()); //PRD->AddLayer(new gFooBar()); bool square=true; PRD->AddLayer(AddCPAP(new gLineChart(CPAP_Pressure,QColor("dark green"),square))); PRD->AddLayer(AddCPAP(new gLineChart(CPAP_EAP,Qt::blue,square))); PRD->AddLayer(AddCPAP(new gLineChart(CPAP_IAP,Qt::red,square))); PRD->setMinimumHeight(150); LEAK->AddLayer(new gXAxis()); LEAK->AddLayer(new gYAxis()); //LEAK->AddLayer(new gFooBar()); LEAK->AddLayer(AddCPAP(new gLineChart(CPAP_Leak,QColor("purple"),true))); LEAK->setMinimumHeight(150); MP->AddLayer(new gYAxis()); MP->AddLayer(new gXAxis()); gLineChart *g=new gLineChart(CPAP_MaskPressure,Qt::blue,false); AddCPAP(g); g->ReportEmpty(true); MP->AddLayer(g); MP->setMinimumHeight(150); //FRW->AddLayer(new gFooBar()); FRW->AddLayer(new gYAxis()); FRW->AddLayer(new gXAxis()); FRW->AddLayer(AddCPAP(new gLineOverlayBar(CPAP_CSR,QColor("light green"),"CSR",FT_Span))); g=new gLineChart(CPAP_FlowRate,Qt::black,false); g->ReportEmpty(true); AddCPAP(g); FRW->AddLayer(g); FRW->AddLayer(AddCPAP(new gLineOverlayBar(CPAP_Hypopnea,QColor("blue"),"H"))); FRW->AddLayer(AddCPAP(new gLineOverlayBar(PRS1_PressurePulse,QColor("red"),"PR",FT_Dot))); FRW->AddLayer(AddCPAP(new gLineOverlayBar(CPAP_RERA,QColor("gold"),"RE"))); //FRW->AddLayer(AddCPAP(new gLineOverlayBar(CPAP_Unknown0E,QColor("dark green"),"U0E"))); FRW->AddLayer(AddCPAP(new gLineOverlayBar(CPAP_VSnore,QColor("red"),"VS"))); FRW->AddLayer(AddCPAP(new gLineOverlayBar(CPAP_FlowLimit,QColor("black"),"FL"))); FRW->AddLayer(AddCPAP(new gLineOverlayBar(CPAP_Obstructive,QColor("#40c0ff"),"OA"))); FRW->AddLayer(AddCPAP(new gLineOverlayBar(CPAP_ClearAirway,QColor("purple"),"CA"))); FRW->setMinimumHeight(180); SNORE->AddLayer(new gXAxis()); SNORE->AddLayer(new gYAxis()); SNORE->AddLayer(AddCPAP(new gLineChart(CPAP_Snore,Qt::black,true))); SNORE->setMinimumHeight(150); FLG->AddLayer(new gXAxis()); FLG->AddLayer(new gYAxis()); FLG->AddLayer(AddCPAP(new gLineChart(CPAP_FlowLimitGraph,Qt::black,true))); FLG->setMinimumHeight(150); MV->AddLayer(new gXAxis()); MV->AddLayer(new gYAxis()); MV->AddLayer(AddCPAP(new gLineChart(CPAP_MinuteVentilation,QColor(0x20,0x20,0x7f),true))); MV->setMinimumHeight(150); TV->AddLayer(new gXAxis()); TV->AddLayer(new gYAxis()); TV->AddLayer(AddCPAP(new gLineChart(CPAP_TidalVolume,QColor(0x7f,0x20,0x20),true))); TV->setMinimumHeight(150); RR->AddLayer(new gXAxis()); RR->AddLayer(new gYAxis()); RR->AddLayer(AddCPAP(new gLineChart(CPAP_RespiratoryRate,Qt::gray,true))); RR->setMinimumHeight(150); PTB->AddLayer(new gXAxis()); PTB->AddLayer(new gYAxis()); PTB->AddLayer(AddCPAP(new gLineChart(CPAP_PatientTriggeredBreaths,Qt::gray,true))); PTB->setMinimumHeight(150); PULSE->AddLayer(new gXAxis()); PULSE->AddLayer(new gYAxis()); // PULSE->AddLayer(new gFooBar()); PULSE->AddLayer(AddOXI(new gLineChart(OXI_Pulse,Qt::red,true))); PULSE->setMinimumHeight(150); // SPO2=new gGraphWindow(gSplitter,tr("SpO2"),SF); // SPO2->AddLayer(new gXAxis()); // SPO2->AddLayer(new gYAxis()); // SPO2->AddLayer(new gFooBar()); PULSE->AddLayer(AddOXI(new gLineChart(OXI_SPO2,Qt::blue,true))); // SPO2->setMinimumHeight(150); // SPO2->LinkZoom(PULSE); // PULSE->LinkZoom(SPO2); // SPO2->hide(); PULSE->hide(); //AddCPAPData(tap_eap=new TAPData(CPAP_EAP)); //AddCPAPData(tap_iap=new TAPData(CPAP_IAP)); //AddCPAPData(tap=new TAPData(CPAP_Pressure)); //TAP->SetMargins(20,15,5,50); //TAP->SetMargins(0,0,0,0); //TAP->AddLayer(new gCandleStick(tap)); //TAP->AddLayer(new gPieChart(tap)); //TAP_EAP->SetMargins(0,0,0,0); //TAP_EAP->AddLayer(new gCandleStick(tap_eap)); //TAP_IAP->SetMargins(0,0,0,0); //TAP_IAP->AddLayer(new gCandleStick(tap_iap)); //G_AHI->SetMargins(0,0,0,0); //AddCPAPData(g_ahi=new AHIData()); //gCandleStick *l=new gCandleStick(g_ahi); /*gPieChart *l=new gPieChart(g_ahi); l->AddName(tr("H")); l->AddName(tr("OA")); l->AddName(tr("CA")); l->AddName(tr("RE")); l->AddName(tr("FL")); // l->AddName(tr("CSR")); l->color.clear(); l->color.push_back(QColor(0x40,0x40,0xff,0xff)); // blue l->color.push_back(QColor(0x40,0xaf,0xbf,0xff)); // aqua l->color.push_back(QColor(0xb2,0x54,0xcd,0xff)); // purple l->color.push_back(QColor(0xff,0xff,0x80,0xff)); // yellow l->color.push_back(QColor(0x40,0x40,0x40,0xff)); // dark grey //l->color.push_back(QColor(0x60,0xff,0x60,0xff)); // green G_AHI->AddLayer(l); G_AHI->SetGradientBackground(false); //G_AHI->setMaximumSize(2000,30); //TAP->setMaximumSize(2000,30); G_AHI->hide(); TAP->hide(); TAP_IAP->hide(); TAP_EAP->hide(); */ NoData=new QLabel(tr("No data"),gSplitter); NoData->setAlignment(Qt::AlignCenter); QFont font("FreeSans",20); //NoData->font(); //font.setBold(true); NoData->setFont(font); NoData->hide(); gSplitter->addWidget(NoData); gGraphWindow * graphs[]={SF,FRW,MP,MV,TV,PTB,RR,PRD,LEAK,FLG,SNORE}; int ss=sizeof(graphs)/sizeof(gGraphWindow *); for (int i=0;iLinkZoom(graphs[j]); } } AddGraph(PULSE); // AddGraph(SPO2); gSplitter->refresh(); gSplitter->setChildrenCollapsible(true); // We set this per widget.. gSplitter->setCollapsible(gSplitter->indexOf(SF),false); gSplitter->setStretchFactor(gSplitter->indexOf(SF),0); ui->graphSizer->layout(); QTextCharFormat format = ui->calendar->weekdayTextFormat(Qt::Saturday); format.setForeground(QBrush(Qt::black, Qt::SolidPattern)); ui->calendar->setWeekdayTextFormat(Qt::Saturday, format); ui->calendar->setWeekdayTextFormat(Qt::Sunday, format); ui->tabWidget->setCurrentWidget(ui->details); } Daily::~Daily() { // Save any last minute changes.. if (previous_date.isValid()) Unload(previous_date); delete gSplitter; delete ui; } void Daily::AddGraph(gGraphWindow *w) { Graphs.push_back(w); gSplitter->addWidget(w); w->SetSplitter(gSplitter); } void Daily::ReloadGraphs() { QDate d=profile->LastDay(); if (!d.isValid()) { d=ui->calendar->selectedDate(); } on_calendar_currentPageChanged(d.year(),d.month()); ui->calendar->setSelectedDate(d); Load(d); } void Daily::on_calendar_currentPageChanged(int year, int month) { QDate d(year,month,1); int dom=d.daysInMonth(); for (int i=1;i<=dom;i++) { d=QDate(year,month,i); this->UpdateCalendarDay(d); } } void Daily::UpdateEventsTree(QTreeWidget *tree,Day *day) { tree->clear(); if (!day) return; //return; tree->setColumnCount(1); // 1 visible common.. (1 hidden) QTreeWidgetItem *root=NULL;//new QTreeWidgetItem((QTreeWidget *)0,QStringList("Stuff")); map mcroot; map mccnt; int total_events=0; for (vector::iterator s=day->begin();s!=day->end();s++) { map >::iterator m; //QTreeWidgetItem * sroot; for (m=(*s)->eventlist.begin();m!=(*s)->eventlist.end();m++) { MachineCode code=m->first; if ((code!=CPAP_Obstructive) && (code!=CPAP_Hypopnea) && (code!=CPAP_Apnea) && (code!=CPAP_ClearAirway) && (code!=CPAP_CSR) && (code!=CPAP_RERA) && (code!=CPAP_FlowLimit) && (code!=PRS1_PressurePulse) && (code!=CPAP_VSnore)) continue; QTreeWidgetItem *mcr; if (mcroot.find(code)==mcroot.end()) { int cnt=day->count(code); total_events+=cnt; QString st=DefaultMCLongNames[m->first]; if (st.isEmpty()) { st="Fixme "+QString::number((int)code); } st+=" ("+QString::number(cnt)+")"; QStringList l(st); l.append(""); mcroot[code]=mcr=new QTreeWidgetItem(root,l); mccnt[code]=0; } else { mcr=mcroot[code]; } for (unsigned z=0;zsecond.size();z++) { for (int o=0;osecond[z]->count();o++) { qint64 t=m->second[z]->time(o); if (code==CPAP_CSR) { t-=(m->second[z]->data(o)/2)*1000; } QStringList a; QDateTime d=QDateTime::fromMSecsSinceEpoch(t); QString s=QString("#%1: %2").arg((int)mccnt[code],(int)3,(int)10,QChar('0')).arg(d.toString("HH:mm:ss")); a.append(s); a.append(d.toString("yyyy-MM-dd HH:mm:ss")); mcr->addChild(new QTreeWidgetItem(a)); } } } } int cnt=0; for (map::iterator m=mcroot.begin();m!=mcroot.end();m++) { tree->insertTopLevelItem(cnt++,m->second); } //tree->insertTopLevelItem(cnt++,new QTreeWidgetItem(QStringList("[Total Events ("+QString::number(total_events)+")]"))); tree->sortByColumn(0,Qt::AscendingOrder); //tree->expandAll(); } void Daily::UpdateCalendarDay(QDate date) { QTextCharFormat bold; QTextCharFormat cpapcol; QTextCharFormat normal; QTextCharFormat oxiday; bold.setFontWeight(QFont::Bold); cpapcol.setForeground(QBrush(Qt::blue, Qt::SolidPattern)); cpapcol.setFontWeight(QFont::Bold); oxiday.setForeground(QBrush(Qt::red, Qt::SolidPattern)); oxiday.setFontWeight(QFont::Bold); bool hascpap=profile->GetDay(date,MT_CPAP)!=NULL; bool hasoxi=profile->GetDay(date,MT_OXIMETER)!=NULL; if (hascpap) { if (hasoxi) { ui->calendar->setDateTextFormat(date,oxiday); } else { ui->calendar->setDateTextFormat(date,cpapcol); } } else if (profile->GetDay(date)) { ui->calendar->setDateTextFormat(date,bold); } else { ui->calendar->setDateTextFormat(date,normal); } ui->calendar->setHorizontalHeaderFormat(QCalendarWidget::ShortDayNames); } void Daily::on_calendar_selectionChanged() { if (previous_date.isValid()) Unload(previous_date); Load(ui->calendar->selectedDate()); } void Daily::Load(QDate date) { static Day * lastcpapday=NULL; previous_date=date; Day *cpap=profile->GetDay(date,MT_CPAP); Day *oxi=profile->GetDay(date,MT_OXIMETER); // Day *sleepstage=profile->GetDay(date,MT_SLEEPSTAGE); if (lastcpapday && (lastcpapday!=cpap)) { for (vector::iterator s=lastcpapday->begin();s!=lastcpapday->end();s++) { (*s)->TrashEvents(); } } lastcpapday=cpap; QString html="" "" "" "\n"; QString tmp; const int gwwidth=240; const int gwheight=25; UpdateOXIGraphs(oxi); UpdateCPAPGraphs(cpap); UpdateEventsTree(ui->treeWidget,cpap); for (unsigned i=0;iisEmpty()) { Graphs[i]->hide(); } else { Graphs[i]->show(); } } if (!cpap && !oxi) { NoData->setText(tr("No data for ")+date.toString(Qt::SystemLocaleLongDate)); NoData->show(); SF->hide(); } else { NoData->hide(); SF->show(); } gSplitter->layout(); gSplitter->update(); RedrawGraphs(); QString epr,modestr; float iap90,eap90; CPAPMode mode=MODE_UNKNOWN; PRTypes pr; QString a; if (cpap) { mode=(CPAPMode)cpap->summary_max(CPAP_Mode); pr=(PRTypes)cpap->summary_max(CPAP_PressureReliefType); if (pr==PR_NONE) epr=tr(" No Pressure Relief"); else { epr=PressureReliefNames[pr]+QString(" x%1").arg((int)cpap->summary_max(CPAP_PressureReliefSetting)); } modestr=CPAPModeNames[mode]; float ahi=(cpap->count(CPAP_Obstructive)+cpap->count(CPAP_Hypopnea)+cpap->count(CPAP_ClearAirway))/cpap->hours(); float csr=(100.0/cpap->hours())*(cpap->sum(CPAP_CSR)/3600.0); float oai=cpap->count(CPAP_Obstructive)/cpap->hours(); float hi=cpap->count(CPAP_Hypopnea)/cpap->hours(); float cai=cpap->count(CPAP_ClearAirway)/cpap->hours(); float rei=cpap->count(CPAP_RERA)/cpap->hours(); float vsi=cpap->count(CPAP_VSnore)/cpap->hours(); float fli=cpap->count(CPAP_FlowLimit)/cpap->hours(); float p90=cpap->percentile(CPAP_Pressure,0.9); eap90=cpap->percentile(CPAP_EAP,0.9); iap90=cpap->percentile(CPAP_IAP,0.9); QString submodel=tr("Unknown Model"); //html+="\n"; if (cpap->machine->properties.find("SubModel")!=cpap->machine->properties.end()) submodel="
"+cpap->machine->properties["SubModel"]; html+="\n"; if (pref.Exists("ShowSerialNumbers") && pref["ShowSerialNumbers"].toBool()) { html+="\n"; } html+=""; int tt=cpap->total_time()/1000; QDateTime date=QDateTime::fromMSecsSinceEpoch(cpap->first()); QDateTime date2=QDateTime::fromMSecsSinceEpoch(cpap->last()); html+=QString("\n" "\n") .arg(date.date().toString(Qt::SystemLocaleShortDate)) .arg(date.toString("HH:mm")) .arg(date2.toString("HH:mm")) .arg(QString().sprintf("%02i:%02i",tt/3600,tt%60)); QString cs; if (cpap->machine->GetClass()!="PRS1") { cs="4 align=center>"; } else cs="2>"; html+="\n" "\n" "\n" "\n" "
"+tr("Machine Information")+"
"+cpap->machine->properties["Brand"]+"
"+cpap->machine->properties["Model"]+" "+cpap->machine->properties["ModelNumber"]+submodel+"
"+cpap->machine->properties["Serial"]+"
Date"+tr("Sleep")+""+tr("Wake")+""+tr("Hours")+"
%1%2%3%4

" "
"+tr("AHI")+""+QString().sprintf("%.2f",ahi)+"
"+tr("Hypopnea")+""+QString().sprintf("%.2f",hi)+"
"+tr("Obstructive")+""+QString().sprintf("%.2f",oai)+"
"+tr("ClearAirway")+""+QString().sprintf("%.2f",cai)+"
"; if (cpap->machine->GetClass()=="PRS1") { html+="" "\n" "\n" "\n" "\n" "
"+tr("RERA")+""+QString().sprintf("%.2f",rei)+"
"+tr("FlowLimit")+""+a.sprintf("%.2f",fli)+"
"+tr("Vsnore")+""+QString().sprintf("%.2f",vsi)+"
"+tr("PB/CSR")+""+QString().sprintf("%.2f",csr)+"%
"; } html+="\n"+tr("Event Breakdown")+"\n"; if (1) { /* G_AHI->setFixedSize(gwwidth,gwheight); QPixmap pixmap=G_AHI->renderPixmap(120,120,false); //gwwidth,gwheight,false); QByteArray byteArray; QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray buffer.open(QIODevice::WriteOnly); pixmap.save(&buffer, "PNG"); html += "\n"; */ } html+="" "\n" "\n"; if (mode==MODE_BIPAP) { html+="\n" "\n"; } else if (mode==MODE_APAP) { html+=("\n"); //cpap->summary_weighted_avg(CPAP_PressurePercentValue) } else if (mode==MODE_CPAP) { html+=("\n"); } //html+=("\n"); html+=(""); if (mode==MODE_APAP) { html+=""); // html+=wxT("\n"); } else if (mode==MODE_BIPAP) { html+=(""); html+=(""); html+=(""); } html+=""); html+=""); /*FRW->show(); PRD->show(); LEAK->show(); SF->show(); SNORE->show(); MP->show(); */ } else { html+=""; html+="\n"; //TAP_EAP->Show(false); //TAP_IAP->Show(false); //G_AHI->Show(false); /*FRW->hide(); PRD->hide(); LEAK->hide(); SF->hide(); SNORE->hide(); MP->hide(); */ } // Instead of doing this, check whether any data exists.. // and show based on this factor. bool merge_oxi_graphs=true; if (!merge_oxi_graphs) { //spo2->isEmpty() ? SPO2->hide() : SPO2->show(); //pulse->isEmpty() ? PULSE->hide() : PULSE->show(); } else { //pulse->isEmpty() && spo2->isEmpty() ? PULSE->hide() : PULSE->show(); } if (oxi) { html+=""; html+=""; //html+=wxT("\n"); //PULSE->show(); //SPO2->show(); } else { //PULSE->hide(); //SPO2->hide(); } if (cpap) { if (mode==MODE_BIPAP) { } else if (mode==MODE_APAP) { html+=("\n"); /* TAP->setFixedSize(gwwidth,gwheight); QPixmap pixmap=TAP->renderPixmap(gwwidth,gwheight,false); QByteArray byteArray; QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray buffer.open(QIODevice::WriteOnly); pixmap.save(&buffer, "PNG"); html+="\n"; */ } html+="

"+tr("90% EPAP ")+QString().sprintf("%.2f",eap90)+tr("cmH2O")+"
"+tr("90% IPAP ")+QString().sprintf("%.2f",iap90)+tr("cmH2O")+"
")+tr("90% Pressure ")+QString().sprintf("%.2f",p90)+("
")+tr("Pressure ")+QString().sprintf("%.2f",cpap->summary_min(CPAP_PressureMin))+("
 
MinAvgMax
"+tr("Pressure:")+""+a.sprintf("%.2f",cpap->summary_min(CPAP_PressureMinAchieved)); html+=(" ")+a.sprintf("%.2f",cpap->summary_weighted_avg(CPAP_PressureAverage)); html+=("")+a.sprintf("%.2f",cpap->summary_max(CPAP_PressureMaxAchieved))+("
")+_("90% Pressure")+wxT("")+wxString::Format(wxT("%.1fcmH2O"),p90)+wxT("
"+tr("EPAP:")+"")+a.sprintf("%.2f",cpap->summary_min(BIPAP_EAPMin)); html+=(" ")+a.sprintf("%.2f",cpap->summary_weighted_avg(BIPAP_EAPAverage)); html+=("")+a.sprintf("%.2f",cpap->summary_max(BIPAP_EAPMax))+("
"+tr("IPAP:")+"")+a.sprintf("%.2f",cpap->summary_min(BIPAP_IAPMin)); html+=("")+a.sprintf("%.2f",cpap->summary_weighted_avg(BIPAP_IAPAverage)); html+=("")+a.sprintf("%.2f",cpap->summary_max(BIPAP_IAPMax))+("
"+tr("PS:")+"")+a.sprintf("%.2f",cpap->summary_min(BIPAP_PSMin)); html+=("")+a.sprintf("%.2f",cpap->summary_weighted_avg(BIPAP_PSAverage)); html+=("")+a.sprintf("%.2f",cpap->summary_max(BIPAP_PSMax))+("
"+tr("Leak:"); html+=""+a.sprintf("%.2f",cpap->summary_min(CPAP_LeakMinimum)); html+=""+a.sprintf("%.2f",cpap->summary_weighted_avg(CPAP_LeakAverage)); html+=""+a.sprintf("%.2f",cpap->summary_max(CPAP_LeakMaximum))+("
"+tr("Snore:"); html+=""+a.sprintf("%.2f",cpap->summary_min(CPAP_SnoreMinimum)); html+=""+a.sprintf("%.2f",cpap->summary_avg(CPAP_SnoreAverage)); html+=""+a.sprintf("%.2f",cpap->summary_max(CPAP_SnoreMaximum))+("
"+tr("No CPAP data available")+"
 
"+tr("Pulse:"); html+=""+a.sprintf("%.2fbpm",oxi->summary_min(OXI_PulseMin)); html+=""+a.sprintf("%.2fbpm",oxi->summary_avg(OXI_PulseAverage)); html+=""+a.sprintf("%.2fbpm",oxi->summary_max(OXI_PulseMax))+"
"+tr("SpO2:"); html+=""+a.sprintf("%.2f%%",oxi->summary_min(OXI_SPO2Min)); html+=""+a.sprintf("%.2f%%",oxi->summary_avg(OXI_SPO2Average)); html+=""+a.sprintf("%.2f%%",oxi->summary_max(OXI_SPO2Max))+"
 
")+tr("Time@Pressure")+("

"; html+=""; QDateTime fd,ld; bool corrupted_waveform=false; for (vector::iterator s=cpap->begin();s!=cpap->end();s++) { fd=QDateTime::fromMSecsSinceEpoch((*s)->first()); ld=QDateTime::fromMSecsSinceEpoch((*s)->last()); if (((*s)->summary.find(CPAP_BrokenWaveform)!=(*s)->summary.end()) && (*s)->summary[CPAP_BrokenWaveform].toBool()) corrupted_waveform=true; tmp.sprintf(("").toLatin1(),(*s)->session()); html+=tmp; } html+="
SessionIDDateStartEnd
%08i"+fd.date().toString(Qt::SystemLocaleShortDate)+""+fd.toString("HH:mm ")+""+ld.toString("HH:mm")+"
"; if (corrupted_waveform) { html+="
One or more waveform record for this session had faulty source data. Some waveform overlay points may not match up correctly.
"; } } html+=""; ui->webView->setHtml(html); ui->JournalNotes->clear(); Session *journal=GetJournalSession(date); if (journal) { ui->JournalNotes->setHtml(journal->summary[GEN_Notes].toString()); } } void Daily::Unload(QDate date) { Session *journal=GetJournalSession(date); if (!ui->JournalNotes->toPlainText().isEmpty()) { QString jhtml=ui->JournalNotes->toHtml(); if (journal) { if (journal->summary[GEN_Notes]!=jhtml) { journal->summary[GEN_Notes]=jhtml; journal->SetChanged(true); } } else { journal=CreateJournalSession(date); journal->summary[GEN_Notes]=jhtml; journal->SetChanged(true); } } if (journal) { Machine *jm=profile->GetMachine(MT_JOURNAL); if (jm) jm->SaveSession(journal); } UpdateCalendarDay(date); } void Daily::on_JournalNotesItalic_clicked() { QTextCursor cursor = ui->JournalNotes->textCursor(); if (!cursor.hasSelection()) cursor.select(QTextCursor::WordUnderCursor); QTextCharFormat format=cursor.charFormat(); format.setFontItalic(!format.fontItalic()); cursor.mergeCharFormat(format); //ui->JournalNotes->mergeCurrentCharFormat(format); } void Daily::on_JournalNotesBold_clicked() { QTextCursor cursor = ui->JournalNotes->textCursor(); if (!cursor.hasSelection()) cursor.select(QTextCursor::WordUnderCursor); QTextCharFormat format=cursor.charFormat(); int fw=format.fontWeight(); if (fw!=QFont::Bold) format.setFontWeight(QFont::Bold); else format.setFontWeight(QFont::Normal); cursor.mergeCharFormat(format); //ui->JournalNotes->mergeCurrentCharFormat(format); } void Daily::on_JournalNotesFontsize_activated(int index) { QTextCursor cursor = ui->JournalNotes->textCursor(); if (!cursor.hasSelection()) cursor.select(QTextCursor::WordUnderCursor); QTextCharFormat format=cursor.charFormat(); QFont font=format.font(); int fontsize=10; if (index==1) fontsize=15; else if (index==2) fontsize=25; font.setPointSize(fontsize); format.setFont(font); cursor.mergeCharFormat(format); } void Daily::on_JournalNotesColour_clicked() { QColor col=QColorDialog::getColor(Qt::black,this,tr("Pick a Colour")); //,QColorDialog::NoButtons); if (!col.isValid()) return; QTextCursor cursor = ui->JournalNotes->textCursor(); if (!cursor.hasSelection()) cursor.select(QTextCursor::WordUnderCursor); QBrush b(col); QPalette newPalette = palette(); newPalette.setColor(QPalette::ButtonText, col); ui->JournalNotesColour->setPalette(newPalette); QTextCharFormat format=cursor.charFormat(); format.setForeground(b); cursor.setCharFormat(format); } Session * Daily::CreateJournalSession(QDate date) { Machine *m=profile->GetMachine(MT_JOURNAL); if (!m) { m=new Machine(profile,0); m->SetClass("Journal"); m->properties["Brand"]="Virtual"; m->SetType(MT_JOURNAL); profile->AddMachine(m); } Session *sess=new Session(m,0); QDateTime dt; dt.setDate(date); dt.setTime(QTime(17,0)); //5pm to make sure it goes in the right day sess->set_first(dt.toMSecsSinceEpoch()); dt=dt.addSecs(3600); sess->set_last(dt.toMSecsSinceEpoch()); sess->SetChanged(true); m->AddSession(sess,profile); return sess; } Session * Daily::GetJournalSession(QDate date) // Get the first journal session { Day *journal=profile->GetDay(date,MT_JOURNAL); if (!journal) return NULL; //CreateJournalSession(date); vector::iterator s; s=journal->begin(); if (s!=journal->end()) return *s; return NULL; } void Daily::on_EnergySlider_sliderMoved(int position) { Session *s=GetJournalSession(previous_date); if (!s) s=CreateJournalSession(previous_date); s->summary[GEN_Energy]=position; s->SetChanged(true); } void Daily::UpdateCPAPGraphs(Day *day) { //if (!day) return; if (day) { day->OpenEvents(); } for (list::iterator g=CPAPData.begin();g!=CPAPData.end();g++) { (*g)->SetDay(day); } }; void Daily::UpdateOXIGraphs(Day *day) { //if (!day) return; if (day) { day->OpenEvents(); } for (list::iterator g=OXIData.begin();g!=OXIData.end();g++) { (*g)->SetDay(day); } } void Daily::RedrawGraphs() { for (unsigned i=0;iResetBounds(); Graphs[i]->updateGL(); } } void Daily::on_treeWidget_itemSelectionChanged() { if (ui->treeWidget->selectedItems().size()==0) return; QTreeWidgetItem *item=ui->treeWidget->selectedItems().at(0); if (!item) return; QDateTime d; if (!item->text(1).isEmpty()) { d=d.fromString(item->text(1),"yyyy-MM-dd HH:mm:ss"); double st=(d.addSecs(-180)).toMSecsSinceEpoch(); double et=(d.addSecs(180)).toMSecsSinceEpoch(); FRW->SetXBounds(st,et); MP->SetXBounds(st,et); SF->SetXBounds(st,et); PRD->SetXBounds(st,et); LEAK->SetXBounds(st,et); SNORE->SetXBounds(st,et); MV->SetXBounds(st,et); TV->SetXBounds(st,et); RR->SetXBounds(st,et); FLG->SetXBounds(st,et); } } void Daily::on_JournalNotesUnderline_clicked() { QTextCursor cursor = ui->JournalNotes->textCursor(); if (!cursor.hasSelection()) cursor.select(QTextCursor::WordUnderCursor); QTextCharFormat format=cursor.charFormat(); format.setFontUnderline(!format.fontUnderline()); cursor.mergeCharFormat(format); //ui->JournalNotes->mergeCurrentCharFormat(format); } /*AHIGraph::AHIGraph(QObject * parent) { } AHIGraph::~AHIGraph() { } QObject * AHIGraph::create(const QString & mimeType, const QUrl & url, const QStringList & argumentNames, const QStringList & argumentValues) const { gGraphWindow * ahi; ahi=new gGraphWindow(NULL,"",(QGLWidget *)NULL); ahi->SetMargins(0,0,0,0); gPointData *g_ahi=new AHIData(); //gCandleStick *l=new gCandleStick(g_ahi); gPieChart *l=new gPieChart(g_ahi); l->AddName(tr("H")); l->AddName(tr("OA")); l->AddName(tr("CA")); l->AddName(tr("RE")); l->AddName(tr("FL")); l->AddName(tr("CSR")); l->color.clear(); l->color.push_back(QColor("blue")); l->color.push_back(QColor(0x40,0xaf,0xbf,0xff)); //#40afbf l->color.push_back(QColor(0xb2,0x54,0xcd,0xff)); //b254cd; //wxPURPLE); l->color.push_back(QColor("yellow")); l->color.push_back(QColor(0x40,0x40,0x40,255)); l->color.push_back(QColor(0x60,0xff,0x60,0xff)); //80ff80 return ahi; } QList AHIGraph::plugins() const { QWebPluginFactory::MimeType mimeType; mimeType.name = "text/csv"; mimeType.description = "Comma-separated values"; mimeType.fileExtensions = QStringList() << "csv"; QWebPluginFactory::Plugin plugin; plugin.name = "Pie Chart"; plugin.description = "A Pie Chart Web plugin."; plugin.mimeTypes = QList() << mimeType; return QList() << plugin; } */