From 565d0c5c31b4dc7dde6182dd75415b007ea85495 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Thu, 22 Dec 2011 20:29:12 +1000 Subject: [PATCH] Changed SleepApp folder to SleepyHeadData, Renamed hexid machine folders so they are recognizable, and version bumped to the start of the 0.9 BETA cycle. --- SleepLib/common.h | 1 + SleepLib/loader_plugins/cms50_loader.cpp | 1 + SleepLib/loader_plugins/intellipap_loader.cpp | 2 + SleepLib/loader_plugins/prs1_loader.cpp | 2 + SleepLib/loader_plugins/resmed_loader.cpp | 1 + SleepLib/loader_plugins/zeo_loader.cpp | 1 + SleepLib/machine.cpp | 10 ++-- SleepLib/preferences.h | 2 +- SleepLib/profiles.cpp | 4 +- UpdaterWindow.cpp | 13 ++--- daily.cpp | 26 ++++++++-- daily.h | 1 + daily.ui | 2 +- docs/channels.xml | 2 +- docs/release_notes.html | 49 +++++++++++-------- main.cpp | 6 +-- mainwindow.cpp | 14 +++--- mainwindow.h | 2 +- newprofile.cpp | 2 + newprofile.ui | 17 ++++++- profileselect.cpp | 4 +- version.h | 7 +-- 22 files changed, 111 insertions(+), 58 deletions(-) diff --git a/SleepLib/common.h b/SleepLib/common.h index 356d3fa4..e0774af4 100644 --- a/SleepLib/common.h +++ b/SleepLib/common.h @@ -39,6 +39,7 @@ const QString STR_PROP_ModelNumber="ModelNumber"; const QString STR_PROP_SubModel="SubModel"; const QString STR_PROP_Serial="Serial"; const QString STR_PROP_DataVersion="DataVersion"; +const QString STR_PROP_Path="Path"; const QString STR_MACH_ResMed="ResMed"; const QString STR_MACH_PRS1="PRS1"; diff --git a/SleepLib/loader_plugins/cms50_loader.cpp b/SleepLib/loader_plugins/cms50_loader.cpp index b0cd03f1..925ddb47 100644 --- a/SleepLib/loader_plugins/cms50_loader.cpp +++ b/SleepLib/loader_plugins/cms50_loader.cpp @@ -328,6 +328,7 @@ Machine *CMS50Loader::CreateMachine(Profile *profile) a.sprintf("%i",cms50_data_version); m->properties[STR_PROP_DataVersion]=a; profile->AddMachine(m); + m->properties[STR_PROP_Path]="{"+STR_GEN_DataFolder+"}/"+m->GetClass()+"_"+m->hexid()+"/"; return m; } diff --git a/SleepLib/loader_plugins/intellipap_loader.cpp b/SleepLib/loader_plugins/intellipap_loader.cpp index 4df195ef..90b24de1 100644 --- a/SleepLib/loader_plugins/intellipap_loader.cpp +++ b/SleepLib/loader_plugins/intellipap_loader.cpp @@ -369,6 +369,8 @@ Machine *IntellipapLoader::CreateMachine(QString serial,Profile *profile) profile->AddMachine(m); m->properties[STR_PROP_Serial]=serial; + m->properties[STR_PROP_Path]="{"+STR_GEN_DataFolder+"}/"+m->GetClass()+"_"+serial+"/"; + return m; } diff --git a/SleepLib/loader_plugins/prs1_loader.cpp b/SleepLib/loader_plugins/prs1_loader.cpp index 601299a2..affebcb5 100644 --- a/SleepLib/loader_plugins/prs1_loader.cpp +++ b/SleepLib/loader_plugins/prs1_loader.cpp @@ -152,6 +152,8 @@ Machine *PRS1Loader::CreateMachine(QString serial,Profile *profile) profile->AddMachine(m); m->properties[STR_PROP_Serial]=serial; + m->properties[STR_PROP_Path]="{"+STR_GEN_DataFolder+"}/"+m->GetClass()+"_"+serial+"/";; + return m; } bool isdigit(QChar c) diff --git a/SleepLib/loader_plugins/resmed_loader.cpp b/SleepLib/loader_plugins/resmed_loader.cpp index bc1db2b7..7dd39ce4 100644 --- a/SleepLib/loader_plugins/resmed_loader.cpp +++ b/SleepLib/loader_plugins/resmed_loader.cpp @@ -242,6 +242,7 @@ Machine *ResmedLoader::CreateMachine(QString serial,Profile *profile) QString a; a.sprintf("%i",resmed_data_version); m->properties[STR_PROP_DataVersion]=a; + m->properties[STR_PROP_Path]="{"+STR_GEN_DataFolder+"}/"+m->GetClass()+"_"+serial+"/"; return m; diff --git a/SleepLib/loader_plugins/zeo_loader.cpp b/SleepLib/loader_plugins/zeo_loader.cpp index b05c7ac0..5086ed8e 100644 --- a/SleepLib/loader_plugins/zeo_loader.cpp +++ b/SleepLib/loader_plugins/zeo_loader.cpp @@ -80,6 +80,7 @@ Machine *ZEOLoader::CreateMachine(Profile *profile) m->properties[STR_PROP_DataVersion]=s; profile->AddMachine(m); + m->properties[STR_PROP_Path]="{"+STR_GEN_DataFolder+"}/"+m->GetClass()+"_"+m->hexid()+"/"; return m; } diff --git a/SleepLib/machine.cpp b/SleepLib/machine.cpp index ef42b610..bdefa03e 100644 --- a/SleepLib/machine.cpp +++ b/SleepLib/machine.cpp @@ -171,7 +171,9 @@ bool Machine::Purge(int secret) // It would be joyous if this function screwed up.. - QString path=profile->Get(STR_GEN_DataFolder)+"/"+hexid(); + + QString path=profile->Get(properties[STR_PROP_Path]); //STR_GEN_DataFolder)+"/"+m_class+"_"; + //if (properties.contains(STR_PROP_Serial)) path+=properties[STR_PROP_Serial]; else path+=hexid(); QDir dir(path); @@ -216,7 +218,7 @@ const quint32 channel_version=1; bool Machine::Load() { - QString path=profile->Get(STR_GEN_DataFolder)+"/"+hexid(); + QString path=profile->Get(properties[STR_PROP_Path]); //STR_GEN_DataFolder)+"/"+m_class+"_"+hexid(); QDir dir(path); qDebug() << "Loading " << path; @@ -272,7 +274,7 @@ bool Machine::Load() } bool Machine::SaveSession(Session *sess) { - QString path=profile->Get(STR_GEN_DataFolder)+"/"+hexid(); + QString path=profile->Get(properties[STR_PROP_Path]); //STR_GEN_DataFolder)+"/"+m_class+"_"+hexid(); if (sess->IsChanged()) sess->Store(path); return true; } @@ -282,7 +284,7 @@ bool Machine::Save() //int size; int cnt=0; - QString path=profile->Get(STR_GEN_DataFolder)+"/"+hexid(); + QString path=profile->Get(properties[STR_PROP_Path]); //STR_GEN_DataFolder)+"/"+m_class+"_"+hexid(); QDir dir(path); if (!dir.exists()) { dir.mkdir(path); diff --git a/SleepLib/preferences.h b/SleepLib/preferences.h index 007e2a8d..76db1870 100644 --- a/SleepLib/preferences.h +++ b/SleepLib/preferences.h @@ -19,7 +19,7 @@ License: GPL const QString AppName="SleepyHead"; // Outer tag of XML files -const QString AppRoot="SleepApp"; // The Folder Name +const QString AppRoot="SleepyHeadData"; // The Folder Name extern const QString & GetAppRoot(); //returns app root path plus trailing path separator. diff --git a/SleepLib/profiles.cpp b/SleepLib/profiles.cpp index 0fd09595..bda97abf 100644 --- a/SleepLib/profiles.cpp +++ b/SleepLib/profiles.cpp @@ -283,11 +283,10 @@ QDomElement Profile::ExtraSave(QDomDocument & doc) for (QHash::iterator i=machlist.begin(); i!=machlist.end(); i++) { QDomElement me=doc.createElement("Machine"); Machine *m=i.value(); - //QString t=wxT("0x")+m->hexid(); me.setAttribute("id",(int)m->id()); me.setAttribute("type",(int)m->GetType()); me.setAttribute("class",m->GetClass()); - i.value()->properties["path"]="{DataFolder}/"+m->hexid(); + if (!m->properties.contains(STR_PROP_Path)) m->properties[STR_PROP_Path]="{DataFolder}/"+m->GetClass()+"_"+m->hexid(); for (QHash::iterator j=i.value()->properties.begin(); j!=i.value()->properties.end(); j++) { QDomElement mp=doc.createElement(j.key()); @@ -474,6 +473,7 @@ Profile *Create(QString name) Machine *m=new Machine(prof,0); m->SetClass("Journal"); m->properties[STR_PROP_Brand]="Virtual"; + m->properties[STR_PROP_Path]="{DataFolder}/"+m->GetClass()+"_"+m->hexid(); m->SetType(MT_JOURNAL); prof->AddMachine(m); diff --git a/UpdaterWindow.cpp b/UpdaterWindow.cpp index 840e5bb7..bb829e4c 100644 --- a/UpdaterWindow.cpp +++ b/UpdaterWindow.cpp @@ -189,8 +189,9 @@ void UpdaterWindow::ParseUpdateXML(QIODevice * dev) break; } else release=NULL; } - if (!release || (VersionString() > release->version)) { + if (!release || (VersionString > release->version)) { mainwin->Notify(tr("No updates were found for your platform."),tr("SleepyHead Updates"),5000); + PREF[STR_GEN_UpdatesLastChecked]=QDateTime::currentDateTime(); close(); return; } @@ -220,7 +221,7 @@ void UpdaterWindow::ParseUpdateXML(QIODevice * dev) if (upq && (upq->version > QT_VERSION_STR)) { updates.push_back(upq); } - if (upd && upd->version > VersionString()) { + if (upd && upd->version > VersionString) { updates.push_back(upd); } @@ -231,13 +232,13 @@ void UpdaterWindow::ParseUpdateXML(QIODevice * dev) html+=" "+tr("platform notes")+"

