/*************************************************************** * Name: SleepyHeadMain.cpp * Purpose: Code for Application Frame * Author: Mark Watkins (jedimark64@users.sourceforge.net) * Created: 2011-05-20 * Copyright: Mark Watkins (http://sourceforge.net/projects/sleepyhead/) * License: GPL **************************************************************/ #ifdef WX_PRECOMP #include "wx_pch.h" #endif #ifdef __BORLANDC__ #pragma hdrstop #endif //__BORLANDC__ #include "version.h" #include #include #include #include #include #include #include #include #include "SleepyHeadMain.h" #include "sleeplib/profiles.h" //#include "graphs/sleepflagsgraph.h" //#include "graphs/cpap_wavegraph.h" #if defined(__WXMSW__) extern "C" void *_GdipStringFormatCachedGenericTypographic = NULL; #endif wxProgressDialog *loader_progress; //helper functions enum wxbuildinfoformat { short_f, long_f }; wxString wxbuildinfo(wxbuildinfoformat format) { wxString wxbuild(wxVERSION_STRING); if (format == long_f ) { #if defined(__WXMSW__) wxbuild << _T("-Windows"); #elif defined(__WXMAC__) wxbuild << _T("-Mac"); #elif defined(__UNIX__) wxbuild << _T("-Linux"); #endif #if wxUSE_UNICODE wxbuild << _T("-Unicode build"); #else wxbuild << _T("-ANSI build"); #endif // wxUSE_UNICODE } return wxbuild; } void SleepyHeadFrame::DoScreenshot( wxCommandEvent &event ) { wxRect r=GetRect(); #if defined(__UNIX__) int cx, cy; ClientToScreen(&cx,&cy); /*int border_width = cx - r.x; int title_bar_height = cy - r.y; r.width += (border_width * 2); r.height += title_bar_height + border_width; */ #endif int x=r.x; int y=r.y; int w=r.width; int h=r.height; wxScreenDC sdc; wxMemoryDC mdc; wxBitmap bmp(r.width, r.height,-1); //wxBitMap *bmp=wxEmptyImage(r.width,r.height); mdc.SelectObject(bmp); mdc.Blit((wxCoord)0, (wxCoord)0, (wxCoord)r.width, (wxCoord)r.height, &sdc, (wxCoord)r.x, (wxCoord)r.y); mdc.SelectObject(wxNullBitmap); wxString fileName = wxT("myImage.png"); wxImage img=bmp.ConvertToImage(); if (!img.SaveFile(fileName, wxBITMAP_TYPE_PNG)) { wxLogError(wxT("Couldn't save screenshot ")+fileName); } } SleepyHeadFrame::SleepyHeadFrame(wxFrame *frame) : GUIFrame(frame) { wxInitAllImageHandlers(); loader_progress=new wxProgressDialog(wxT("SleepyHead"),wxT("Please Wait..."),100,this, wxPD_APP_MODAL|wxPD_AUTO_HIDE|wxPD_SMOOTH); loader_progress->Hide(); wxString title=wxTheApp->GetAppName()+wxT(" v")+wxString(AutoVersion::FULLVERSION_STRING,wxConvUTF8); SetTitle(title); //wxDisableAsserts(); // Create AUINotebook Tabs wxCommandEvent dummy; OnViewMenuSummary(dummy); // Summary Page OnViewMenuDaily(dummy); // Daily Page this->Connect(wxID_ANY, wxEVT_DO_SCREENSHOT, wxCommandEventHandler(SleepyHeadFrame::DoScreenshot)); //this->Connect(wxID_ANY, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(SleepyHeadFrame::DoScreenshot)); #if wxUSE_STATUSBAR //statusBar->SetStatusText(_("Hello!"), 0); statusBar->SetStatusText(wxbuildinfo(long_f), 1); #endif } SleepyHeadFrame::~SleepyHeadFrame() { if (loader_progress) { loader_progress->Hide(); loader_progress->Destroy(); delete loader_progress; } } void SleepyHeadFrame::OnClose(wxCloseEvent &event) { Destroy(); } void SleepyHeadFrame::OnQuit(wxCommandEvent &event) { Destroy(); } void SleepyHeadFrame::OnScreenshot(wxCommandEvent& event) { ToolsMenu->UpdateUI(); //wxWindow::DoUpdateWindowUI(); wxWindow::UpdateWindowUI(); //Refresh(true); // Make sure the menu is closed.. (It pushes the Update event in front of the manual event we push next) // Update(true); wxCommandEvent MyEvent( wxEVT_DO_SCREENSHOT); wxPostEvent(this, MyEvent); } void SleepyHeadFrame::OnAbout(wxCommandEvent &event) { wxString msg = wxbuildinfo(long_f); msg=wxTheApp->GetAppName()+wxT(" v")+wxString(AutoVersion::FULLVERSION_STRING,wxConvUTF8)+wxT("\nAuthors: Mark Watkins / Troy Schultz\nThis is alpha software is guaranteed to break regularly!\nUse at your own risk."); //,AutoVersion::DATE,AutoVersion::MONTH,AutoVersion::YEAR wxMessageBox(msg, _("Welcome to..."),0,this); } void SleepyHeadFrame::OnImportSD(wxCommandEvent &event) { wxDirDialog dd(this,_("Choose a Directory")); //,wxT(""),wxT(""),style=wxFD_OPEN); if (dd.ShowModal()==wxID_OK) { wxString path=dd.GetPath(); Profile *p=Profiles::Get(); loader_progress->Update(0); loader_progress->Show(); if (p) p->Import(path); loader_progress->Show(false); } int idx=main_auinotebook->GetPageIndex(daily); if (idx!=wxNOT_FOUND) { daily->RefreshData(); } idx=main_auinotebook->GetPageIndex(summary); if (idx!=wxNOT_FOUND) { summary->RefreshData(); } summary->Refresh(); daily->Refresh(); Refresh(); } void SleepyHeadFrame::OnViewMenuDaily( wxCommandEvent& event ) { int idx=main_auinotebook->GetPageIndex(daily); if (idx==wxNOT_FOUND) { daily=new Daily(this); main_auinotebook->AddPage(daily,_("Daily"),true); } else { main_auinotebook->SetSelection(idx); } } void SleepyHeadFrame::OnViewMenuSummary( wxCommandEvent& event ) { int idx=main_auinotebook->GetPageIndex(summary); if (idx==wxNOT_FOUND) { summary=new Summary(this); main_auinotebook->AddPage(summary,_("Summary"),true); } else { main_auinotebook->SetSelection(idx); } } Summary::Summary(wxWindow *win) :SummaryPanel(win) { const int days_shown=90; machine=NULL; AddData(ahidata=new HistoryData(machine,days_shown)); AHI=new gGraphWindow(ScrolledWindow,-1,wxT("AHI"),wxPoint(0,0), wxSize(400,200), wxNO_BORDER); AHI->SetMargins(10,15,60,80); AHI->AddLayer(new gBarChart(ahidata,wxRED)); fgSizer->Add(AHI,1,wxEXPAND); AddData(pressure=new HistoryCodeData(machine,CPAP_PressureAverage,days_shown)); PRESSURE=new gGraphWindow(ScrolledWindow,-1,wxT("Pressure"),wxPoint(0,0), wxSize(400,200), wxNO_BORDER); PRESSURE->SetMargins(10,15,60,80); PRESSURE->AddLayer(new gBarChart(pressure,wxBLUE)); fgSizer->Add(PRESSURE,1,wxEXPAND); AddData(leak=new HistoryCodeData(machine,CPAP_LeakAverage,days_shown)); LEAK=new gGraphWindow(ScrolledWindow,-1,wxT("Mask Leak"),wxPoint(0,0), wxSize(400,200), wxNO_BORDER); LEAK->SetMargins(10,15,60,80); LEAK->AddLayer(new gBarChart(leak,wxYELLOW)); fgSizer->Add(LEAK,1,wxEXPAND); AddData(usage=new UsageHistoryData(machine,days_shown,UHD_Hours)); AddData(waketime=new UsageHistoryData(machine,days_shown,UHD_Waketime)); AddData(bedtime=new UsageHistoryData(machine,days_shown,UHD_Bedtime)); USAGE=new gGraphWindow(ScrolledWindow,-1,wxT("Usage"),wxPoint(0,0), wxSize(400,200), wxNO_BORDER); USAGE->SetMargins(10,15,60,80); USAGE->AddLayer(new gBarChart(usage,wxGREEN)); fgSizer->Add(USAGE,1,wxEXPAND); RefreshData(); } Summary::~Summary() { } void Summary::RefreshData() { if (!machine) { Profile *p=Profiles::Get(); vectorvm=p->GetMachines(MT_CPAP); if (vm.size()>=1) { machine=vm[0]; } else machine=NULL; for (auto h=Data.begin();h!=Data.end();h++) { (*h)->SetMachine(machine); } } for (auto h=Data.begin();h!=Data.end();h++) { (*h)->Update(); } wxString submodel=_("Unknown Model"); double ahi=ahidata->GetAverage(); double avp=pressure->GetAverage(); double bt=fmod(bedtime->GetAverage(),12.0); double ua=usage->GetAverage(); double wt=fmod(bt+ua,12.0); wxString html=wxT("\n"); if (machine) { html=html+wxT("\n"); if (machine->properties.find(wxT("SubModel"))!=machine->properties.end()) submodel=wxT("
\n ")+machine->properties[wxT("SubModel")]; html=html+wxT("\n"); html=html+wxT(""); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("
")+_("Machine Information")+wxT("
")+machine->properties[wxT("Brand")]+wxT("
")+machine->properties[wxT("Model")]+wxT(" ")+machine->properties[wxT("ModelNumber")]+submodel+wxT("
")+_("Firmware")+wxT(" ")+machine->properties[wxT("SoftwareVersion")]+wxT("
  
