mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Added support for multilanguage help documentation
This commit is contained in:
parent
16e9883103
commit
241b1f8de6
@ -55,5 +55,6 @@
|
||||
<file>icons/dv64.png</file>
|
||||
<file>icons/overview-page.png</file>
|
||||
<file>docs/GPLv3-en_US</file>
|
||||
<file>icons/fp_icon.png</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
@ -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);
|
||||
|
@ -59,7 +59,7 @@ const QString &getUserName()
|
||||
|
||||
QString GetAppRoot()
|
||||
{
|
||||
QSettings settings(getDeveloperName(), getAppName());
|
||||
QSettings settings;
|
||||
|
||||
QString HomeAppRoot = settings.value("Settings/AppRoot").toString();
|
||||
|
||||
|
@ -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";
|
||||
|
@ -10,31 +10,74 @@
|
||||
#include <QtHelp>
|
||||
#include <QDebug>
|
||||
#include <QTimer>
|
||||
#include <QFile>
|
||||
#include <QDir>
|
||||
|
||||
#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<QUrl> 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("<h1>Attention Source Builder</h1><br/><p>No help files detected.. QMake (or you) first need(s) to run <b>qcollectiongenerator</b></p><p>While we are at it, search is broken at the moment, titles are not showing up.</p>");
|
||||
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 = "<html><body><div align=\"center\" valign=\"center\"><img src=\"qrc://docs/sheep.png\"><br/><h2>No documentation available</h2></div></body></html>";
|
||||
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);
|
||||
}
|
||||
|
@ -11,7 +11,6 @@
|
||||
|
||||
#include <QPrinter>
|
||||
#include <QHelpEngine>
|
||||
#include <QTextBrowser>
|
||||
#include <QTabWidget>
|
||||
#include <QWidget>
|
||||
#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
|
||||
|
@ -10,6 +10,12 @@
|
||||
<height>602</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Form</string>
|
||||
</property>
|
||||
@ -29,6 +35,67 @@
|
||||
<property name="bottomMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QFrame" name="languageWarning">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">background: rgb(100, 100, 100);
|
||||
color: rgb(255,255,255);</string>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::StyledPanel</enum>
|
||||
</property>
|
||||
<property name="frameShadow">
|
||||
<enum>QFrame::Raised</enum>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||
<item>
|
||||
<widget class="QLabel" name="languageWarningMessage">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="font">
|
||||
<font>
|
||||
<weight>75</weight>
|
||||
<bold>true</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true"/>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="languageWarningCheckbox">
|
||||
<property name="text">
|
||||
<string>Hide this message</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QWidget" name="widget" native="true">
|
||||
<property name="sizePolicy">
|
||||
|
@ -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
|
@ -3,12 +3,17 @@
|
||||
<docFiles>
|
||||
<generate>
|
||||
<file>
|
||||
<input>help_en.qhp</input>
|
||||
<output>help_en.qch</output>
|
||||
<input>help_en/help_en.qhp</input>
|
||||
<output>help.en_US.qch</output>
|
||||
</file>
|
||||
<file>
|
||||
<input>help_nl/help_nl.qhp</input>
|
||||
<output>help.nl.qch</output>
|
||||
</file>
|
||||
</generate>
|
||||
<register>
|
||||
<file>help_en.qch</file>
|
||||
<file>help.nl.qch</file>
|
||||
<file>help.en_US.qch</file>
|
||||
</register>
|
||||
</docFiles>
|
||||
</QHelpCollectionProject>
|
||||
|
@ -1,90 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<QtHelpProject version="1.0">
|
||||
<namespace>jedimark.net.SleepyHead.1.1</namespace>
|
||||
<virtualFolder>doc</virtualFolder>
|
||||
<customFilter name="SleepyHead 1.1">
|
||||
<filterAttribute>myapp</filterAttribute>
|
||||
<filterAttribute>1.0</filterAttribute>
|
||||
</customFilter>
|
||||
<filterSection>
|
||||
<filterAttribute>myapp</filterAttribute>
|
||||
<filterAttribute>1.0</filterAttribute>
|
||||
<toc>
|
||||
<section title="SleepyHead Manual" ref="help_en/index.html">
|
||||
<section title="Introduction" ref="./help_en/index.html#intro"/>
|
||||
<section title="Getting Started" ref="./help_en/gettingstarted.html"/>
|
||||
<section title="Supported Machines" ref="./help_en/supported.html"/>
|
||||
<section title="Importing CPAP Data" ref="./help_en/import.html"/>
|
||||
<section title="Exploring Daily View" ref="./help_en/daily.html"/>
|
||||
<section title="Overview" ref="./help_en/overview.html"/>
|
||||
<section title="Statistics and Trends" ref="./help_en/statistics.html"/>
|
||||
<section title="Using an Oximeter" ref="./help_en/oximetry.html"/>
|
||||
<section title="Tips & Tricks" ref="./help_en/tipsntricks.html"/>
|
||||
<section title="Frequently Asked Questions" ref="./help_en/faq.html"/>
|
||||
<section title="Glossary of terminiology used" ref="./help_en/glossary.html">
|
||||
<section title="A-Flex" ref="./help_en/glossary.html#A-Flex"/>
|
||||
<section title="Bi-Flex" ref="./help_en/glossary.html#Bi-Flex"/>
|
||||
<section title="CPAP" ref="./help_en/glossary.html#CPAP"/>
|
||||
<section title="DME" ref="./help_en/glossary.html#DME"/>
|
||||
<section title="EPAP" ref="./help_en/glossary.html#EPAP"/>
|
||||
<section title="Flow Limitation" ref="./help_en/glossary.html#FL"/>
|
||||
<section title="Hypopnea" ref="./help_en/glossary.html#Hypopnea"/>
|
||||
<section title="IPAP" ref="./help_en/glossary.html#IPAP"/>
|
||||
<section title="Leak" ref="./help_en/glossary.html#Leak"/>
|
||||
<section title="Minute Vent" ref="./help_en/glossary.html#Minute_Vent"/>
|
||||
<section title="Obstructive Apnea" ref="./help_en/glossary.html#Obstructive_Apnea"/>
|
||||
<section title="PB" ref="./help_en/glossary.html#PB"/>
|
||||
<section title="Ramp" ref="./help_en/glossary.html#Ramp"/>
|
||||
<section title="Session" ref="./help_en/glossary.html#Session"/>
|
||||
<section title="Tidal Volume" ref="./help_en/glossary.html#Tidal_Volume"/>
|
||||
<section title="Vibratory Snore (VS)" ref="./help_en/glossary.html#Vibratory_Snore_.28VS.29_Index"/>
|
||||
</section>
|
||||
</section>
|
||||
</toc>
|
||||
<keywords>
|
||||
<keyword name="resmed" ref="./help_en/supported.html#resmed"/>
|
||||
<keyword name="philips" ref="./help_en/supported.html#philips"/>
|
||||
<keyword name="devilbiss" ref="./help_en/supported.html#devilbiss"/>
|
||||
<keyword name="intelipap" ref="./help_en/supported.html#devilbiss"/>
|
||||
<keyword name="fisher" ref="./help_en/supported.html#fishpaykel"/>
|
||||
<keyword name="fisher" ref="./help_en/supported.html#fishpaykel"/>
|
||||
<keyword name="icon" ref="./help_en/supported.html#fishpaykel"/>
|
||||
<keyword name="import" ref="./help_en/import.html"/>
|
||||
<keyword name="A-Flex" ref="./help_en/glossary.html#A-Flex"/>
|
||||
<keyword name="Bi-Flex" ref="./help_en/glossary.html#Bi-Flex"/>
|
||||
<keyword name="CPAP" ref="./help_en/glossary.html#CPAP"/>
|
||||
<keyword name="DME" ref="./help_en/glossary.html#DME"/>
|
||||
<keyword name="EPAP" ref="./help_en/glossary.html#EPAP"/>
|
||||
<keyword name="Flow Limitation" ref="./help_en/glossary.html#FL"/>
|
||||
<keyword name="FL" ref="./help_en/glossary.html#FL"/>
|
||||
<keyword name="Hypopnea" ref="./help_en/glossary.html#Hypopnea"/>
|
||||
<keyword name="HY" ref="./help_en/glossary.html#Hypopnea"/>
|
||||
<keyword name="IPAP" ref="./help_en/glossary.html#IPAP"/>
|
||||
<keyword name="Leak" ref="./help_en/glossary.html#Leak"/>
|
||||
<keyword name="Minute Vent" ref="./help_en/glossary.html#Minute_Vent"/>
|
||||
<keyword name="Obstructive Apnea" ref="./help_en/glossary.html#Obstructive_Apnea"/>
|
||||
<keyword name="OA" ref="./help_en/glossary.html#Obstructive_Apnea"/>
|
||||
<keyword name="PB" ref="./help_en/glossary.html#PB"/>
|
||||
<keyword name="Ramp" ref="./help_en/glossary.html#Ramp"/>
|
||||
<keyword name="Session" ref="./help_en/glossary.html#Session"/>
|
||||
<keyword name="Tidal Volume" ref="./help_en/glossary.html#Tidal_Volume"/>
|
||||
<keyword name="Vibratory Snore" ref="./help_en/glossary.html#Vibratory_Snore_.28VS.29_Index"/>
|
||||
<keyword name="VS" ref="./help_en/glossary.html#Vibratory_Snore_.28VS.29_Index"/>
|
||||
</keywords>
|
||||
<files>
|
||||
<file>default.css</file>
|
||||
<file>help_en/daily.html</file>
|
||||
<file>help_en/faq.html</file>
|
||||
<file>help_en/gettingstarted.html</file>
|
||||
<file>help_en/glossary.html</file>
|
||||
<file>help_en/import.html</file>
|
||||
<file>help_en/index.html</file>
|
||||
<file>help_en/overview.html</file>
|
||||
<file>help_en/oximetry.html</file>
|
||||
<file>help_en/statistics.html</file>
|
||||
<file>help_en/supported.html</file>
|
||||
<file>help_en/tipsntricks.html</file>
|
||||
<file>images/*.png</file>
|
||||
</files>
|
||||
</filterSection>
|
||||
</QtHelpProject>
|
74
sleepyhead/help/help_en/help_en.qhp
Normal file
74
sleepyhead/help/help_en/help_en.qhp
Normal file
@ -0,0 +1,74 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<QtHelpProject version="1.0">
|
||||
<namespace>jedimark.net.SleepyHeadGuide</namespace>
|
||||
<virtualFolder>doc</virtualFolder>
|
||||
<filterSection>
|
||||
<toc>
|
||||
<section title="SleepyHead Manual" ref="index.html">
|
||||
<section title="Introduction" ref="index.html#intro"/>
|
||||
<section title="Getting Started" ref="gettingstarted.html"/>
|
||||
<section title="Supported Machines" ref="supported.html"/>
|
||||
<section title="Importing CPAP Data" ref="import.html"/>
|
||||
<section title="Exploring Daily View" ref="daily.html"/>
|
||||
<section title="Overview" ref="overview.html"/>
|
||||
<section title="Statistics and Trends" ref="statistics.html"/>
|
||||
<section title="Using an Oximeter" ref="oximetry.html"/>
|
||||
<section title="Tips & Tricks" ref="tipsntricks.html"/>
|
||||
<section title="Frequently Asked Questions" ref="faq.html"/>
|
||||
<section title="Glossary of terminiology used" ref="glossary.html">
|
||||
<section title="A-Flex" ref="glossary.html#A-Flex"/>
|
||||
<section title="Bi-Flex" ref="glossary.html#Bi-Flex"/>
|
||||
<section title="CPAP" ref="glossary.html#CPAP"/>
|
||||
<section title="DME" ref="glossary.html#DME"/>
|
||||
<section title="EPAP" ref="glossary.html#EPAP"/>
|
||||
<section title="Flow Limitation" ref="glossary.html#FL"/>
|
||||
<section title="Hypopnea" ref="glossary.html#Hypopnea"/>
|
||||
<section title="IPAP" ref="glossary.html#IPAP"/>
|
||||
<section title="Leak" ref="glossary.html#Leak"/>
|
||||
<section title="Minute Vent" ref="glossary.html#Minute_Vent"/>
|
||||
<section title="Obstructive Apnea" ref="glossary.html#Obstructive_Apnea"/>
|
||||
<section title="PB" ref="glossary.html#PB"/>
|
||||
<section title="Ramp" ref="glossary.html#Ramp"/>
|
||||
<section title="Session" ref="glossary.html#Session"/>
|
||||
<section title="Tidal Volume" ref="glossary.html#Tidal_Volume"/>
|
||||
<section title="Vibratory Snore (VS)" ref="glossary.html#Vibratory_Snore_.28VS.29_Index"/>
|
||||
</section>
|
||||
</section>
|
||||
</toc>
|
||||
<keywords>
|
||||
<keyword name="resmed" ref="supported.html#resmed"/>
|
||||
<keyword name="philips" ref="supported.html#philips"/>
|
||||
<keyword name="devilbiss" ref="supported.html#devilbiss"/>
|
||||
<keyword name="intelipap" ref="supported.html#devilbiss"/>
|
||||
<keyword name="fisher" ref="supported.html#fishpaykel"/>
|
||||
<keyword name="fisher" ref="supported.html#fishpaykel"/>
|
||||
<keyword name="icon" ref="supported.html#fishpaykel"/>
|
||||
<keyword name="import" ref="import.html"/>
|
||||
<keyword name="A-Flex" ref="glossary.html#A-Flex"/>
|
||||
<keyword name="Bi-Flex" ref="glossary.html#Bi-Flex"/>
|
||||
<keyword name="CPAP" ref="glossary.html#CPAP"/>
|
||||
<keyword name="DME" ref="glossary.html#DME"/>
|
||||
<keyword name="EPAP" ref="glossary.html#EPAP"/>
|
||||
<keyword name="Flow Limitation" ref="glossary.html#FL"/>
|
||||
<keyword name="FL" ref="glossary.html#FL"/>
|
||||
<keyword name="Hypopnea" ref="glossary.html#Hypopnea"/>
|
||||
<keyword name="HY" ref="glossary.html#Hypopnea"/>
|
||||
<keyword name="IPAP" ref="glossary.html#IPAP"/>
|
||||
<keyword name="Leak" ref="glossary.html#Leak"/>
|
||||
<keyword name="Minute Vent" ref="glossary.html#Minute_Vent"/>
|
||||
<keyword name="Obstructive Apnea" ref="glossary.html#Obstructive_Apnea"/>
|
||||
<keyword name="OA" ref="glossary.html#Obstructive_Apnea"/>
|
||||
<keyword name="PB" ref="glossary.html#PB"/>
|
||||
<keyword name="Ramp" ref="glossary.html#Ramp"/>
|
||||
<keyword name="Session" ref="glossary.html#Session"/>
|
||||
<keyword name="Tidal Volume" ref="glossary.html#Tidal_Volume"/>
|
||||
<keyword name="Vibratory Snore" ref="glossary.html#Vibratory_Snore_.28VS.29_Index"/>
|
||||
<keyword name="VS" ref="glossary.html#Vibratory_Snore_.28VS.29_Index"/>
|
||||
</keywords>
|
||||
<files>
|
||||
<file>../default.css</file>
|
||||
<file>*.html</file>
|
||||
<file>*.png</file>
|
||||
</files>
|
||||
</filterSection>
|
||||
</QtHelpProject>
|
@ -3,7 +3,7 @@
|
||||
<link rel="stylesheet" type="text/css" href="/default.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<img src="/images/sheep.png">
|
||||
<img src="qrc:/docs/sheep.png">
|
||||
<h3>Contents</h3>
|
||||
<list>
|
||||
<li><a href="/help_en/index.html#intro">Introduction</a></li>
|
||||
|
@ -4,36 +4,38 @@
|
||||
</head>
|
||||
<body>
|
||||
<table width="100%">
|
||||
<tr><td colspan=3 align="center"><h1>Supported CPAP Machines</h1></td></tr>
|
||||
<tr><td colspan=3 align="center"><h1>Supported CPAP Machines</h1>
|
||||
Not every model that looks like these is supported... Most are, yet some annoyingly have unique and yet unseen/unhacked data structures.
|
||||
</td></tr>
|
||||
<tr><td colspan=3> </td></tr>
|
||||
<tr><td align="center" colspan=3 bgcolor=><a href="#resmed"/><h2>ResMed</h2></td></tr>
|
||||
<tr>
|
||||
<td align="center"><img src="/images/rms9.png"/><br/>ResMed S9 Family<br/>"Escape" models are bricks</td>
|
||||
<td align="center"><img src="/images/airsense10.png"/><br/>AirSense 10 Family</td>
|
||||
<td align="center"><img src="/images/aircurve.png"/><br/>AirCurve</td>
|
||||
<td align="center"><img src="qrc:/icons/rms9.png"/><br/>ResMed S9 Family<br/>"Escape" models are bricks</td>
|
||||
<td align="center"><img src="qrc:/icons/airsense10.png"/><br/>AirSense 10 Family</td>
|
||||
<td align="center"><img src="qrc:/icons/aircurve.png"/><br/>AirCurve</td>
|
||||
</tr>
|
||||
<tr><td colspan=3> </td></tr>
|
||||
<tr><td align="center" colspan=3><a href="#philips"/><h2>Philips Respironics</h2></tr>
|
||||
<tr>
|
||||
<td align="center"><img src="/images/prs1.png"/><br/>System One</td>
|
||||
<td align="center"><img src="/images/prs1_60s.png"/><br/>System One 60 Series</td>
|
||||
<td align="center"><img src="/images/prs1_960.png"/><br/>System One BIPAP/AutoSV</td>
|
||||
<td align="center"><img src="qrc:/icons/prs1.png"/><br/>System One</td>
|
||||
<td align="center"><img src="qrc:/icons/prs1_60s.png"/><br/>System One 60 Series</td>
|
||||
<td align="center"><img src="qrc:/icons/prs1_960.png"/><br/>System One BIPAP/AutoSV</td>
|
||||
</tr><tr>
|
||||
<td align="center"><img src="/images/dreamstation.png"/><br/>DreamStation CPAP and ASV</td>
|
||||
<td align="center"><img src="qrc:/icons/dreamstation.png"/><br/>DreamStation CPAP and ASV</td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr><td colspan=3> </td></tr>
|
||||
<tr><td align="center" colspan=3><a href="#devilbiss"/><h2>DeVilbiss</h2></td></tr>
|
||||
<tr>
|
||||
<td align="center"><br/>DV64 Family</td>
|
||||
<td align="center"><br/>Intellipap DV54</td>
|
||||
<td align="center"><img src="qrc:/icons/intellipap.png"/><br/>Intellipap DV54</td>
|
||||
<td align="center"><img src="qrc:/icons/dv64.png"/><br/>DV64 Family</td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr><td colspan=3> </td></tr>
|
||||
<tr><td align="center" colspan=3><a href="#fishpaykel"/><h2>Fisher & Paykel</h2></td></tr>
|
||||
<tr>
|
||||
<td align="center"><br/>ICON</td>
|
||||
<td align="center"><img src="qrc:/icons/fp_icon.png"/><br/>F & P Icon<br/>Last... and (*cough*) least.</td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr></table>
|
||||
|
8
sleepyhead/help/help_nl/daily.html
Normal file
8
sleepyhead/help/help_nl/daily.html
Normal file
@ -0,0 +1,8 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/default.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Exploring the Daily View</h1>
|
||||
</body>
|
||||
</html>
|
28
sleepyhead/help/help_nl/faq.html
Normal file
28
sleepyhead/help/help_nl/faq.html
Normal file
@ -0,0 +1,28 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/default.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Frequently Asked Questions</h1>
|
||||
<a href="#supportmymachine"/><h3>Why doesn't SleepyHead support [insert obscure/new device] yet?</h3>
|
||||
<p>Plenty of reasons.. Pick your favourite:</p>
|
||||
<list>
|
||||
<li>• Because the 5 people who own one can't supply enough data to see all possible event codes?</li>
|
||||
<li>• Because it doesn't feature a flow waveform and would be boring?</li>
|
||||
<li>• Because one unpaid developer can only hack, create, and maintain so many importers before they go insane?</li>
|
||||
<li>• 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?</li>
|
||||
<li>• Because the build quality perhaps is garbage and nobody should own one?</li>
|
||||
<li>• Because nobody else is interested in helping hack the formats?</li>
|
||||
<li>• Because I prefer hands on and rarely get to play with/hack on the hardware directly?</li>
|
||||
</list>
|
||||
<a href="#compliance"/><h3>Why doesn't SleepyHead let me generate <i>compliance</i> reports?</h3>
|
||||
<p>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:</p>
|
||||
<list>
|
||||
<li>• It's far too easy to change the source code to fake compliance reports.</li>
|
||||
<li>• Do you like the idea of sharing the road with truck drivers with an untreated sleep disorder who faked compliance data?</li>
|
||||
<li>• Data Formats of CPAP machines in SleepyHead had to be hacked because manufacturers don't release documentation, and accuracy can't be guaranteed.</li>
|
||||
<li>• 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.</li>
|
||||
</list>
|
||||
<p>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.</p>
|
||||
</body>
|
||||
</html>
|
8
sleepyhead/help/help_nl/gettingstarted.html
Normal file
8
sleepyhead/help/help_nl/gettingstarted.html
Normal file
@ -0,0 +1,8 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/default.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Getting Started</h1>
|
||||
</body>
|
||||
</html>
|
556
sleepyhead/help/help_nl/glossary.html
Normal file
556
sleepyhead/help/help_nl/glossary.html
Normal file
@ -0,0 +1,556 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/default.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Glossary of Sleep Disorder Terminology</h1>
|
||||
<h3 class="western" style="font-variant: normal; letter-spacing: normal; font-style: normal"><a name="A-Flex"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>A-Flex</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="AHI"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>AHI</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Apnea/Hypopnea
|
||||
Index. A count of apnea and hypopnea events per hour.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Apnea"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Apnea</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Apnea
|
||||
Detection guidelines per ResMed machines..Apnea...When the
|
||||
respiratory flow decreases by more than 75% for at least 10 seconds.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="ASV"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>ASV</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt"><b>Adaptive
|
||||
Servo-Ventilation</b>. 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.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Auto-CPAP"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Auto-CPAP</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Continuous
|
||||
Positive Airway Pressure (CPAP) that automatically titrates the
|
||||
pressure up and down based on the varying requirements of the
|
||||
patient.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="AVAPS"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>AVAPS</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Average
|
||||
Volume Assured Pressure Support therapy mode</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Average_AHI"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Average AHI</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Average_Hours_of_Use"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Average Hours of Use</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">The
|
||||
total number of hours the patient received therapy divided by the
|
||||
total days of use.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Average_Time_in_Large_Leak_Per_Day"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Average Time in
|
||||
Large Leak Per Day</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Bi-Flex"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Bi-Flex</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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).</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Bi-Level"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Bi-Level</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="BPM"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>BPM</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Breaths
|
||||
per Minute, or beats per minute in the context of Heart Rate/Pulse
|
||||
oximetry.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="C-Flex"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>C-Flex</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">A
|
||||
small amount of pressure relief applied during active exhalation (the
|
||||
beginning part of exhalation).</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Cheyne-Stokes_Respiration"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Cheyne-Stokes
|
||||
Respiration</b></font></font></h3>
|
||||
<p style="orphans: 2; widows: 2"><span style="font-variant: normal"><font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">(pinched
|
||||
from Wikipedia, full link: </span></span></span></font></font></font></span><span style="display: inline-block; border: none; padding: 0cm"><span style="font-variant: normal"><font color="#663366"><span style="text-decoration: none"><font face="sans-serif"><font size="2" style="font-size: 10pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal"><span style="background: transparent"><a href="http://en.wikipedia.org/wiki/Cheyne-Stokes_respiration">Cheyne-Stokes
|
||||
respiration</span></span></span></span></span></font></font></span></font></span></a><span style="font-variant: normal"><font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">)</span></span></span></font></font></font></span></p>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">These
|
||||
phenomena can occur during wakefulness or during sleep, where they
|
||||
are called the Central sleep apnea syndrome (CSAS).</font></font></font></p>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">System
|
||||
One calls lumps this together with Periodic breathing..</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="cm_H2O"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>cm H2O</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Measurement
|
||||
unit of pressure; centimeters of water.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Compliance"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Compliance</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">The
|
||||
consistency and accuracy with which a patient follows the regimen
|
||||
prescribed by a physician or other health professional.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Compliance_Graph"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Compliance Graph</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Provides
|
||||
a view of the patient's therapy usage and the patient's compliance.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="CPAP"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>CPAP</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Continuous
|
||||
Positive Airway Pressure</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="CSR"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>CSR</b></font></font></h3>
|
||||
<p style="orphans: 2; widows: 2"><span style="font-variant: normal"><font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">Short
|
||||
for </span></span></span></font></font></font></span><a href="http://sleepyhead.sourceforge.net/wiki/index.php/Sleep_Disorder_Glossary#Cheyne-Stokes_Respiration"><span style="font-variant: normal"><font color="#0b0080"><span style="text-decoration: none"><font face="sans-serif"><font size="2" style="font-size: 10pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">Cheyne-Stokes
|
||||
Respiration</span></span></span></font></font></span></font></span></a></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Daily_Events_Per_Hour"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Daily Events Per
|
||||
Hour</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Number
|
||||
of events per hour for one night of therapy.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Desaturation"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Desaturation</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">An
|
||||
indication that the patient's measured SpO2 is reduced by 3% or more.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Diagnostic_RDI"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Diagnostic RDI</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Diagnostic
|
||||
Respiratory Disturbance Index. The total number of breathing events
|
||||
divided by the total sleep time without therapy.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="DME"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>DME</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Distributor
|
||||
of Durable Medical Equipment</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="EPAP"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>EPAP</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Expiratory
|
||||
Positive Airway Pressure</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Exhaled_Tidal_Volume"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Exhaled Tidal Volume</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">The
|
||||
amount of air passing out of the lungs for each breath.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="FL"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>FL</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Flow
|
||||
Limitation is a partial obstruction of the airway as detected by a
|
||||
change in the shape of the flow signal.</font></font></font></p>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Flow_Limitation_Index"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Flow Limitation
|
||||
Index</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="GMT"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>GMT</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Greenwich
|
||||
Mean Time (time zone), also known as Universal Coordinated Time (UTC)</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Hours_of_Usage"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Hours of Usage</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Shows
|
||||
patterns of use displayed by date.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Hypopnea"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Hypopnea</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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)</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Hypopnea_Index"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Hypopnea Index</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">The
|
||||
Hypopnea Index is calculated by the total number of hypopnea events
|
||||
per night divided by the hours of use.</font></font></font></p>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Hypopnea
|
||||
Detection per ResMed guidelines...When the respiratory flow decreases
|
||||
to 50% for at least 10 seconds.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="IPAP"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>IPAP</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Inspiratory
|
||||
Positive Airway Pressure</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Leak"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Leak</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">The
|
||||
amount of air leakage in the patient circuit.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="LL"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>LL</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Large
|
||||
Leak</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="LPM"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>LPM</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Liters
|
||||
per Minute..L/min</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="MaP"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>MaP</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Minutes
|
||||
at Pressure</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Mean_Pressure"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Mean Pressure</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Average
|
||||
device pressure multiplied by the time at pressure divided by the
|
||||
total time in the device.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Minute_Vent"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Minute Vent</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">The
|
||||
average minute ventilation (tidal volume x rate).</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="NRAH_Index"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>NRAH Index</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Obstructive_Apnea"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Obstructive Apnea</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Obstructive_Apnea_Index"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Obstructive Apnea
|
||||
Index</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">The
|
||||
Obstructive Apnea Index is calculated by the total number of
|
||||
Obstructive Apnea events per night divided by the hours of use.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="OSA"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>OSA</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Obstructive
|
||||
Sleep Apnea</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="PB"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>PB</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Patient-Triggered_Breaths"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Patient-Triggered
|
||||
Breaths</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Breaths
|
||||
initiated by the patient.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Peak_Average_Pressure"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Peak Average
|
||||
Pressure</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">The
|
||||
largest average CPAP Pressure in the date range.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Pressure"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Pressure</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Pressure
|
||||
settings and average delivered pressures are indicated as colored
|
||||
lines on reports.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="90.25_.26_95.25_Pressure_reports"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>90% & 95%
|
||||
Pressure reports</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Pressure_Pulses"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Pressure Pulses</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Pressure_Support"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Pressure Support</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Difference
|
||||
between IPAP and EPAP pressure on bi-level machines.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Ramp"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Ramp</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Ramp_Time"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Ramp Time</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">The
|
||||
time over which the pressure increases from the initial low-value, to
|
||||
the prescription value.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="RERA"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>RERA</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt"><b>Respiratory
|
||||
Event Related Arousal...</b> 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.”</font></font></font></p>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="RDI"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>RDI</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Respiratory
|
||||
Disturbance Index</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="REMstar_Auto_Flags"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>REMstar Auto Flags</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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).</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="RR"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>RR</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Respiration
|
||||
Rate Frequency of breathing, expressed as the number of breaths per
|
||||
minute</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="S.2FT"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>S/T</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Spontaneous/Timed
|
||||
therapy mode</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="SD_Card"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>SD Card</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Session"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Session</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">A
|
||||
length of time in which therapy has been delivered with breaks
|
||||
lasting no more than one hour.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Sigh"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Sigh</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">A
|
||||
breath that is delivered every 100 mandatory or assisted breaths at
|
||||
150% of the normal volume.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Sleep_Therapy_Flags"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Sleep Therapy Flags</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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).</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="SmartCard"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>SmartCard</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="SmartCard_Reader.2FWriter"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>SmartCard
|
||||
Reader/Writer</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">The
|
||||
SmartCard reader/writer is used to download compliance data from a
|
||||
SmartCard.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Snore"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Snore</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">A
|
||||
loud upper airway breathing sound during sleep, without episodes of
|
||||
apnea.</font></font></font></p>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">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.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Split_Night"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Split Night</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">A
|
||||
mode that enables the auto CPAP algorithm to be delayed by a
|
||||
pre-selectable time interval.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Ti"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Ti</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Ti...ResMed..Duration
|
||||
of inspiration (ie, the respiratory flow into the lungs), expressed
|
||||
in seconds (5 breath moving average).</font></font></font></p>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Ti
|
||||
Max...ResMed...Maximum inspiration time in seconds.</font></font></font></p>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Ti.
|
||||
Min..ResMed..Minimum inspiration time in seconds.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Tidal_Volume"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Tidal Volume</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">The
|
||||
amount of air passing in and out of the lungs for each breath (mL).</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Total_AHI"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Total AHI</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">The
|
||||
sum of the Apneas and Hypopneas divided by the number of therapy
|
||||
hours.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="VAPS"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>VAPS</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Volume
|
||||
Assured Pressure Support, breath by breath correction towards a
|
||||
target tidal volume.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="Vibratory_Snore_.28VS.29_Index"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>Vibratory Snore (VS)
|
||||
Index</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">The
|
||||
Vibratory Snore Index is the total number of vibratory snoring events
|
||||
per night divided by the hours of use.</font></font></font></p>
|
||||
<h3 class="western" style="margin-top: 0cm; margin-bottom: 0cm; border: none; padding: 0cm; font-variant: normal; letter-spacing: normal; font-style: normal; line-height: 160%; orphans: 2; widows: 2; background: #ffffff"><a name="VTE"></a>
|
||||
<font color="#000000"><font face="sans-serif"><b>VTE</b></font></font></h3>
|
||||
<p style="font-variant: normal; letter-spacing: normal; font-style: normal; font-weight: normal; orphans: 2; widows: 2">
|
||||
<font color="#252525"><font face="sans-serif"><font size="2" style="font-size: 10pt">Estimated
|
||||
average exhaled tidal volume.</font></font></font></p>
|
||||
<p style="margin-bottom: 0cm; line-height: 100%"><br/>
|
||||
|
||||
</p>
|
||||
|
||||
</body>
|
||||
</html>
|
74
sleepyhead/help/help_nl/help_nl.qhp
Normal file
74
sleepyhead/help/help_nl/help_nl.qhp
Normal file
@ -0,0 +1,74 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<QtHelpProject version="1.0">
|
||||
<namespace>jedimark.net.SleepyHeadGuide</namespace>
|
||||
<virtualFolder>doc</virtualFolder>
|
||||
<filterSection>
|
||||
<toc>
|
||||
<section title="SleepyHead Handboek" ref="index.html">
|
||||
<section title="Introductie" ref="index.html#intro"/>
|
||||
<section title="Getting Started" ref="gettingstarted.html"/>
|
||||
<section title="Ondersteunde Apparaten" ref="supported.html"/>
|
||||
<section title="Importing CPAP Data" ref="import.html"/>
|
||||
<section title="Exploring Daily View" ref="daily.html"/>
|
||||
<section title="Overview" ref="overview.html"/>
|
||||
<section title="Statistics and Trends" ref="statistics.html"/>
|
||||
<section title="Using an Oximeter" ref="oximetry.html"/>
|
||||
<section title="Tips & Tricks" ref="tipsntricks.html"/>
|
||||
<section title="Frequently Asked Questions" ref="faq.html"/>
|
||||
<section title="Glossary of terminiology used" ref="glossary.html">
|
||||
<section title="A-Flex" ref="glossary.html#A-Flex"/>
|
||||
<section title="Bi-Flex" ref="glossary.html#Bi-Flex"/>
|
||||
<section title="CPAP" ref="glossary.html#CPAP"/>
|
||||
<section title="DME" ref="glossary.html#DME"/>
|
||||
<section title="EPAP" ref="glossary.html#EPAP"/>
|
||||
<section title="Flow Limitation" ref="glossary.html#FL"/>
|
||||
<section title="Hypopnea" ref="glossary.html#Hypopnea"/>
|
||||
<section title="IPAP" ref="glossary.html#IPAP"/>
|
||||
<section title="Leak" ref="glossary.html#Leak"/>
|
||||
<section title="Minute Vent" ref="glossary.html#Minute_Vent"/>
|
||||
<section title="Obstructive Apnea" ref="glossary.html#Obstructive_Apnea"/>
|
||||
<section title="PB" ref="glossary.html#PB"/>
|
||||
<section title="Ramp" ref="glossary.html#Ramp"/>
|
||||
<section title="Session" ref="glossary.html#Session"/>
|
||||
<section title="Tidal Volume" ref="glossary.html#Tidal_Volume"/>
|
||||
<section title="Vibratory Snore (VS)" ref="glossary.html#Vibratory_Snore_.28VS.29_Index"/>
|
||||
</section>
|
||||
</section>
|
||||
</toc>
|
||||
<keywords>
|
||||
<keyword name="resmed" ref="supported.html#resmed"/>
|
||||
<keyword name="philips" ref="supported.html#philips"/>
|
||||
<keyword name="devilbiss" ref="supported.html#devilbiss"/>
|
||||
<keyword name="intelipap" ref="supported.html#devilbiss"/>
|
||||
<keyword name="fisher" ref="supported.html#fishpaykel"/>
|
||||
<keyword name="fisher" ref="supported.html#fishpaykel"/>
|
||||
<keyword name="icon" ref="supported.html#fishpaykel"/>
|
||||
<keyword name="import" ref="import.html"/>
|
||||
<keyword name="A-Flex" ref="glossary.html#A-Flex"/>
|
||||
<keyword name="Bi-Flex" ref="glossary.html#Bi-Flex"/>
|
||||
<keyword name="CPAP" ref="glossary.html#CPAP"/>
|
||||
<keyword name="DME" ref="glossary.html#DME"/>
|
||||
<keyword name="EPAP" ref="glossary.html#EPAP"/>
|
||||
<keyword name="Flow Limitation" ref="glossary.html#FL"/>
|
||||
<keyword name="FL" ref="glossary.html#FL"/>
|
||||
<keyword name="Hypopnea" ref="glossary.html#Hypopnea"/>
|
||||
<keyword name="HY" ref="glossary.html#Hypopnea"/>
|
||||
<keyword name="IPAP" ref="glossary.html#IPAP"/>
|
||||
<keyword name="Leak" ref="glossary.html#Leak"/>
|
||||
<keyword name="Minute Vent" ref="glossary.html#Minute_Vent"/>
|
||||
<keyword name="Obstructive Apnea" ref="glossary.html#Obstructive_Apnea"/>
|
||||
<keyword name="OA" ref="glossary.html#Obstructive_Apnea"/>
|
||||
<keyword name="PB" ref="glossary.html#PB"/>
|
||||
<keyword name="Ramp" ref="glossary.html#Ramp"/>
|
||||
<keyword name="Session" ref="glossary.html#Session"/>
|
||||
<keyword name="Tidal Volume" ref="glossary.html#Tidal_Volume"/>
|
||||
<keyword name="Vibratory Snore" ref="glossary.html#Vibratory_Snore_.28VS.29_Index"/>
|
||||
<keyword name="VS" ref="glossary.html#Vibratory_Snore_.28VS.29_Index"/>
|
||||
</keywords>
|
||||
<files>
|
||||
<file>../default.css</file>
|
||||
<file>*.html</file>
|
||||
<file>*.png</file>
|
||||
</files>
|
||||
</filterSection>
|
||||
</QtHelpProject>
|
8
sleepyhead/help/help_nl/import.html
Normal file
8
sleepyhead/help/help_nl/import.html
Normal file
@ -0,0 +1,8 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/default.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Importing Data</h1>
|
||||
</body>
|
||||
</html>
|
25
sleepyhead/help/help_nl/index.html
Normal file
25
sleepyhead/help/help_nl/index.html
Normal file
@ -0,0 +1,25 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/default.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<img src="qrc:/docs/sheep.png">
|
||||
Dutch translation
|
||||
<h3>Contents</h3>
|
||||
<list>
|
||||
<li><a href="/help_en/index.html#intro">Introduction</a></li>
|
||||
<li><a href="/help_en/gettingstarted.html">Getting Started</a></li>
|
||||
<li><a href="/help_en/supported.html">Supported Machines</a></li>
|
||||
<li><a href="/help_en/import.html">Importing CPAP Data</a></li>
|
||||
<li><a href="/help_en/daily.html">Exploring the Daily View</a></li>
|
||||
<li><a href="/help_en/overview.html">Exploring the Overview</a></li>
|
||||
<li><a href="/help_en/statistics.html">Statistics and Trends</a></li>
|
||||
<li><a href="/help_en/glossary.html">Glossary of Sleep Disorder Terminology</a></li>
|
||||
</list>
|
||||
<br/>
|
||||
<p href="#intro"><h1>SleepyHead</h1></p>
|
||||
<p>SleepyHead has been specially designed to help assist you in exploring data produced by CPAP (or APAP/BiPAP/ASV/AVAPS/etc) ventilators.</p>
|
||||
<p>It provides advanced features such as flow waveform analysis to generate respiratory graphs, as well as custom event flagging capabilities.</p>
|
||||
<p><b><font color=red>Note to Testers:</font></b>This help browser is just a stub to test the QHelpEngine, proper content and translation linkages have not been written yet</p>
|
||||
</body>
|
||||
</html>
|
8
sleepyhead/help/help_nl/overview.html
Normal file
8
sleepyhead/help/help_nl/overview.html
Normal file
@ -0,0 +1,8 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/default.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Exploring the Overview</h1>
|
||||
</body>
|
||||
</html>
|
8
sleepyhead/help/help_nl/oximetry.html
Normal file
8
sleepyhead/help/help_nl/oximetry.html
Normal file
@ -0,0 +1,8 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/default.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Using an Oximeter</h1>
|
||||
</body>
|
||||
</html>
|
8
sleepyhead/help/help_nl/statistics.html
Normal file
8
sleepyhead/help/help_nl/statistics.html
Normal file
@ -0,0 +1,8 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/default.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Statistics & Trends</h1>
|
||||
</body>
|
||||
</html>
|
42
sleepyhead/help/help_nl/supported.html
Normal file
42
sleepyhead/help/help_nl/supported.html
Normal file
@ -0,0 +1,42 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/default.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<table width="100%">
|
||||
<tr><td colspan=3 align="center"><h1>Ondersteunde Apparaten</h1>
|
||||
Niet elk model dat er zo uitziet, wordt ondersteund ... De meeste zijn, maar sommige vervelende hebben nog onbekende datastructuren.</td></tr>
|
||||
<tr><td colspan=3> </td></tr>
|
||||
<tr><td align="center" colspan=3 bgcolor=><a href="#resmed"/><h2>ResMed</h2></td></tr>
|
||||
<tr>
|
||||
<td align="center"><img src="qrc:/icons/rms9.png"/><br/>ResMed S9 Family<br/>"Escape" models are bricks</td>
|
||||
<td align="center"><img src="qrc:/icons/airsense10.png"/><br/>AirSense 10 Family</td>
|
||||
<td align="center"><img src="qrc:/icons/aircurve.png"/><br/>AirCurve</td>
|
||||
</tr>
|
||||
<tr><td colspan=3> </td></tr>
|
||||
<tr><td align="center" colspan=3><a href="#philips"/><h2>Philips Respironics</h2></tr>
|
||||
<tr>
|
||||
<td align="center"><img src="qrc:/icons/prs1.png"/><br/>System One</td>
|
||||
<td align="center"><img src="qrc:/icons/prs1_60s.png"/><br/>System One 60 Series</td>
|
||||
<td align="center"><img src="qrc:/icons/prs1_960.png"/><br/>System One BIPAP/AutoSV</td>
|
||||
</tr><tr>
|
||||
<td align="center"><img src="qrc:/icons/dreamstation.png"/><br/>DreamStation CPAP and ASV</td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr><td colspan=3> </td></tr>
|
||||
<tr><td align="center" colspan=3><a href="#devilbiss"/><h2>DeVilbiss</h2></td></tr>
|
||||
<tr>
|
||||
<td align="center"><img src="qrc:/icons/intellipap.png"/><br/>Intellipap DV54</td>
|
||||
<td align="center"><img src="qrc:/icons/dv64.png"/><br/>DV64 Family</td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr><td colspan=3> </td></tr>
|
||||
<tr><td align="center" colspan=3><a href="#fishpaykel"/><h2>Fisher & Paykel</h2></td></tr>
|
||||
<tr>
|
||||
<td align="center"><img src="qrc:/icons/fp_icon.png"/><br/>F & P Icon<br/>Last... and (*cough*) least.</td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</html>
|
19
sleepyhead/help/help_nl/tipsntricks.html
Normal file
19
sleepyhead/help/help_nl/tipsntricks.html
Normal file
@ -0,0 +1,19 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/default.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Tips & Tricks</h1>
|
||||
<h2>Not so obvious control features</h2>
|
||||
<list>
|
||||
<li>• Select an area by dragging with left button down, use right button to pan that area</li>
|
||||
<li>• 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</li>
|
||||
<li>• Hold down ctrl key to zoom in with mousewheel.</li>
|
||||
<li>• Hit Escape key to return to previous zoom level.</li>
|
||||
|
||||
<li>• Press F8 to show/hide the entire left panel in daily view</li>
|
||||
<li>• Press F9 to show/hide calendar in daily view</li>
|
||||
<li>• Press F10 to show/hide the right side navigation bar</li>
|
||||
</list>
|
||||
</body>
|
||||
</html>
|
Binary file not shown.
Before Width: | Height: | Size: 73 KiB After Width: | Height: | Size: 79 KiB |
@ -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);
|
||||
|
@ -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)));
|
||||
|
@ -139,8 +139,6 @@ void NewProfile::on_nextButton_clicked()
|
||||
{
|
||||
const QString xmlext = ".xml";
|
||||
|
||||
QSettings settings(getDeveloperName(), getAppName());
|
||||
|
||||
int index = ui->stackedWidget->currentIndex();
|
||||
|
||||
switch (index) {
|
||||
|
@ -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
|
||||
|
@ -27,19 +27,34 @@
|
||||
//#endif
|
||||
|
||||
#include "translation.h"
|
||||
QHash<QString, QString> 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<QString, QString> 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<QString, QString> 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;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* Multilingual Support header
|
||||
/* Multilingual Support header
|
||||
*
|
||||
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||
*
|
||||
@ -9,10 +9,12 @@
|
||||
#ifndef TRANSLATION_H
|
||||
#define TRANSLATION_H
|
||||
|
||||
#include <QSettings>
|
||||
|
||||
#include <QString>
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user