"+release->notes[platform]+"

"; ui->webView->setHtml(html); QString info; - if (VersionString()< release->version) { + if (VersionString < release->version) { ui->Title->setText(""+tr("A new version of SleepyHead is available!")+""); - info=tr("Shiny new v%1 is available. You're running old and busted v%2").arg(latestapp).arg(VersionString()); + info=tr("Shiny new v%1 is available. You're running old and busted v%2").arg(latestapp).arg(VersionString); ui->notesTabWidget->setCurrentIndex(0); } else { ui->Title->setText(""+tr("An update for SleepyHead is available.")+""); - info=tr("Version %1 is available. You're currently running v%1").arg(latestapp).arg(VersionString()); + info=tr("Version %1 is available. You're currently running v%1").arg(latestapp).arg(VersionString); ui->notesTabWidget->setCurrentIndex(1); } ui->versionInfo->setText(info); @@ -245,7 +246,7 @@ void UpdaterWindow::ParseUpdateXML(QIODevice * dev) QString notes; for (int i=0;iupdates[platform].size();i++) { update=&release->updates[platform][i]; - if ((update->type=="application") && (update->version > VersionString())) { + if ((update->type=="application") && (update->version > VersionString)) { notes+=""+tr("SleepyHead v%1 build notes").arg(update->version)+"
"+update->notes.trimmed()+"

