diff --git a/sleepyhead/Resources.qrc b/sleepyhead/Resources.qrc index d3c665ec..b2abca5a 100644 --- a/sleepyhead/Resources.qrc +++ b/sleepyhead/Resources.qrc @@ -55,5 +55,6 @@ icons/dv64.png icons/overview-page.png docs/GPLv3-en_US + icons/fp_icon.png diff --git a/sleepyhead/SleepLib/day.cpp b/sleepyhead/SleepLib/day.cpp index 3d312e3a..30d96f03 100644 --- a/sleepyhead/SleepLib/day.cpp +++ b/sleepyhead/SleepLib/day.cpp @@ -379,7 +379,7 @@ EventDataType Day::percentile(ChannelID code, EventDataType percentile) } // sort by weight, then value - std::sort(valcnt.begin(), valcnt.end()); + qSort(valcnt); //(valcnt.begin(), valcnt.end()); //double SN=100.0/double(N); // 100% / overall sum double p = 100.0 * percentile; @@ -550,7 +550,7 @@ EventDataType Day::rangePercentile(ChannelID code, float p, qint64 st, qint64 et } // TODO: use nth_element instead.. - std::sort(list.begin(), list.end()); + qSort(list); //std::sort(list.begin(), list.end()); float b = float(idx) * p; int a = floor(b); diff --git a/sleepyhead/SleepLib/preferences.cpp b/sleepyhead/SleepLib/preferences.cpp index cc15731f..4263c6f6 100644 --- a/sleepyhead/SleepLib/preferences.cpp +++ b/sleepyhead/SleepLib/preferences.cpp @@ -59,7 +59,7 @@ const QString &getUserName() QString GetAppRoot() { - QSettings settings(getDeveloperName(), getAppName()); + QSettings settings; QString HomeAppRoot = settings.value("Settings/AppRoot").toString(); diff --git a/sleepyhead/SleepLib/profiles.cpp b/sleepyhead/SleepLib/profiles.cpp index 2e282116..fab70d83 100644 --- a/sleepyhead/SleepLib/profiles.cpp +++ b/sleepyhead/SleepLib/profiles.cpp @@ -1950,7 +1950,7 @@ void Profile::saveChannels() out << (quint32)magic; out << (quint16)chandata_version; - QSettings settings(getDeveloperName(), getAppName()); + QSettings settings; (*p_profile)[STR_PREF_Language] = settings.value(LangSetting, "").toString(); quint16 size = schema::channel.channels.size(); @@ -2001,7 +2001,7 @@ void Profile::loadChannels() quint16 version; in >> version; - QSettings settings(getDeveloperName(), getAppName()); + QSettings settings; QString language = Get(STR_PREF_Language); if (settings.value(LangSetting, "").toString() != language) { qDebug() << "Language change detected, resetting default channel names"; diff --git a/sleepyhead/help.cpp b/sleepyhead/help.cpp index dfc76eae..61f8fd39 100644 --- a/sleepyhead/help.cpp +++ b/sleepyhead/help.cpp @@ -10,31 +10,74 @@ #include #include #include +#include +#include #include "SleepLib/common.h" +#include "translation.h" #include "help.h" #include "ui_help.h" -const QString helpNamespace = "jedimark.net.SleepyHead.1.1"; - Help::Help(QWidget *parent) : QWidget(parent), ui(new Ui::Help) { ui->setupUi(this); - helpEngine = new QHelpEngine(appResourcePath() + "/Help/help.qhc", this); - helpEngine->setupData(); + QString helpRoot = appResourcePath() + "/Help/"; + QString helpIndex = helpRoot + "help.qhc"; - /*if (!helpEngine->registeredDocumentations().contains(helpFile)) { - if (helpEngine->registerDocumentation(helpFile)) { - qDebug() << "Registered" << helpFile; - } else { - qDebug() << "Help Error:" << helpEngine->error(); + QDir dir(helpRoot); + QStringList nameFilters = QStringList("*.qch"); + QStringList helpfiles = dir.entryList(nameFilters, QDir::Files | QDir::Readable); + + language = currentLanguage(); + QString helpFile; + + for (const QString & file : helpfiles) { + if (file.endsWith(language+".qch")) { + helpFile = helpRoot+file; + break; } - } */ + } + if (helpFile.isEmpty() && (language != DefaultLanguage)) { + ui->languageWarningMessage->setText(tr("Help Files are not yet available for %1 and will display in %2.").arg(lookupLanguageName(language)).arg(lookupLanguageName(DefaultLanguage))); + language = DefaultLanguage; + for (const QString & file : helpfiles) { + if (file.endsWith(language+".qch")) { + helpFile = helpRoot+file; + } + break; + } + } + if (helpFile.isEmpty()) { + ui->languageWarningMessage->setText(tr("Help files could not be located... If you're building from source, try rerunning Qmake.")); + // Still empty, install is dodgy + // Copy en_US out of resource?? + // For now I just don't care, if the user screws up.. tough + } - QList list = helpEngine->files(helpNamespace, QStringList()); + helpLoaded = false; + // Delete the crappy qhc so we can generate our own. + if (QFile::exists(helpIndex)) QFile::remove(helpIndex); + + helpEngine = new QHelpEngine(helpRoot + "help.qhc"); + helpNamespace = "jedimark.net.SleepyHeadGuide"; + + if (!helpFile.isEmpty()) { + if (!helpEngine->setupData()) { + ui->languageWarningMessage->setText(tr("HelpEngine did not set up correctly")); + } else if (helpEngine->registerDocumentation(helpFile)) { + qDebug() << "Registered" << helpFile; + helpLoaded = true; + ui->languageWarning->setVisible(false); + } else { + ui->languageWarningMessage->setText(tr("HelpEngine could not register documentation correctly.")); + qDebug() << helpEngine->error(); + } + } + + helpBrowser = new HelpBrowser(helpEngine); tabWidget = new QTabWidget; tabWidget->setMaximumWidth(250); @@ -45,45 +88,35 @@ Help::Help(QWidget *parent) : resultWidget = new MyTextBrowser(this); resultWidget->setOpenLinks(false); tabWidget->addTab(resultWidget, tr("Search")); - resultWidget->setStyleSheet("a:link, a:visited { color: inherit; text-decoration: none; font-weight: normal;}" - "a:hover { background-color: inherit; color: #ff8888; text-decoration:underline; font-weight: normal; }"); - - - - helpBrowser = new HelpBrowser(helpEngine); - - if (list.size() == 0) { - QString msg = tr("

