mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 18:20:42 +00:00
BIPAP Pressure graph layers
This commit is contained in:
parent
adca285cba
commit
d45dbe3711
@ -7826,7 +7826,7 @@
|
||||
1305881106 /home/mark/projects/git/sleepyhead/SleepyHeadApp.h
|
||||
<wx/app.h>
|
||||
|
||||
1306468775 /home/mark/projects/git/sleepyhead/SleepyHeadMain.h
|
||||
1306476329 /home/mark/projects/git/sleepyhead/SleepyHeadMain.h
|
||||
"SleepyHeadApp.h"
|
||||
"GUIFrame.h"
|
||||
"sleeplib/machine.h"
|
||||
@ -7870,7 +7870,7 @@
|
||||
<sleeplib/machine.h>
|
||||
<list>
|
||||
|
||||
1306469818 /home/mark/projects/git/sleepyhead/version.h
|
||||
1306476387 /home/mark/projects/git/sleepyhead/version.h
|
||||
|
||||
1306415077 /home/mark/projects/git/sleepyhead/libs/sleeplib/prs1_loader.h
|
||||
"machine.h"
|
||||
@ -7887,7 +7887,7 @@
|
||||
"preferences.h"
|
||||
"tinyxml/tinyxml.h"
|
||||
|
||||
1306469818 source:/home/mark/projects/git/sleepyhead/SleepyHeadMain.cpp
|
||||
1306476387 source:/home/mark/projects/git/sleepyhead/SleepyHeadMain.cpp
|
||||
"wx_pch.h"
|
||||
"version.h"
|
||||
<wx/app.h>
|
||||
|
@ -67,9 +67,9 @@ void SleepyHeadFrame::DoScreenshot( wxCommandEvent &event )
|
||||
wxRect r=GetRect();
|
||||
|
||||
#if defined(__UNIX__)
|
||||
/*int cx, cy;
|
||||
int cx, cy;
|
||||
ClientToScreen(&cx,&cy);
|
||||
int border_width = cx - r.x;
|
||||
/*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; */
|
||||
@ -308,9 +308,13 @@ Daily::Daily(wxWindow *win)
|
||||
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);
|
||||
|
@ -48,7 +48,7 @@ protected:
|
||||
void UpdateGraphs(wxDateTime date);
|
||||
|
||||
bool foobar_datehack;
|
||||
gPointData *tap,*g_ahi,*frw,*prd,*leakdata;
|
||||
gPointData *tap,*g_ahi,*frw,*prd,*leakdata,*pressure_iap,*pressure_eap;
|
||||
gPointData *flags[8];
|
||||
gGraphWindow *PRD,*FRW,*G_AHI,*TAP,*LEAK,*SF;
|
||||
|
||||
|
12
version.h
12
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 = 1247;
|
||||
static const long REVISION = 1277;
|
||||
static const long BUILD = 1252;
|
||||
static const long REVISION = 1304;
|
||||
|
||||
//Miscellaneous Version Types
|
||||
static const long BUILDS_COUNT = 4795;
|
||||
#define RC_FILEVERSION 0,7,1247,1277
|
||||
#define RC_FILEVERSION_STRING "0, 7, 1247, 1277\0"
|
||||
static const char FULLVERSION_STRING[] = "0.7.1247.1277";
|
||||
static const long BUILDS_COUNT = 4810;
|
||||
#define RC_FILEVERSION 0,7,1252,1304
|
||||
#define RC_FILEVERSION_STRING "0, 7, 1252, 1304\0"
|
||||
static const char FULLVERSION_STRING[] = "0.7.1252.1304";
|
||||
|
||||
//These values are to keep track of your versioning state, don't modify them.
|
||||
static const long BUILD_HISTORY = 62;
|
||||
|
Loading…
Reference in New Issue
Block a user