"; } else if ((update->type=="qtlibs") && (update->version > QT_VERSION_STR)) { notes+=""+tr("Update to QtLibs (v%1)").arg(update->version)+"
"+update->notes.trimmed(); diff --git a/daily.cpp b/daily.cpp index 9ba620e6..aa7a92ae 100644 --- a/daily.cpp +++ b/daily.cpp @@ -286,6 +286,9 @@ Daily::Daily(QWidget *parent,gGraphView * shared) GraphView->LoadSettings("Daily"); + emptyToggleArea=new QLabel("No data available for this day",this); + ui->graphToggleArea->addWidget(emptyToggleArea,1,Qt::AlignCenter); + emptyToggleArea->setVisible(false); for (int i=0;isize();i++) { QString title=(*GraphView)[i]->title(); QPushButton *btn=new QPushButton(title,this); @@ -616,6 +619,8 @@ void Daily::Load(QDate date) UpdateOXIGraphs(oxi); UpdateCPAPGraphs(cpap); UpdateEventsTree(ui->treeWidget,cpap); + + snapGV->setDay(cpap); GraphView->ResetBounds(false); //snapGV->ResetBounds(); @@ -633,13 +638,18 @@ void Daily::Load(QDate date) } //GraphView->redraw(); //snapGV->redraw(); - - //RedrawGraphs(); - + int graphsAvailable=0; for (int i=0;isize();i++) { QString title=(*GraphView)[i]->title(); - GraphToggles[title]->setVisible(!(*GraphView)[i]->isEmpty()); + bool empty=(*GraphView)[i]->isEmpty(); + if (!empty) graphsAvailable++; + GraphToggles[title]->setVisible(!empty); } + emptyToggleArea->setVisible(graphsAvailable==0); + + //ui->graphVisibilityToggleArea->setVisible(graphsAvailable>0); + + //RedrawGraphs(); QString epr,modestr; //float iap90,eap90; @@ -652,10 +662,16 @@ void Daily::Load(QDate date) if (GraphView->isEmpty()) { GraphView->setCubeImage(images["brick"]); GraphView->setEmptyText(tr("Brick Machine :(")); + isBrick=true; } else { - GraphView->setEmptyText(tr("No Data")); + if (graphsAvailable==0) { + GraphView->setEmptyText(tr("No Data")); + } else { + GraphView->setEmptyText(tr("Graphs Switched Off")); + } } + mode=(CPAPMode)(int)cpap->settings_max(CPAP_Mode); modestr=schema::channel[CPAP_Mode].m_options[mode]; diff --git a/daily.h b/daily.h index 87645961..8a8c3a6a 100644 --- a/daily.h +++ b/daily.h @@ -270,6 +270,7 @@ private: gGraphView *GraphView,*snapGV; MyScrollBar *scrollbar; QHBoxLayout *layout; + QLabel *emptyToggleArea; bool ZombieMeterMoved; bool BookmarksChanged; }; diff --git a/daily.ui b/daily.ui index b1341831..2847496f 100644 --- a/daily.ui +++ b/daily.ui @@ -730,7 +730,7 @@ - + 16777215 diff --git a/docs/channels.xml b/docs/channels.xml index fb283cf9..693d07f4 100644 --- a/docs/channels.xml +++ b/docs/channels.xml @@ -1,5 +1,5 @@ -