")+_("Indice Averages")+wxT("
")+_("AHI")+wxT("")+wxString::Format(wxT("%0.2f"),ahi)+wxT("
")+_("Pressure")+wxT("")+wxString::Format(wxT("%0.2fcmH2O"),avp)+wxT("
")+_("Mask Leaks")+wxT("")+wxString::Format(wxT("%0.2f"),leak->GetAverage())+wxT("
  
")+_("Bedtime")+wxT("")+wxString::Format(wxT("%02.0f:%02i"),bt,int(bt*60) % 60)+wxT("
")+_("Waketime")+wxT("")+wxString::Format(wxT("%02.0f:%02i"),wt,int(wt*60) % 60)+wxT("
")+_("Hours/Night")+wxT("")+wxString::Format(wxT("%02.0f:%02i"),ua,int(ua*60)%60)+wxT("
"); } else { html=html+_("Please import some data."); } html+=wxT(""); HTMLInfo->SetPage(html); } Daily::Daily(wxWindow *win) :DailyPanel(win) { Profile *p=Profiles::Get(); vectorvm=p->GetMachines(MT_CPAP); wxString s; if (vm.size()>=1) { machine=vm[0]; } else machine=NULL; TAP=new gGraphWindow(ScrolledWindow,-1,wxT("Time@Pressure"),wxPoint(0,0), wxSize(600,50), wxNO_BORDER); TAP->SetMargins(20,15,5,50); AddData(tap=new TAPData()); TAP->AddLayer(new gCandleStick(tap)); G_AHI=new gGraphWindow(ScrolledWindow,-1,wxT("Event Breakdown"),wxPoint(0,0), wxSize(600,50), wxNO_BORDER); G_AHI->SetMargins(20,15,5,50); AddData(g_ahi=new AHIData()); gCandleStick *l=new gCandleStick(g_ahi); l->AddName(wxT("H")); l->AddName(wxT("OA")); l->AddName(wxT("CA")); l->AddName(wxT("RE")); l->AddName(wxT("FL")); l->AddName(wxT("CSR")); l->color.clear(); l->color.push_back(wxBLUE); l->color.push_back(wxAQUA); l->color.push_back(wxPURPLE); l->color.push_back(wxYELLOW); l->color.push_back(wxBLACK); l->color.push_back(wxGREEN2); G_AHI->AddLayer(l); AddData(leakdata=new PressureData(CPAP_Leak,0)); LEAK=new gGraphWindow(ScrolledWindow,-1,wxT("Mask Leaks"),wxPoint(0,0), wxSize(600,150), wxNO_BORDER); LEAK->AddLayer(new gLineChart(leakdata,wxPURPLE,4096,false)); AddData(pressure_iap=new PressureData(CPAP_IAP)); AddData(pressure_eap=new PressureData(CPAP_EAP)); AddData(prd=new PressureData(CPAP_Pressure)); PRD=new gGraphWindow(ScrolledWindow,-1,wxT("Pressure"),wxPoint(0,0), wxSize(600,150), wxNO_BORDER); PRD->AddLayer(new gLineChart(prd,wxDARK_GREEN,4096,false)); PRD->AddLayer(new gLineChart(pressure_iap,wxBLUE,4096,false)); PRD->AddLayer(new gLineChart(pressure_eap,wxRED,4096,false)); AddData(frw=new FlowData()); FRW=new gGraphWindow(ScrolledWindow,-1,wxT("Flow Rate"),wxPoint(0,0), wxSize(600,150), wxNO_BORDER); AddData(flags[0]=new FlagData(CPAP_CSR,7,1,0)); AddData(flags[1]=new FlagData(CPAP_ClearAirway,6)); AddData(flags[2]=new FlagData(CPAP_Obstructive,5)); AddData(flags[3]=new FlagData(CPAP_Hypopnea,4)); AddData(flags[4]=new FlagData(CPAP_FlowLimit,3)); AddData(flags[5]=new FlagData(CPAP_VSnore,2)); AddData(flags[6]=new FlagData(CPAP_RERA,1)); AddData(flags[7]=new FlagData(PRS1_PressurePulse,1)); AddData(flags[8]=new FlagData(PRS1_VSnore2,1)); AddData(flags[9]=new FlagData(PRS1_Unknown0E,1)); FRW->AddLayer(new gLineChart(frw,wxBLACK,200000,true)); FRW->AddLayer(new gLineOverlayBar(flags[7],wxRED,wxT("PR"),LOT_Dot)); FRW->AddLayer(new gLineOverlayBar(flags[6],wxYELLOW,wxT("RE"))); FRW->AddLayer(new gLineOverlayBar(flags[9],wxDARK_GREEN,wxT("U0E"))); FRW->AddLayer(new gLineOverlayBar(flags[5],wxRED,wxT("VS"))); FRW->AddLayer(new gLineOverlayBar(flags[4],wxBLACK,wxT("FL"))); FRW->AddLayer(new gLineOverlayBar(flags[3],wxBLUE,wxT("H"))); FRW->AddLayer(new gLineOverlayBar(flags[2],wxAQUA,wxT("OA"))); FRW->AddLayer(new gLineOverlayBar(flags[1],wxPURPLE,wxT("CA"))); FRW->AddLayer(new gLineOverlayBar(flags[0],wxGREEN2,wxT("CSR"))); SF=new gGraphWindow(ScrolledWindow,-1,wxT("Sleep Flags"),wxPoint(0,0), wxSize(600,150), wxNO_BORDER); SF->SetMargins(10,15,20,80); SF->LinkZoom(FRW); //SF->LinkZoom(PRD); // Uncomment to link in more graphs //SF->LinkZoom(LEAK); const int sfc=9; SF->AddLayer(new gFlagsLine(flags[9],wxDARK_GREEN,wxT("U0E"),8,sfc)); SF->AddLayer(new gFlagsLine(flags[8],wxRED,wxT("VS2"),6,sfc)); SF->AddLayer(new gFlagsLine(flags[6],wxYELLOW,wxT("RE"),7,sfc)); SF->AddLayer(new gFlagsLine(flags[5],wxRED,wxT("VS"),5,sfc)); SF->AddLayer(new gFlagsLine(flags[4],wxBLACK,wxT("FL"),4,sfc)); SF->AddLayer(new gFlagsLine(flags[3],wxBLUE,wxT("H"),3,sfc)); SF->AddLayer(new gFlagsLine(flags[2],wxAQUA,wxT("OA"),2,sfc)); SF->AddLayer(new gFlagsLine(flags[1],wxPURPLE,wxT("CA"),1,sfc)); SF->AddLayer(new gFlagsLine(flags[0],wxGREEN2,wxT("CSR"),0,sfc)); fgSizer->Add(SF,1,wxEXPAND); fgSizer->Add(G_AHI,1,wxEXPAND); fgSizer->Add(FRW,1,wxEXPAND); fgSizer->Add(PRD,1,wxEXPAND); fgSizer->Add(LEAK,1,wxEXPAND); fgSizer->Add(TAP,1,wxEXPAND); foobar_datehack=false; // this exists due to a wxGTK bug. RefreshData(); } Daily::~Daily() { } void Daily::RefreshData() { if (!machine) { Profile *p=Profiles::Get(); vectorvm=p->GetMachines(MT_CPAP); wxString s; if (vm.size()>=1) { machine=vm[0]; } else machine=NULL; } wxDateTime day=Calendar->GetDate(); day.ResetTime(); day.SetHour(0); //et-=wxTimeSpan::Days(1); UpdateGraphs(day); wxCalendarEvent ev; ev.SetDate(day); OnCalendarMonth(ev); OnCalendarDay(ev); } ///usr/local/bin/upx ./bin/Windows/SleepyHead void Daily::OnCalendarDay( wxCalendarEvent& event ) { if (foobar_datehack) { OnCalendarMonth(event); foobar_datehack=false; } if (!machine) return; wxDateTime day=event.GetDate(); day.ResetTime(); day.SetHour(0); day-=wxTimeSpan::Days(1); Day *d; if (machine && (machine->day.find(day)!=machine->day.end()) && (d=machine->day[day]) && (d->size()>0) && ((d->last()-d->first())>wxTimeSpan::Minutes(15))) { //HTMLInfo->SetPage(wxT("")); UpdateGraphs(day); // Session *s=(*machine->day[day])[0]; PRTypes pr=(PRTypes)d->summary_max(CPAP_PressureReliefType); wxString epr=PressureReliefNames[pr]+wxString::Format(wxT(" x%i"),(int)d->summary_max(CPAP_PressureReliefSetting)); CPAPMode mode=(CPAPMode)d->summary_max(CPAP_Mode); wxString modestr=CPAPModeNames[mode]; float ahi=(d->count(CPAP_Obstructive)+d->count(CPAP_Hypopnea)+d->count(CPAP_ClearAirway))/d->hours(); float csr=(100.0/d->hours())*(d->sum(CPAP_CSR)/3600.0); float oai=d->count(CPAP_Obstructive)/d->hours(); float hi=d->count(CPAP_Hypopnea)/d->hours(); float cai=d->count(CPAP_ClearAirway)/d->hours(); float rei=d->count(CPAP_RERA)/d->hours(); float vsi=d->count(CPAP_VSnore)/d->hours(); float fli=d->count(CPAP_FlowLimit)/d->hours(); wxString submodel=_("Unknown Model"); wxString html=wxT("\n"); html=html+wxT("\n"); if (machine->properties.find(wxT("SubModel"))!=machine->properties.end()) submodel=wxT("
")+machine->properties[wxT("SubModel")]; html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); // html=html+wxT("\n"); // html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); if (mode==MODE_CPAP) { html=html+wxT("\n"); } else if (mode==MODE_APAP) { html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); } html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); // check HumidiferStatus.. wxString str; if (bool(d->summary_max(CPAP_HumidifierStatus))) { str=wxString::Format(wxT("x%i"),(int)d->summary_max(CPAP_HumidifierSetting)); } else str=wxT("No"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); if (bool(d->summary_max(PRS1_SystemResistanceStatus))) { str=wxString::Format(wxT("x%i"),(int)d->summary_max(PRS1_SystemResistanceSetting)); } else str=wxT("No"); html=html+wxT("\n"); html=html+wxT("\n"); html=html+wxT("\n"); for (auto i=d->begin();i!=d->end();i++) { html=html+wxT("\n"); } //PRS1_SystemLockStatus html=html+wxT("
")+_("Machine Information")+wxT("
")+machine->properties[wxT("Brand")]+wxT("
")+machine->properties[wxT("Model")]+wxT(" ")+machine->properties[wxT("ModelNumber")]+submodel+wxT("
  