Attention Source Builder


No help files detected.. QMake (or you) first need(s) to run qcollectiongenerator

While we are at it, search is broken at the moment, titles are not showing up.

"); - helpBrowser->setHtml(msg); - } else { - QByteArray index = helpEngine->fileData(QUrl("qthelp://jedimark.net.sleepyhead.1.1/doc/help_en/index.html")); - helpBrowser->setHtml(index); - } ui->splitter->insertWidget(0, tabWidget); ui->splitter->insertWidget(1, helpBrowser); - - QTimer::singleShot(50,this, SLOT(startup())); - - connect(helpBrowser, SIGNAL(forwardAvailable(bool)), this, SLOT(forwardAvailable(bool))); - connect(helpBrowser, SIGNAL(backwardAvailable(bool)), this, SLOT(backwardAvailable(bool))); - connect(helpEngine->contentWidget(), SIGNAL(linkActivated(QUrl)), helpBrowser, SLOT(setSource(QUrl))); - connect(helpEngine->indexWidget(), SIGNAL(linkActivated(QUrl, QString)), helpBrowser, SLOT(setSource(QUrl))); - - connect(helpEngine->searchEngine(), SIGNAL(searchingFinished(int)), this, SLOT(on_searchComplete(int))); - connect(helpEngine->searchEngine(), SIGNAL(indexingFinished()), this, SLOT(indexingFinished())); - - connect(resultWidget, SIGNAL(anchorClicked(QUrl)), this, SLOT(requestShowLink(QUrl))); - ui->forwardButton->setEnabled(false); ui->backButton->setEnabled(false); - searchReady = false; - helpEngine->searchEngine()->reindexDocumentation(); - helpEngine->setCurrentFilter("SleepyHead 1.1"); + if (!helpLoaded) { + QString html = "

No documentation available

