diff --git a/SleepyHead.depend b/SleepyHead.depend index ea91a903..95950987 100644 --- a/SleepyHead.depend +++ b/SleepyHead.depend @@ -7826,7 +7826,7 @@ 1305881106 /home/mark/projects/git/sleepyhead/SleepyHeadApp.h -1306476329 /home/mark/projects/git/sleepyhead/SleepyHeadMain.h +1306489831 /home/mark/projects/git/sleepyhead/SleepyHeadMain.h "SleepyHeadApp.h" "GUIFrame.h" "sleeplib/machine.h" @@ -7870,7 +7870,7 @@ -1306489214 /home/mark/projects/git/sleepyhead/version.h +1306489908 /home/mark/projects/git/sleepyhead/version.h 1306415077 /home/mark/projects/git/sleepyhead/libs/sleeplib/prs1_loader.h "machine.h" @@ -7947,7 +7947,7 @@ "machine_loader.h" "tinyxml/tinyxml.h" -1306489211 source:/home/mark/projects/git/sleepyhead/libs/sleeplib/prs1_loader.cpp +1306489627 source:/home/mark/projects/git/sleepyhead/libs/sleeplib/prs1_loader.cpp diff --git a/SleepyHeadMain.cpp b/SleepyHeadMain.cpp index 4d957cb2..8c6805ea 100644 --- a/SleepyHeadMain.cpp +++ b/SleepyHeadMain.cpp @@ -333,6 +333,7 @@ Daily::Daily(wxWindow *win) 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)); FRW->AddLayer(new gLineChart(frw,wxBLACK,200000,true)); FRW->AddLayer(new gLineOverlayBar(flags[6],wxYELLOW,wxT("RE"))); @@ -346,13 +347,14 @@ Daily::Daily(wxWindow *win) SF=new gGraphWindow(ScrolledWindow,-1,wxT("Sleep Flags"),wxPoint(0,0), wxSize(600,150), wxNO_BORDER); SF->SetMargins(10,15,20,80); - SF->AddLayer(new gFlagsLine(flags[6],wxYELLOW,wxT("RE"),6,7)); - SF->AddLayer(new gFlagsLine(flags[5],wxRED,wxT("VS"),5,7)); - SF->AddLayer(new gFlagsLine(flags[4],wxBLACK,wxT("FL"),4,7)); - SF->AddLayer(new gFlagsLine(flags[3],wxBLUE,wxT("H"),3,7)); - SF->AddLayer(new gFlagsLine(flags[2],wxAQUA,wxT("OA"),2,7)); - SF->AddLayer(new gFlagsLine(flags[1],wxPURPLE,wxT("CA"),1,7)); - SF->AddLayer(new gFlagsLine(flags[0],wxGREEN2,wxT("CSR"),0,7)); + 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)); //l=new gBarChart(graphdata,wxHORIZONTAL); //graph->AddLayer(l); //graph->SetData(graphdata); diff --git a/SleepyHeadMain.h b/SleepyHeadMain.h index 239c50d8..7c2d3265 100644 --- a/SleepyHeadMain.h +++ b/SleepyHeadMain.h @@ -33,6 +33,8 @@ public: }; +const int sfc=8; + class Daily:public DailyPanel { public: @@ -49,7 +51,7 @@ protected: bool foobar_datehack; gPointData *tap,*g_ahi,*frw,*prd,*leakdata,*pressure_iap,*pressure_eap; - gPointData *flags[8]; + gPointData *flags[9]; gGraphWindow *PRD,*FRW,*G_AHI,*TAP,*LEAK,*SF; diff --git a/libs/sleeplib/prs1_loader.cpp b/libs/sleeplib/prs1_loader.cpp index d13430e0..2dcfc374 100644 --- a/libs/sleeplib/prs1_loader.cpp +++ b/libs/sleeplib/prs1_loader.cpp @@ -644,9 +644,6 @@ bool PRS1Loader::OpenWaveforms(Session *session,wxString filename) } Waveform *w=new Waveform(start,CPAP_FlowRate,data,samples,duration,min,max); session->AddWaveform(w); - if (sequence==9) { - sequence=9; - } //wxLogMessage(wxT("Done PRS1 Waveforms ")+filename); return true; } diff --git a/version.h b/version.h index bac4deb1..a434e0ec 100644 --- a/version.h +++ b/version.h @@ -16,14 +16,14 @@ namespace AutoVersion{ //Standard Version Type static const long MAJOR = 0; static const long MINOR = 7; - static const long BUILD = 1300; - static const long REVISION = 1576; + static const long BUILD = 1304; + static const long REVISION = 1611; //Miscellaneous Version Types - static const long BUILDS_COUNT = 4913; - #define RC_FILEVERSION 0,7,1300,1576 - #define RC_FILEVERSION_STRING "0, 7, 1300, 1576\0" - static const char FULLVERSION_STRING[] = "0.7.1300.1576"; + static const long BUILDS_COUNT = 4921; + #define RC_FILEVERSION 0,7,1304,1611 + #define RC_FILEVERSION_STRING "0, 7, 1304, 1611\0" + static const char FULLVERSION_STRING[] = "0.7.1304.1611"; //These values are to keep track of your versioning state, don't modify them. static const long BUILD_HISTORY = 62;