")+_("Sleep Times")+wxT("
")+_("Date")+wxT("")+machine->day[day]->first().Format(wxT("%x"))+wxT("
")+_("Sleep")+wxT("")+machine->day[day]->first().Format(wxT("%I:%M%p"))+wxT("
")+_("Wake")+wxT("")+machine->day[day]->last().Format(wxT("%I:%M%p"))+wxT("
  
")+_("Indices")+wxT("
")+_("AHI")+wxT("")+wxString::Format(wxT("%0.2f"),ahi)+wxT("
")+_("Obstructive")+wxT("")+wxString::Format(wxT("%0.2f"),oai)+wxT("
")+_("Hypopnea")+wxT("")+wxString::Format(wxT("%0.2f"),hi)+wxT("
")+_("ClearAirway")+wxT("")+wxString::Format(wxT("%0.2f"),cai)+wxT("
")+_("RERA")+wxT("")+wxString::Format(wxT("%0.2f"),rei)+wxT("
")+_("FlowLimit")+wxT("")+wxString::Format(wxT("%0.2f"),fli)+wxT("
")+_("Vsnore")+wxT("")+wxString::Format(wxT("%0.2f"),vsi)+wxT("
")+_("CSR")+wxT("")+wxString::Format(wxT("%0.2f%%"),csr)+wxT("
  