"; + helpBrowser->setHtml(html); + return; + } else { + QTimer::singleShot(50,this, SLOT(startup())); + connect(helpBrowser, SIGNAL(forwardAvailable(bool)), this, SLOT(forwardAvailable(bool))); + connect(helpBrowser, SIGNAL(backwardAvailable(bool)), this, SLOT(backwardAvailable(bool))); + connect(helpEngine->contentWidget(), SIGNAL(linkActivated(QUrl)), helpBrowser, SLOT(setSource(QUrl))); + connect(helpEngine->indexWidget(), SIGNAL(linkActivated(QUrl, QString)), helpBrowser, SLOT(setSource(QUrl))); + + connect(helpEngine->searchEngine(), SIGNAL(searchingFinished(int)), this, SLOT(on_searchComplete(int))); + connect(helpEngine->searchEngine(), SIGNAL(indexingFinished()), this, SLOT(indexingFinished())); + + connect(resultWidget, SIGNAL(anchorClicked(QUrl)), this, SLOT(requestShowLink(QUrl))); + + searchReady = false; + helpEngine->searchEngine()->reindexDocumentation(); + helpBrowser->setSource(QUrl(QString("qthelp://%1/doc/index.html").arg(helpNamespace))); + } } Help::~Help() @@ -113,11 +146,16 @@ HelpBrowser::HelpBrowser(QHelpEngine* helpEngine, QWidget* parent): QVariant HelpBrowser::loadResource(int type, const QUrl &name) { - QString path = name.path(QUrl::FullyEncoded).replace("/./","/"); - if (!path.startsWith("/doc")) path="/doc"+path; - QString urlstr = "qthelp://"+helpNamespace+path; - QByteArray bytes = helpEngine->fileData(urlstr); - if (bytes.size()>0) return QVariant(bytes); + if (name.scheme() == "qthelp") { + qDebug() << "Loading" << name.toString(); + return QVariant(helpEngine->fileData(name)); + } else + +// QString path = name.path(QUrl::FullyEncoded).replace("/./","/"); +// if (!path.startsWith("/doc")) path="/doc"+path; +// QString urlstr = "qthelp://"+helpNamespace+path; +// QByteArray bytes = helpEngine->fileData(urlstr); +// if (bytes.size()>0) return QVariant(bytes); if (type == QTextDocument::ImageResource && name.scheme().compare(QLatin1String(""), Qt::CaseInsensitive) == 0) { static QRegularExpression re("^image/[^;]+;base64,.+={0,2}$"); @@ -140,7 +178,8 @@ void Help::on_forwardButton_clicked() void Help::on_homeButton_clicked() { - QByteArray index = helpEngine->fileData(QUrl("qthelp://jedimark.net.sleepyhead.1.1/doc/help_en/index.html")); + if (!helpLoaded) return; + QByteArray index = helpEngine->fileData(QUrl(QString("qthelp://%1/doc/index.html").arg(helpNamespace))); helpBrowser->setHtml(index); } void Help::on_searchComplete(int count) @@ -188,6 +227,10 @@ void Help::on_searchComplete(int count) void Help::on_searchBar_returnPressed() { + if (!helpLoaded) { + ui->searchBar->clear(); + return; + } QHelpSearchEngine * search = helpEngine->searchEngine(); QString str=ui->searchBar->text(); @@ -223,3 +266,8 @@ void Help::requestShowLink(const QUrl & link) helpBrowser->setSource(link); } } + +void Help::on_languageWarningCheckbox_clicked(bool checked) +{ + ui->languageWarning->setVisible(!checked); +} diff --git a/sleepyhead/help.h b/sleepyhead/help.h index 32c1cf7c..54dfee47 100644 --- a/sleepyhead/help.h +++ b/sleepyhead/help.h @@ -11,7 +11,6 @@ #include #include -#include #include #include #include "mytextbrowser.h" @@ -25,6 +24,7 @@ class HelpBrowser : public QTextBrowser public: HelpBrowser(QHelpEngine* helpEngine, QWidget* parent = 0); virtual QVariant loadResource(int type, const QUrl &url) Q_DECL_OVERRIDE; + QString helpNamespace; private: QHelpEngine * helpEngine; }; @@ -38,6 +38,7 @@ public: ~Help(); void print(QPrinter * printer) { helpBrowser->print(printer); } + private slots: void on_backButton_clicked(); @@ -55,6 +56,8 @@ private slots: void forwardAvailable(bool b); void backwardAvailable(bool b); void requestShowLink(const QUrl & link); + void on_languageWarningCheckbox_clicked(bool checked); + private: Ui::Help *ui; QHelpEngine *helpEngine; @@ -62,6 +65,9 @@ private: HelpBrowser * helpBrowser; MyTextBrowser * resultWidget; bool searchReady; + QString helpNamespace; + bool helpLoaded; + QString language; }; #endif // HELP_H diff --git a/sleepyhead/help.ui b/sleepyhead/help.ui index f070ce95..c0fafe20 100644 --- a/sleepyhead/help.ui +++ b/sleepyhead/help.ui @@ -10,6 +10,12 @@ 602 + + + 0 + 0 + + Form @@ -29,6 +35,67 @@ 0 + + + + + 0 + 0 + + + + background: rgb(100, 100, 100); +color: rgb(255,255,255); + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + 0 + 0 + + + + + 75 + true + + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Hide this message + + + + + + diff --git a/sleepyhead/help/compile.sh b/sleepyhead/help/compile.sh deleted file mode 100644 index f77e96bf..00000000 --- a/sleepyhead/help/compile.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash -/C/Qt/5.11.0/mingw53_32/bin/qhelpgenerator.exe -c help_en.qhp -o qch/help_en.qch -#/C/Qt/5.11.0/mingw53_32/bin/assistant.exe -unregister qch/help_en.qch -#/C/Qt/5.11.0/mingw53_32/bin/assistant.exe -register qch/help_en.qch -#/C/Qt/5.11.0/mingw53_32/bin/assistant.exe diff --git a/sleepyhead/help/help.qhcp b/sleepyhead/help/help.qhcp index bb9b36a4..387e790f 100644 --- a/sleepyhead/help/help.qhcp +++ b/sleepyhead/help/help.qhcp @@ -3,12 +3,17 @@ - help_en.qhp - help_en.qch + help_en/help_en.qhp + help.en_US.qch + + + help_nl/help_nl.qhp + help.nl.qch - help_en.qch + help.nl.qch + help.en_US.qch diff --git a/sleepyhead/help/help_en.qhp b/sleepyhead/help/help_en.qhp deleted file mode 100644 index 58835774..00000000 --- a/sleepyhead/help/help_en.qhp +++ /dev/null @@ -1,90 +0,0 @@ - - - jedimark.net.SleepyHead.1.1 - doc - - myapp - 1.0 - - - myapp - 1.0 - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - default.css - help_en/daily.html - help_en/faq.html - help_en/gettingstarted.html - help_en/glossary.html - help_en/import.html - help_en/index.html - help_en/overview.html - help_en/oximetry.html - help_en/statistics.html - help_en/supported.html - help_en/tipsntricks.html - images/*.png - - - diff --git a/sleepyhead/help/help_en/help_en.qhp b/sleepyhead/help/help_en/help_en.qhp new file mode 100644 index 00000000..17360913 --- /dev/null +++ b/sleepyhead/help/help_en/help_en.qhp @@ -0,0 +1,74 @@ + + + jedimark.net.SleepyHeadGuide + doc + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ../default.css + *.html + *.png + + + diff --git a/sleepyhead/help/help_en/index.html b/sleepyhead/help/help_en/index.html index 142514c6..e035b6b8 100644 --- a/sleepyhead/help/help_en/index.html +++ b/sleepyhead/help/help_en/index.html @@ -3,7 +3,7 @@ - +

