mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
ResMed ASV Fixes
This commit is contained in:
parent
5369ee7de2
commit
8fa5097fe6
@ -29,6 +29,8 @@ using namespace std;
|
||||
|
||||
extern QProgressBar *qprogress;
|
||||
|
||||
// Possibly need to replan this to include oximetry
|
||||
|
||||
CMS50Loader::CMS50Loader()
|
||||
{
|
||||
}
|
||||
|
@ -395,8 +395,12 @@ int ResmedLoader::Open(QString & path,Profile *profile)
|
||||
int dn=dif/86400000L;
|
||||
if (dn<days) {
|
||||
int mode;
|
||||
if (stredf.lookup.contains("Mode"))
|
||||
mode=(*stredf.lookup["Mode"]).data[dn];
|
||||
else mode=0;
|
||||
if (stredf.lookup.contains("EPR"))
|
||||
sess->settings["EPR"]=(*stredf.lookup["EPR"]).data[dn];
|
||||
if (stredf.lookup.contains("EPRSet"))
|
||||
sess->settings["EPRSet"]=(*stredf.lookup["EPR Level"]).data[dn];
|
||||
|
||||
EDFSignal *sig;
|
||||
|
6
daily.h
6
daily.h
@ -72,22 +72,20 @@ private:
|
||||
|
||||
QList<Layer *> OXIData;
|
||||
QList<Layer *> CPAPData;
|
||||
//QVector<gGraph *> Graphs;
|
||||
|
||||
QVector<QAction *> GraphAction;
|
||||
QGLContext *offscreen_context;
|
||||
|
||||
QList<int> splitter_sizes;
|
||||
Layer * AddCPAP(Layer *d) { CPAPData.push_back(d); return d; }
|
||||
Layer * AddOXI(Layer *d) { OXIData.push_back(d); return d; }
|
||||
//void AddGraph(gGraph *w);
|
||||
|
||||
void UpdateCPAPGraphs(Day *day);
|
||||
void UpdateOXIGraphs(Day *day);
|
||||
|
||||
MainWindow * mainwin;
|
||||
Ui::Daily *ui;
|
||||
QDate previous_date;
|
||||
//QScrollArea *scrollArea;
|
||||
//QVBoxLayout *splitter;
|
||||
QMenu *show_graph_menu;
|
||||
|
||||
gGraphView *GraphView,*snapGV;
|
||||
|
Loading…
Reference in New Issue
Block a user