")+_("Other Information")+wxT("
  
Session Informaton
")+_("Mode")+wxT("")+modestr+wxT("
")+_("Relief")+wxT("")+epr+wxT("
")+_("Avg Leak")+wxT("")+wxString::Format(wxT("%.2f"),d->summary_avg(CPAP_LeakAverage))+wxT("
")+_("Pressure")+wxT("")+wxString::Format(wxT("%.1fcmH2O"),d->summary_min(CPAP_PressureMin))+wxT("
")+_("Pressure-Min")+wxT("")+wxString::Format(wxT("%.1fcmH2O"),d->summary_max(CPAP_PressureMin))+wxT("
")+_("Pressure-Max")+wxT("")+wxString::Format(wxT("%.1fcmH2O"),d->summary_max(CPAP_PressureMax))+wxT("
")+_("Pressure-Min2")+wxT("")+wxString::Format(wxT("%.1fcmH2O"),d->summary_max(CPAP_PressureMinAchieved))+wxT("
")+_("Pressure-Max2")+wxT("")+wxString::Format(wxT("%.1fcmH2O"),d->summary_max(CPAP_PressureMaxAchieved))+wxT("
")+_("Avg Pressure")+wxT("")+wxString::Format(wxT("%.1fcmH2O"),d->summary_max(CPAP_PressureAverage))+wxT("
")+_("90% Pressure")+wxT("")+wxString::Format(wxT("%.1fcmH2O"),d->summary_max(CPAP_PressurePercentValue))+wxT("
  