Contents

  • Introduction
  • diff --git a/sleepyhead/help/help_en/supported.html b/sleepyhead/help/help_en/supported.html index ec37c604..42418e78 100644 --- a/sleepyhead/help/help_en/supported.html +++ b/sleepyhead/help/help_en/supported.html @@ -4,36 +4,38 @@ - + - - - + + + - - - + + + - + - - + + - +

    Supported CPAP Machines

    Supported CPAP Machines

    +Not every model that looks like these is supported... Most are, yet some annoyingly have unique and yet unseen/unhacked data structures. +
     

    ResMed


    ResMed S9 Family
    "Escape" models are bricks

    AirSense 10 Family

    AirCurve

    ResMed S9 Family
    "Escape" models are bricks

    AirSense 10 Family

    AirCurve
     

    Philips Respironics


    System One

    System One 60 Series

    System One BIPAP/AutoSV

    System One

    System One 60 Series

    System One BIPAP/AutoSV

    DreamStation CPAP and ASV

    DreamStation CPAP and ASV
       
     

    DeVilbiss


    DV64 Family

    Intellipap DV54

    Intellipap DV54

    DV64 Family
     
     

    Fisher & Paykel


    ICON

    F & P Icon
    Last... and (*cough*) least.
       
    diff --git a/sleepyhead/help/help_nl/daily.html b/sleepyhead/help/help_nl/daily.html new file mode 100644 index 00000000..116825d2 --- /dev/null +++ b/sleepyhead/help/help_nl/daily.html @@ -0,0 +1,8 @@ + + + + + +

    Exploring the Daily View

    + + diff --git a/sleepyhead/help/help_nl/faq.html b/sleepyhead/help/help_nl/faq.html new file mode 100644 index 00000000..f0f18068 --- /dev/null +++ b/sleepyhead/help/help_nl/faq.html @@ -0,0 +1,28 @@ + + + + + +

    Frequently Asked Questions

    +

    Why doesn't SleepyHead support [insert obscure/new device] yet?

    +

    Plenty of reasons.. Pick your favourite:

    + +
  • • Because the 5 people who own one can't supply enough data to see all possible event codes?
  • +
  • • Because it doesn't feature a flow waveform and would be boring?
  • +
  • • Because one unpaid developer can only hack, create, and maintain so many importers before they go insane?
  • +
  • • Because to get it right takes a really, really big number of developer man-hours that would be better spent on other parts of the program?
  • +
  • • Because the build quality perhaps is garbage and nobody should own one?
  • +
  • • Because nobody else is interested in helping hack the formats?
  • +
  • • Because I prefer hands on and rarely get to play with/hack on the hardware directly?
  • +
    +

    Why doesn't SleepyHead let me generate compliance reports?

    +

    Mainly, to avoid attracting the lawsuits that would inevitably come from offering this capability. Here are the primary reasons why I'm dead against it:

    + +
  • • It's far too easy to change the source code to fake compliance reports.
  • +
  • • Do you like the idea of sharing the road with truck drivers with an untreated sleep disorder who faked compliance data?
  • +
  • • Data Formats of CPAP machines in SleepyHead had to be hacked because manufacturers don't release documentation, and accuracy can't be guaranteed.
  • +
  • • To do it would require closing the sourcecode and establishing a relationship with manufacturers who have proven they care very little about data access rights.
  • +
    +

    This stuff is also the reason I never bothered hacking CPAP data Checksums... If they were public knowledge, people could alter SD data card content, which would not be cool.

    + + diff --git a/sleepyhead/help/help_nl/gettingstarted.html b/sleepyhead/help/help_nl/gettingstarted.html new file mode 100644 index 00000000..cb722ab5 --- /dev/null +++ b/sleepyhead/help/help_nl/gettingstarted.html @@ -0,0 +1,8 @@ + + + + + +

    Getting Started

    + + diff --git a/sleepyhead/help/help_nl/glossary.html b/sleepyhead/help/help_nl/glossary.html new file mode 100644 index 00000000..ef3a4877 --- /dev/null +++ b/sleepyhead/help/help_nl/glossary.html @@ -0,0 +1,556 @@ + + + + + +

    Glossary of Sleep Disorder Terminology

    +

    +A-Flex

    +

    +An +algorithm for adjusting CPAP pressure during the later stage of +inspiration and during exhalation to improve patient comfort based on +a user-defined gain setting.

    +

    +AHI

    +

    +Apnea/Hypopnea +Index. A count of apnea and hypopnea events per hour.

    +

    +Apnea

    +

    +An +apnea is indicated if there is an 80%/75% (Respironics/ResMed) +reduction in airflow for 10 seconds compared to the average airflow +over an extended period of several minutes or if there is no airflow +detected for 10 seconds.

    +

    +Apnea/Clear +Airway Apnea Detection the the Respironics System One.. An apnea is +detected when there is an 80% reduction in airflow from a baseline +for at least 10 seconds if there is no airflow detected for 10 +seconds. During the apnea, one or more pressure test pulses are +delivered by the device. The device evaluates the response of the +patient to the test pulse(s) and assesses whether the apnea has +occurred while the patient has a clear airway or an obstructed +airway. The airway is determined to be clear if the pressure test +pulse generates a significant amount of flow; otherwise the airway is +determined to be obstructed.

    +

    +Apnea +Detection guidelines per ResMed machines..Apnea...When the +respiratory flow decreases by more than 75% for at least 10 seconds.

    +

    +ASV

    +

    +Adaptive +Servo-Ventilation. Pertains to a low-pressure, electrically +driven ventilator system with electronic pressure control. The +device’s pressure controls are adjusted to deliver pressure +support for patient ventilatory assistance. The device augments +patient breathing by supplying pressurized air through a patient +circuit. It senses the patient’s breathing effort by monitoring +airflow in the patient circuit and adjusts its output to assist in +inhalation and exhalation.

    +

    +Auto-CPAP

    +

    +Continuous +Positive Airway Pressure (CPAP) that automatically titrates the +pressure up and down based on the varying requirements of the +patient.

    +

    +AVAPS

    +

    +Average +Volume Assured Pressure Support therapy mode

    +

    +Average AHI

    +

    +The +average AHI (Apnea/Hypopnea Index) is the total number of apneas and +hypopneas that occurred during sleep divided by the number of therapy +hours.

    +

    +Average Hours of Use

    +

    +The +total number of hours the patient received therapy divided by the +total days of use.

    +

    +Average Time in +Large Leak Per Day

    +

    +Displays +the average amount of time the patient spent with excessive air +leakage that will compromise therapy. This could be the result of +poor mask fitting.

    +

    +Bi-Flex

    +

    +A +small amount of pressure relief (levels of 1, 2, or 3) applied during +the latter stages of inspiration and during active exhalation (the +beginning part of exhalation).

    +

    +Bi-Level

    +

    +Two +different positive pressure levels (IPAP/EPAP). The dual pressure +levels provide a more natural means of delivering pressure support +therapy to the patient resulting in improved patient comfort. The +pressure toggles between an inspiratory and an expiratory pressure +during spontaneous breathing.

    +

    +BPM

    +

    +Breaths +per Minute, or beats per minute in the context of Heart Rate/Pulse +oximetry.

    +

    +C-Flex

    +

    +A +small amount of pressure relief applied during active exhalation (the +beginning part of exhalation).

    +

    +Cheyne-Stokes +Respiration

    +

    (pinched +from Wikipedia, full link: Cheyne-Stokes +respiration)

    +

    +Cheyne-Stokes +respiration is an abnormal pattern of breathing characterized by +progressively deeper and sometimes faster breathing, followed by a +gradual decrease that results in a temporary stop in breathing called +an apnea. The pattern repeats, with each cycle usually taking 30 +seconds to 2 minutes. It is an oscillation of ventilation between +apnea and hyperpnea with a crescendo-diminuendo pattern, and is +associated with changing serum partial pressures of oxygen and carbon +dioxide.

    +

    +Cheyne-Stokes +respiration and periodic breathing are the two regions on a spectrum +of severity of oscillatory tidal volume. The distinction lies in what +we observe happening at the trough of ventilation: if there is apnea, +we describe it as Cheyne-Stokes respiration (since apnea is a +prominent feature in their original description); if there is only +hypopnea (abnormally small but not absent breaths) then we call it +periodic breathing. Physiologically and mathematically, the phenomena +are less different than they appear, because breaths that are smaller +than the anatomical dead space do not actually ventilate the lung and +so - from the point of view of gas concentrations in an alveolus - +the nadir of hypopnea in periodic breathing may be indistinguishable +from apnea.

    +

    +These +phenomena can occur during wakefulness or during sleep, where they +are called the Central sleep apnea syndrome (CSAS).

    +

    +System +One calls lumps this together with Periodic breathing..

    +

    +cm H2O

    +

    +Measurement +unit of pressure; centimeters of water.

    +

    +Compliance

    +

    +The +consistency and accuracy with which a patient follows the regimen +prescribed by a physician or other health professional.

    +

    +Compliance Graph

    +

    +Provides +a view of the patient's therapy usage and the patient's compliance.

    +

    +CPAP

    +

    +Continuous +Positive Airway Pressure

    +

    +CSR

    +

    Short +for Cheyne-Stokes +Respiration

    +

    +Daily Events Per +Hour

    +

    +Number +of events per hour for one night of therapy.

    +

    +Desaturation

    +

    +An +indication that the patient's measured SpO2 is reduced by 3% or more.

    +

    +Diagnostic RDI

    +

    +Diagnostic +Respiratory Disturbance Index. The total number of breathing events +divided by the total sleep time without therapy.

    +

    +DME

    +

    +Distributor +of Durable Medical Equipment

    +

    +EPAP

    +

    +Expiratory +Positive Airway Pressure

    +

    +Exhaled Tidal Volume

    +

    +The +amount of air passing out of the lungs for each breath.

    +

    +FL

    +

    +Flow +Limitation is a partial obstruction of the airway as detected by a +change in the shape of the flow signal.

    +

    +Flow +Limitation Detection in Respironics System One..Auto Mode Only +scoring only..Straight CPap or Straight BiPap modes does not score +this event. The device looks for relative changes in the peak, +flatness, roundness, or shape (skewness) of the inspiratory portion +of the airflow waveform. These changes are observed both over a short +period of time (groups of 4 breaths) and over a long period of time +(several minutes). Statistical measures are used to help minimize +false event detection while allowing the device to be sensitive to +even small changes.

    +

    +Flow Limitation +Index

    +

    +Changes +in flow limitation are recorded as events. The Flow Limitation Index +is calculated by the total number of flow limitation events per night +divided by the hours of use. Note: The average is calculated by +taking the total number of events divided by the number of therapy +days. This can be used to indicate if there has been a significant +degradation in the flow signal, resulting in a pressure increase. +This value is only reported on auto pressure machines.

    +

    +GMT

    +

    +Greenwich +Mean Time (time zone), also known as Universal Coordinated Time (UTC)

    +

    +Hours of Usage

    +

    +Shows +patterns of use displayed by date.

    +

    +Hypopnea

    +

    +An +hypopnea is indicated if there is approximately 40% reduction in +airflow for a duration of between 10 and 60 seconds, compared to the +average airflow over an extended period of several minutes. Following +a reduction in airflow, the therapy device must see two recovery +breaths in order to label the event as a potential hypopnea. +(Respironics detection is 40% reduction and ResMed detection is 50% +reduction)

    +

    +Hypopnea Index

    +

    +The +Hypopnea Index is calculated by the total number of hypopnea events +per night divided by the hours of use.

    +

    +Hypopnea +Detection in the Respironics System One..A hyponea is detected when +there is an approximately 40% reduction in airflow from a baseline +for at least 10 seconds.

    +

    +Hypopnea +Detection per ResMed guidelines...When the respiratory flow decreases +to 50% for at least 10 seconds.

    +

    +IPAP

    +

    +Inspiratory +Positive Airway Pressure

    +

    +Leak

    +

    +The +amount of air leakage in the patient circuit.

    +

    +LL

    +

    +Large +Leak

    +

    +LPM

    +

    +Liters +per Minute..L/min

    +

    +MaP

    +

    +Minutes +at Pressure

    +

    +Mean Pressure

    +

    +Average +device pressure multiplied by the time at pressure divided by the +total time in the device.

    +

    +Minute Vent

    +

    +The +average minute ventilation (tidal volume x rate).

    +

    +NRAH Index

    +

    +Non-Responsive +Apnea/Hypopnea Index. A non-responsive apnea/hypopnea flag is +generated when a patient has apneas and or hypopneas that do not +respond to increased pressure from a pressure therapy device. It is +detected when the patient has at least 2 apneas and/or hypopneas, the +pressure level of the therapy device increases at least 3 cm H2O, and +the patient continues to have apneas and/or hypopneas. Total Events / +Total Session Hours = Index.

    +

    +Obstructive Apnea

    +

    +Obstructive +Apnea (OA) is a temporary cessation of airflow caused by a collapse +of the airway either full or partial without an accompanying +cessation of respiratory effort.

    +

    +Obstructive Apnea +Index

    +

    +The +Obstructive Apnea Index is calculated by the total number of +Obstructive Apnea events per night divided by the hours of use.

    +

    +OSA

    +

    +Obstructive +Sleep Apnea

    +

    +PB

    +

    +Periodic +Breathing is a Respironics data feature defined as a persistent +waning and waxing breathing pattrn which repeats itself between 30 +and 100 seconds. The nadir of the breathing pattern is characterized +by at least a 40% reduction in airflow from an established baseline +flow. The pattern must be present for several minutes before it can +be identified as periodic breathing. No therapy adjustments are made +in response to periodic breathing.

    +

    +Patient-Triggered +Breaths

    +

    +Breaths +initiated by the patient.

    +

    +Peak Average +Pressure

    +

    +The +largest average CPAP Pressure in the date range.

    +

    +Pressure

    +

    +Pressure +settings and average delivered pressures are indicated as colored +lines on reports.

    +

    +90% & 95% +Pressure reports

    +

    +90% +Pressure.. PR System One..The pressure at which the device spent 90% +of the time at OR below. 95% Pressure.. ResMed S9..The pressure at +which the device spent 95% of the time at OR below.

    +

    +Pressure Pulses

    +

    +Data +available on the Respironics System One machines. Small test probes +or puffs of air to help the machine decide if the apnea event is +obstructive in nature or clear airway in nature. This number can vary +widely and is of no real critical consequence to therapy.

    +

    +Pressure Support

    +

    +Difference +between IPAP and EPAP pressure on bi-level machines.

    +

    +Ramp

    +

    +During +ramp time, a patient starts therapy at a pressure lower than the +prescription. The pressure is incrementally increased over time while +the patient is falling asleep.

    +

    +Ramp Time

    +

    +The +time over which the pressure increases from the initial low-value, to +the prescription value.

    +

    +RERA

    +

    +Respiratory +Event Related Arousal... a sequence of breaths characterized +by increasing respiratory effort leading to an arousal from sleep, +but which does not meet criteria for an apnea or hypopnea.”

    +

    +RERA +Detection in the Respironics System One data..Respiratory +effort-related arousal..defined as an arousal from sleep that follows +a 10 second or longer sequence of breaths that are characterized by +increasing respiratory effort, but which does not meet criteria for +an apenea or hypopnea. Snoring, though usually associated with this +condition need not be present. The RERA algorithm monitors for a +sequence of breaths that exhibit both a subtle reduction in airflow +and progressive flow limitation. If this breath sequence is +terminated by a sudden increase in airflow along with the absence of +flow limitation, and the event does not meet the conditions for an +apnea or hypopnea, a RERA is indicated.

    +

    +RDI

    +

    +Respiratory +Disturbance Index

    +

    +REMstar Auto Flags

    +

    +Measurements +recorded in 30 second intervals for the following measures: NR = +Non-Responsive Apnea/Hypopnea event OA = Obstructive Apnea event H = +Hypopnea event FL = Flow Limitation event S = Snoring event AHI = +Apnea/Hypopnea Index (the sum of the Apneas and Hypopneas during the +night divided by the number of therapy hours).

    +

    +RR

    +

    +Respiration +Rate Frequency of breathing, expressed as the number of breaths per +minute

    +

    +S/T

    +

    +Spontaneous/Timed +therapy mode

    +

    +SD Card

    +

    +A +SD Card (Secure Digital Card) is an integrated circuit which is +housed in a compact, rugged plastic enclosure. SD Cards are designed +to store data and to enable the transfer of data between devices +equipped with SD Card slots.

    +

    +Session

    +

    +A +length of time in which therapy has been delivered with breaks +lasting no more than one hour.

    +

    +Sigh

    +

    +A +breath that is delivered every 100 mandatory or assisted breaths at +150% of the normal volume.

    +

    +Sleep Therapy Flags

    +

    +Measurements +recorded in 30 second intervals for the following measures: OA = +Obstructive Apnea event H = Hypopnea event S = Snoring event AHI = +Apnea/Hypopnea Index (the sum of the Apneas and Hypopneas during the +night divided by the number of therapy hours).

    +

    +SmartCard

    +

    +A +type of memory card inserted in some therapy devices that records the +patient's device usage information. The SmartCard can be removed for +easy download of the data into EncorePro.

    +

    +SmartCard +Reader/Writer

    +

    +The +SmartCard reader/writer is used to download compliance data from a +SmartCard.

    +

    +Snore

    +

    +A +loud upper airway breathing sound during sleep, without episodes of +apnea.

    +

    +Snore +detection in Respironics System One..Vibratory snore is detected when +a specific frequency is detected during the inspiratory portion of +the patient's breath. Vibratory snore is disabled at pressures +greater than 16 cm H2O.

    +

    +Split Night

    +

    +A +mode that enables the auto CPAP algorithm to be delayed by a +pre-selectable time interval.

    +

    +Ti

    +

    +Ti...ResMed..Duration +of inspiration (ie, the respiratory flow into the lungs), expressed +in seconds (5 breath moving average).

    +

    +Ti +Max...ResMed...Maximum inspiration time in seconds.

    +

    +Ti. +Min..ResMed..Minimum inspiration time in seconds.

    +

    +Tidal Volume

    +

    +The +amount of air passing in and out of the lungs for each breath (mL).

    +

    +Total AHI

    +

    +The +sum of the Apneas and Hypopneas divided by the number of therapy +hours.

    +

    +VAPS

    +

    +Volume +Assured Pressure Support, breath by breath correction towards a +target tidal volume.

    +

    +Vibratory Snore (VS) +Index

    +

    +The +Vibratory Snore Index is the total number of vibratory snoring events +per night divided by the hours of use.

    +

    +VTE

    +

    +Estimated +average exhaled tidal volume.

    +


    + +

    + + + diff --git a/sleepyhead/help/help_nl/help_nl.qhp b/sleepyhead/help/help_nl/help_nl.qhp new file mode 100644 index 00000000..f3637c7d --- /dev/null +++ b/sleepyhead/help/help_nl/help_nl.qhp @@ -0,0 +1,74 @@ + + + jedimark.net.SleepyHeadGuide + doc + + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ../default.css + *.html + *.png + + + diff --git a/sleepyhead/help/help_nl/import.html b/sleepyhead/help/help_nl/import.html new file mode 100644 index 00000000..1ff71b52 --- /dev/null +++ b/sleepyhead/help/help_nl/import.html @@ -0,0 +1,8 @@ + + + + + +

    Importing Data

    + + diff --git a/sleepyhead/help/help_nl/index.html b/sleepyhead/help/help_nl/index.html new file mode 100644 index 00000000..e6873575 --- /dev/null +++ b/sleepyhead/help/help_nl/index.html @@ -0,0 +1,25 @@ + + + + + + +Dutch translation +

    Contents

    + +
  • Introduction
  • +
  • Getting Started
  • +
  • Supported Machines
  • +
  • Importing CPAP Data
  • +
  • Exploring the Daily View
  • +
  • Exploring the Overview
  • +
  • Statistics and Trends
  • +
  • Glossary of Sleep Disorder Terminology
  • +
    +
    +

    SleepyHead

    +

    SleepyHead has been specially designed to help assist you in exploring data produced by CPAP (or APAP/BiPAP/ASV/AVAPS/etc) ventilators.

    +

    It provides advanced features such as flow waveform analysis to generate respiratory graphs, as well as custom event flagging capabilities.

    +

    Note to Testers:This help browser is just a stub to test the QHelpEngine, proper content and translation linkages have not been written yet

    + + diff --git a/sleepyhead/help/help_nl/overview.html b/sleepyhead/help/help_nl/overview.html new file mode 100644 index 00000000..71d49784 --- /dev/null +++ b/sleepyhead/help/help_nl/overview.html @@ -0,0 +1,8 @@ + + + + + +

    Exploring the Overview

    + + diff --git a/sleepyhead/help/help_nl/oximetry.html b/sleepyhead/help/help_nl/oximetry.html new file mode 100644 index 00000000..717af158 --- /dev/null +++ b/sleepyhead/help/help_nl/oximetry.html @@ -0,0 +1,8 @@ + + + + + +

    Using an Oximeter

    + + diff --git a/sleepyhead/help/help_nl/statistics.html b/sleepyhead/help/help_nl/statistics.html new file mode 100644 index 00000000..c37b315a --- /dev/null +++ b/sleepyhead/help/help_nl/statistics.html @@ -0,0 +1,8 @@ + + + + + +

    Statistics & Trends

    + + diff --git a/sleepyhead/help/help_nl/supported.html b/sleepyhead/help/help_nl/supported.html new file mode 100644 index 00000000..b6ac4629 --- /dev/null +++ b/sleepyhead/help/help_nl/supported.html @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    Ondersteunde Apparaten

    +Niet elk model dat er zo uitziet, wordt ondersteund ... De meeste zijn, maar sommige vervelende hebben nog onbekende datastructuren.
     

    ResMed


    ResMed S9 Family
    "Escape" models are bricks

    AirSense 10 Family

    AirCurve
     

    Philips Respironics


    System One

    System One 60 Series

    System One BIPAP/AutoSV

    DreamStation CPAP and ASV
      
     

    DeVilbiss


    Intellipap DV54

    DV64 Family
     
     

    Fisher & Paykel


    F & P Icon
    Last... and (*cough*) least.
      
    + + diff --git a/sleepyhead/help/help_nl/tipsntricks.html b/sleepyhead/help/help_nl/tipsntricks.html new file mode 100644 index 00000000..d6ff673f --- /dev/null +++ b/sleepyhead/help/help_nl/tipsntricks.html @@ -0,0 +1,19 @@ + + + + + +

    Tips & Tricks

    +

    Not so obvious control features

    + +
  • • Select an area by dragging with left button down, use right button to pan that area
  • +
  • • Hold down alt key to select an area without zooming in, hit B key to bookmark (while still holding alt), click outside of the area to cancel
  • +
  • • Hold down ctrl key to zoom in with mousewheel.
  • +
  • • Hit Escape key to return to previous zoom level.
  • + +
  • • Press F8 to show/hide the entire left panel in daily view
  • +
  • • Press F9 to show/hide calendar in daily view
  • +
  • • Press F10 to show/hide the right side navigation bar
  • +
    + + diff --git a/sleepyhead/icons/fp_icon.png b/sleepyhead/icons/fp_icon.png index aa003d3d..e9a20bb9 100644 Binary files a/sleepyhead/icons/fp_icon.png and b/sleepyhead/icons/fp_icon.png differ diff --git a/sleepyhead/main.cpp b/sleepyhead/main.cpp index e882842f..f03cab21 100644 --- a/sleepyhead/main.cpp +++ b/sleepyhead/main.cpp @@ -54,7 +54,7 @@ int compareVersion(QString version); /*void MigrateSettings() { - QSettings settings(getDeveloperName(), getAppName()); + QSettings settings; if (settings.contains("Version")) { return; } // done, we are new QSettings oldcopy(getDeveloperName(), getAppName()+"-Testing"); @@ -88,9 +88,11 @@ int main(int argc, char *argv[]) QString load_profile = ""; QApplication a(argc, argv); - QStringList args = QCoreApplication::arguments(); + a.setApplicationName(getAppName()); + a.setOrganizationName(getDeveloperName()); + QStringList args = a.arguments(); - QSettings settings(getDeveloperName(), getAppName()); + QSettings settings; QString lastlanguage = settings.value(LangSetting, "").toString(); if (lastlanguage.isEmpty()) @@ -136,7 +138,7 @@ int main(int argc, char *argv[]) //////////////////////////////////////////////////////////////////////////////////////////// // Language Selection //////////////////////////////////////////////////////////////////////////////////////////// - initTranslations(settings); + initTranslations(); initializeStrings(); // Important, call this AFTER translator is installed. a.setApplicationName(STR_TR_SleepyHead); diff --git a/sleepyhead/mainwindow.cpp b/sleepyhead/mainwindow.cpp index 94bbef82..336dd1a5 100644 --- a/sleepyhead/mainwindow.cpp +++ b/sleepyhead/mainwindow.cpp @@ -76,7 +76,7 @@ MainWindow::MainWindow(QWidget *parent) : } // Initialise sleepyHead app registry stuff - QSettings settings(getDeveloperName(), getAppName()); + QSettings settings; // Load previous Window geometry (this is currently broken on Mac as of Qt5.2.1) restoreGeometry(settings.value("MainWindow/geometry").toByteArray()); @@ -246,7 +246,7 @@ void MainWindow::closeEvent(QCloseEvent * event) Profiles::Done(); // Save current window position - QSettings settings(getDeveloperName(), getAppName()); + QSettings settings; settings.setValue("MainWindow/geometry", saveGeometry()); // Trash anything allocated by the Graph objects @@ -2452,7 +2452,7 @@ void MainWindow::on_mainsplitter_splitterMoved(int, int) #include "translation.h" void MainWindow::on_actionReport_a_Bug_triggered() { - QSettings settings(getDeveloperName(), getAppName()); + QSettings settings; QString language = settings.value(LangSetting).toString(); QDesktopServices::openUrl(QUrl(QString("https://sleepyhead.jedimark.net/report_bugs.php?lang=%1&version=%2&platform=%3").arg(language).arg(VersionString).arg(PlatformString))); diff --git a/sleepyhead/newprofile.cpp b/sleepyhead/newprofile.cpp index abb5c734..0e30a279 100644 --- a/sleepyhead/newprofile.cpp +++ b/sleepyhead/newprofile.cpp @@ -139,8 +139,6 @@ void NewProfile::on_nextButton_clicked() { const QString xmlext = ".xml"; - QSettings settings(getDeveloperName(), getAppName()); - int index = ui->stackedWidget->currentIndex(); switch (index) { diff --git a/sleepyhead/sleepyhead.pro b/sleepyhead/sleepyhead.pro index 8185f05d..5701ac8d 100644 --- a/sleepyhead/sleepyhead.pro +++ b/sleepyhead/sleepyhead.pro @@ -125,7 +125,6 @@ macx { } TRANS_FILES += $$PWD/../Translations/*.qm HELP_FILES += $$PWD/help/*.qch - HELP_FILES += $$PWD/help/help.qhc win32 { TRANS_FILES_WIN = $${TRANS_FILES} @@ -335,9 +334,7 @@ OTHER_FILES += \ DISTFILES += \ ../README \ - help/compile.sh \ help/default.css \ - help/help_en.qhp \ help/help_en/daily.html \ help/help_en/glossary.html \ help/help_en/import.html \ @@ -349,4 +346,17 @@ DISTFILES += \ help/help_en/gettingstarted.html \ help/help_en/tipsntricks.html \ help/help_en/faq.html \ - help/help.qhcp + help/help.qhcp \ + help/help_nl/daily.html \ + help/help_nl/faq.html \ + help/help_nl/gettingstarted.html \ + help/help_nl/glossary.html \ + help/help_nl/import.html \ + help/help_nl/index.html \ + help/help_nl/overview.html \ + help/help_nl/oximetry.html \ + help/help_nl/statistics.html \ + help/help_nl/supported.html \ + help/help_nl/tipsntricks.html \ + help/help_nl/help_nl.qhp \ + help/help_en/help_en.qhp diff --git a/sleepyhead/translation.cpp b/sleepyhead/translation.cpp index 8a54ea72..41699e0e 100644 --- a/sleepyhead/translation.cpp +++ b/sleepyhead/translation.cpp @@ -27,19 +27,34 @@ //#endif #include "translation.h" +QHash langNames; -void initTranslations(QSettings & settings) { +QString currentLanguage() +{ + QSettings settings; + return settings.value(LangSetting).toString(); +} +QString lookupLanguageName(QString language) +{ + auto it = langNames.find(language); + if (it != langNames.end()) { + return it.value(); + } + return language; +} + +void initTranslations() { // (Ordinary character sets will just use the name before the first '.' in the filename.) // (This u8 stuff deliberately kills Qt4.x build support - if you know another way feel free to // change it, but Qt4 support is still going to die sooner or later) // Add any languages with special character set needs to this list - QHash langNames; langNames["zh"] = "\xe6\xbc\xa2\xe8\xaa\x9e\xe7\xb9\x81\xe9\xab\x94\xe5\xad\x97"; langNames["es"] = "Espa\xc3\xb1ol"; langNames["bg"] = "\xd0\xb1\xd1\x8a\xd0\xbb\xd0\xb3\xd0\xb0\xd1\x80\xd1\x81\xd0\xba\xd0\xb8"; langNames["fr"] = "\x46\x72\x61\x6e\xc3\xa7\x61\x69\x73"; - langNames["en_UK"] = "English UK"; + langNames["en_UK"] = "English (UK)"; + langNames["en_US"] = "English (US)"; // CHECK: Will the above break with MS VisualC++ compiler? QHash langFiles; @@ -52,6 +67,8 @@ void initTranslations(QSettings & settings) { dir.setNameFilters(QStringList("*.qm")); QFileInfoList list = dir.entryInfoList(); + + QSettings settings; QString language = settings.value(LangSetting).toString(); QString langfile, langname; diff --git a/sleepyhead/translation.h b/sleepyhead/translation.h index 8a26fb98..2e6d0d4a 100644 --- a/sleepyhead/translation.h +++ b/sleepyhead/translation.h @@ -1,4 +1,4 @@ -/* Multilingual Support header +/* Multilingual Support header * * Copyright (c) 2011-2018 Mark Watkins * @@ -9,10 +9,12 @@ #ifndef TRANSLATION_H #define TRANSLATION_H -#include - +#include +const QString DefaultLanguage = "en_US"; const QString LangSetting = "Settings/Language"; -void initTranslations(QSettings & settings); +void initTranslations(); +QString currentLanguage(); +QString lookupLanguageName(QString language); #endif // TRANSLATION_H