")+_("System Settings")+wxT("
")+_("Ramp-Time")+wxT("")+wxString::Format(wxT("%imin"),(int)d->summary_max(CPAP_RampTime))+wxT("
")+_("Ramp-Prs.")+wxT("")+wxString::Format(wxT("%.1fcmH2O"),d->summary_min(CPAP_RampStartingPressure))+wxT("
")+_("Humidifier")+wxT("")+str+wxT("
")+_("System-Lock")+wxT("")+(bool(d->summary_max(PRS1_SystemLockStatus)) ? _("On") : _("Off"))+wxT("
")+_("Auto-Off")+wxT("")+(bool(d->summary_max(PRS1_AutoOff)) ? _("On") : _("Off"))+wxT("
")+_("Mask-Alert")+wxT("")+(bool(d->summary_max(PRS1_MaskAlert)) ? _("On") : _("Off"))+wxT("
")+_("Show-AHI")+wxT("")+(bool(d->summary_max(PRS1_ShowAHI)) ? _("On") : _("Off"))+wxT("
")+_("Hose-Size")+wxT("")+(bool(d->summary_max(PRS1_HoseDiameter)) ? _("22mm") : _("15mm"))+wxT("
")+_("Sys-Resist.")+wxT("")+str+wxT("
  
")+_("Session Files")+wxT("
")+(*i)->first().Format(wxT("%d-%m-%Y %H:%M:%S"))+wxT(" ")+wxString::Format(wxT("%05i"),(*i)->session())+wxT("
"); /* for (auto i=s->summary.begin();i!=s->summary.end();i++) { MachineCode c=(*i).first; wxString name; if (DefaultMCShortNames.find(c)!=DefaultMCShortNames.end()) name=DefaultMCShortNames[c]; else name=wxString::Format(wxT("%04i"),(int)c); html+=name+wxT(" = ")+(*i).second.GetString()+wxT("
\n"); } */ html+=wxT(""); HTMLInfo->SetPage(html); } else { HTMLInfo->SetPage(_("No CPAP Machine Data Available")); UpdateGraphs(wxInvalidDateTime); } } void Daily::UpdateGraphs(wxDateTime d) { Day *day=NULL; if (!machine) return; if (d!=wxInvalidDateTime) { if (machine->day.find(d)!=machine->day.end()) { day=machine->day[d]; } } for (auto g=Data.begin();g!=Data.end();g++) { (*g)->Update(day); } }; void Daily::OnCalendarMonth( wxCalendarEvent& event ) { wxDateTime et=event.GetDate(); if (!et.IsValid()) { foobar_datehack=true; return; } wxDateTime::Month m=et.GetMonth(); int y=et.GetYear(); static wxFont f=*wxNORMAL_FONT; //wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT); f.SetWeight(wxBOLD); if (!machine) return; for (int i=1;i<31;i++) { int j=wxDateTime::GetNumberOfDays(m,y); if (i>j) break; wxDateTime d(i,m,y,0,0,0,0); d-=wxTimeSpan::Days(1); if ((machine->day.find(d)!=machine->day.end()) && ((machine->day[d]->last() - machine->day[d]->first())>wxTimeSpan::Minutes(15))) { #if wxCHECK_VERSION(2,9,0) Calendar->Mark(i,true); #else wxCalendarDateAttr *a=new wxCalendarDateAttr(); a->SetFont(f); //wxNORM Calendar->SetAttr(i,a); #endif } else { #if wxCHECK_VERSION(2,9,0) Calendar->Mark(i,false); #else Calendar->ResetAttr(i); #endif // Calendar->SetAttr(i,NULL); } } }