New Help Browser, managed to run lupdate
195
sleepyhead/help.cpp
Normal file
@ -0,0 +1,195 @@
|
|||||||
|
/* SleepyHead Help Implementation
|
||||||
|
*
|
||||||
|
* Copyright (c) 2018 Mark Watkins <mark@jedimark.net>
|
||||||
|
*
|
||||||
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
|
* License. See the file COPYING in the main directory of the source code
|
||||||
|
* for more details. */
|
||||||
|
|
||||||
|
|
||||||
|
#include <QHelpContentWidget>
|
||||||
|
#include <QHelpIndexWidget>
|
||||||
|
#include <QHelpSearchEngine>
|
||||||
|
#include <QHelpSearchResult>
|
||||||
|
#include <QHelpSearchResultWidget>
|
||||||
|
#include <QDebug>
|
||||||
|
#include <QTimer>
|
||||||
|
|
||||||
|
#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(QCoreApplication::applicationDirPath() + "/Help/help.qhc", this);
|
||||||
|
helpEngine->setupData();
|
||||||
|
|
||||||
|
// QString helpFile = QCoreApplication::applicationDirPath() + "/Help/help_en.qch";
|
||||||
|
|
||||||
|
/*if (!helpEngine->registeredDocumentations().contains(helpFile)) {
|
||||||
|
if (helpEngine->registerDocumentation(helpFile)) {
|
||||||
|
qDebug() << "Registered" << helpFile;
|
||||||
|
} else {
|
||||||
|
qDebug() << "Help Error:" << helpEngine->error();
|
||||||
|
}
|
||||||
|
} */
|
||||||
|
|
||||||
|
QList<QUrl> list = helpEngine->files(helpNamespace, QStringList());
|
||||||
|
|
||||||
|
tabWidget = new QTabWidget;
|
||||||
|
tabWidget->setMaximumWidth(250);
|
||||||
|
|
||||||
|
tabWidget->addTab(helpEngine->contentWidget(), tr("Contents"));
|
||||||
|
tabWidget->addTab(helpEngine->indexWidget(), tr("Index"));
|
||||||
|
tabWidget->addTab(helpEngine->searchEngine()->resultWidget(), tr("Search"));
|
||||||
|
|
||||||
|
|
||||||
|
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(helpEngine->contentWidget(), SIGNAL(linkActivated(QUrl)), helpBrowser, SLOT(setSource(QUrl)));
|
||||||
|
connect(helpEngine->indexWidget(), SIGNAL(linkActivated(QUrl)), helpBrowser, SLOT(setSource(QUrl)));
|
||||||
|
connect(helpBrowser, SIGNAL(forwardAvailable(bool)), this, SLOT(forwardAvailable(bool)));
|
||||||
|
connect(helpBrowser, SIGNAL(backwardAvailable(bool)), this, SLOT(backwardAvailable(bool)));
|
||||||
|
connect(helpEngine->searchEngine(), SIGNAL(searchingFinished(int)), this, SLOT(on_searchComplete(int)));
|
||||||
|
connect(helpEngine->searchEngine(), SIGNAL(indexingFinished()), this, SLOT(indexingFinished()));
|
||||||
|
connect(helpEngine->searchEngine()->resultWidget(), SIGNAL(requestShowLink(QUrl)), this, SLOT(requestShowLink(QUrl)));
|
||||||
|
|
||||||
|
ui->forwardButton->setEnabled(false);
|
||||||
|
ui->backButton->setEnabled(false);
|
||||||
|
|
||||||
|
|
||||||
|
searchReady = false;
|
||||||
|
helpEngine->searchEngine()->reindexDocumentation();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
Help::~Help()
|
||||||
|
{
|
||||||
|
disconnect(helpEngine->searchEngine()->resultWidget(), SIGNAL(requestShowLink(QUrl)), this, SLOT(requestShowLink(QUrl)));
|
||||||
|
disconnect(helpEngine->searchEngine(), SIGNAL(indexingFinished()), this, SLOT(indexingFinished()));
|
||||||
|
disconnect(helpEngine->searchEngine(), SIGNAL(searchingFinished(int)), this, SLOT(on_searchComplete(int)));
|
||||||
|
|
||||||
|
disconnect(helpEngine->contentWidget(), SIGNAL(linkActivated(QUrl)), helpBrowser, SLOT(setSource(QUrl)));
|
||||||
|
disconnect(helpEngine->indexWidget(), SIGNAL(linkActivated(QUrl)), helpBrowser, SLOT(setSource(QUrl)));
|
||||||
|
disconnect(helpBrowser, SIGNAL(backwardAvailable(bool)), this, SLOT(backwardAvailable(bool)));
|
||||||
|
disconnect(helpBrowser, SIGNAL(forwardAvailable(bool)), this, SLOT(forwardAvailable(bool)));
|
||||||
|
|
||||||
|
delete helpEngine;
|
||||||
|
delete ui;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Help::startup()
|
||||||
|
{
|
||||||
|
helpEngine->contentWidget()->expandToDepth(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
HelpBrowser::HelpBrowser(QHelpEngine* helpEngine, QWidget* parent):
|
||||||
|
QTextBrowser(parent), helpEngine(helpEngine)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
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 (type == QTextDocument::ImageResource
|
||||||
|
&& name.scheme().compare(QLatin1String("data"), Qt::CaseInsensitive) == 0) {
|
||||||
|
static QRegularExpression re("^image/[^;]+;base64,.+={0,2}$");
|
||||||
|
QRegularExpressionMatch match = re.match(name.path());
|
||||||
|
if (match.hasMatch())
|
||||||
|
return QVariant();
|
||||||
|
}
|
||||||
|
return QTextBrowser::loadResource(type, name);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Help::on_backButton_clicked()
|
||||||
|
{
|
||||||
|
helpBrowser->backward();
|
||||||
|
}
|
||||||
|
|
||||||
|
void Help::on_forwardButton_clicked()
|
||||||
|
{
|
||||||
|
helpBrowser->forward();
|
||||||
|
}
|
||||||
|
|
||||||
|
void Help::on_homeButton_clicked()
|
||||||
|
{
|
||||||
|
QByteArray index = helpEngine->fileData(QUrl("qthelp://jedimark.net.sleepyhead.1.1/doc/help_en/index.html"));
|
||||||
|
helpBrowser->setHtml(index);
|
||||||
|
}
|
||||||
|
void Help::on_searchComplete(int count)
|
||||||
|
{
|
||||||
|
if (!searchReady) {
|
||||||
|
QString html = "<h1>Please wait a bit.. Indexing still in progress</h1>";
|
||||||
|
helpBrowser->setText(html);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
tabWidget->setCurrentWidget(helpEngine->searchEngine()->resultWidget());
|
||||||
|
return;
|
||||||
|
/*
|
||||||
|
QHelpSearchEngine * search = helpEngine->searchEngine();
|
||||||
|
QVector<QHelpSearchResult> results = search->searchResults(0, count);
|
||||||
|
|
||||||
|
QString html = "<h1>Search results: ";
|
||||||
|
|
||||||
|
if (results.size() == 0) html += "none";
|
||||||
|
html+="</h1><br/>";
|
||||||
|
|
||||||
|
for (QHelpSearchResult & result : results) {
|
||||||
|
html += QString("<p><a href=\"%1\"><b>Title: %2</b></a><br/>%3<br/>").arg(result.url().toString()).arg(result.title()).arg(result.snippet());
|
||||||
|
}
|
||||||
|
|
||||||
|
helpBrowser->setText(html);
|
||||||
|
ui->searchBar->setText(QString()); */
|
||||||
|
}
|
||||||
|
|
||||||
|
void Help::on_searchBar_returnPressed()
|
||||||
|
{
|
||||||
|
QHelpSearchEngine * search = helpEngine->searchEngine();
|
||||||
|
|
||||||
|
QString str=ui->searchBar->text();
|
||||||
|
search->search(str);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Help::indexingFinished()
|
||||||
|
{
|
||||||
|
searchReady = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Help::forwardAvailable(bool b)
|
||||||
|
{
|
||||||
|
ui->forwardButton->setEnabled(b);
|
||||||
|
}
|
||||||
|
void Help::backwardAvailable(bool b)
|
||||||
|
{
|
||||||
|
ui->backButton->setEnabled(b);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Help::requestShowLink(const QUrl & link)
|
||||||
|
{
|
||||||
|
helpBrowser->setSource(link);
|
||||||
|
}
|
63
sleepyhead/help.h
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
/* SleepyHead Help Header
|
||||||
|
*
|
||||||
|
* Copyright (c) 2018 Mark Watkins <mark@jedimark.net>
|
||||||
|
*
|
||||||
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
|
* License. See the file COPYING in the main directory of the source code
|
||||||
|
* for more details. */
|
||||||
|
|
||||||
|
#ifndef HELP_H
|
||||||
|
#define HELP_H
|
||||||
|
|
||||||
|
#include <QHelpEngine>
|
||||||
|
#include <QTextBrowser>
|
||||||
|
#include <QTabWidget>
|
||||||
|
#include <QWidget>
|
||||||
|
|
||||||
|
namespace Ui {
|
||||||
|
class Help;
|
||||||
|
}
|
||||||
|
|
||||||
|
class HelpBrowser : public QTextBrowser
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
HelpBrowser(QHelpEngine* helpEngine, QWidget* parent = 0);
|
||||||
|
virtual QVariant loadResource(int type, const QUrl &url) Q_DECL_OVERRIDE;
|
||||||
|
private:
|
||||||
|
QHelpEngine * helpEngine;
|
||||||
|
};
|
||||||
|
|
||||||
|
class Help : public QWidget
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit Help(QWidget *parent = 0);
|
||||||
|
~Help();
|
||||||
|
|
||||||
|
private slots:
|
||||||
|
void on_backButton_clicked();
|
||||||
|
|
||||||
|
void on_forwardButton_clicked();
|
||||||
|
|
||||||
|
void on_homeButton_clicked();
|
||||||
|
|
||||||
|
void startup();
|
||||||
|
|
||||||
|
void on_searchBar_returnPressed();
|
||||||
|
void on_searchComplete(int results);
|
||||||
|
|
||||||
|
void indexingFinished();
|
||||||
|
|
||||||
|
void forwardAvailable(bool b);
|
||||||
|
void backwardAvailable(bool b);
|
||||||
|
void requestShowLink(const QUrl & link);
|
||||||
|
private:
|
||||||
|
Ui::Help *ui;
|
||||||
|
QHelpEngine *helpEngine;
|
||||||
|
QTabWidget * tabWidget;
|
||||||
|
HelpBrowser * helpBrowser;
|
||||||
|
bool searchReady;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // HELP_H
|
154
sleepyhead/help.ui
Normal file
@ -0,0 +1,154 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>Help</class>
|
||||||
|
<widget class="QWidget" name="Help">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>848</width>
|
||||||
|
<height>602</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>Form</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
|
<property name="spacing">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="leftMargin">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="topMargin">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="rightMargin">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="bottomMargin">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<widget class="QWidget" name="widget" native="true">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||||
|
<property name="spacing">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<property name="leftMargin">
|
||||||
|
<number>8</number>
|
||||||
|
</property>
|
||||||
|
<property name="topMargin">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<property name="rightMargin">
|
||||||
|
<number>8</number>
|
||||||
|
</property>
|
||||||
|
<property name="bottomMargin">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<widget class="QToolButton" name="backButton">
|
||||||
|
<property name="text">
|
||||||
|
<string>...</string>
|
||||||
|
</property>
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="Resources.qrc">
|
||||||
|
<normaloff>:/icons/back.png</normaloff>:/icons/back.png</iconset>
|
||||||
|
</property>
|
||||||
|
<property name="iconSize">
|
||||||
|
<size>
|
||||||
|
<width>24</width>
|
||||||
|
<height>24</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="autoRaise">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QToolButton" name="forwardButton">
|
||||||
|
<property name="text">
|
||||||
|
<string>...</string>
|
||||||
|
</property>
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="Resources.qrc">
|
||||||
|
<normaloff>:/icons/forward.png</normaloff>:/icons/forward.png</iconset>
|
||||||
|
</property>
|
||||||
|
<property name="iconSize">
|
||||||
|
<size>
|
||||||
|
<width>24</width>
|
||||||
|
<height>24</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="autoRaise">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QToolButton" name="homeButton">
|
||||||
|
<property name="text">
|
||||||
|
<string>...</string>
|
||||||
|
</property>
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="Resources.qrc">
|
||||||
|
<normaloff>:/icons/go-home.png</normaloff>:/icons/go-home.png</iconset>
|
||||||
|
</property>
|
||||||
|
<property name="iconSize">
|
||||||
|
<size>
|
||||||
|
<width>24</width>
|
||||||
|
<height>24</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="autoRaise">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<weight>75</weight>
|
||||||
|
<bold>true</bold>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Search Topic:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLineEdit" name="searchBar"/>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSplitter" name="splitter">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<resources>
|
||||||
|
<include location="Resources.qrc"/>
|
||||||
|
</resources>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
5
sleepyhead/help/compile.sh
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#!/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
|
0
sleepyhead/help/default.css
Normal file
14
sleepyhead/help/help.qhcp
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<QHelpCollectionProject version="1.0">
|
||||||
|
<docFiles>
|
||||||
|
<generate>
|
||||||
|
<file>
|
||||||
|
<input>help_en.qhp</input>
|
||||||
|
<output>help_en.qch</output>
|
||||||
|
</file>
|
||||||
|
</generate>
|
||||||
|
<register>
|
||||||
|
<file>help_en.qch</file>
|
||||||
|
</register>
|
||||||
|
</docFiles>
|
||||||
|
</QHelpCollectionProject>
|
74
sleepyhead/help/help_en.qhp
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<QtHelpProject version="1.0">
|
||||||
|
<namespace>jedimark.net.SleepyHead.1.1</namespace>
|
||||||
|
<virtualFolder>doc</virtualFolder>
|
||||||
|
<filterSection>
|
||||||
|
<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/*.html</file>
|
||||||
|
<file>images/*.png</file>
|
||||||
|
</files>
|
||||||
|
</filterSection>
|
||||||
|
</QtHelpProject>
|
8
sleepyhead/help/help_en/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>
|
13
sleepyhead/help/help_en/doc.html
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
<a href="#chapter1"/>
|
||||||
|
<h1>Introduction to SleepyHead</h1>
|
||||||
|
SleepyHead is software designed for exploring data produced by your CPAP/APAP/BiLevel/etc Ventilator.
|
||||||
|
<a href="#chapter2"/>
|
||||||
|
<h1>Importing CPAP data</h1>
|
||||||
|
Click import. Cross your fingers.
|
||||||
|
<a href="#chapter3"/>
|
||||||
|
<h1>Exploring Daily View</h1>
|
||||||
|
The mouse does stuff
|
||||||
|
</body>
|
||||||
|
<html>
|
28
sleepyhead/help/help_en/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_en/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_en/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>
|
8
sleepyhead/help/help_en/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>
|
24
sleepyhead/help/help_en/index.html
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/default.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<img src="/images/sheep.png">
|
||||||
|
<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_en/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_en/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_en/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>
|
41
sleepyhead/help/help_en/supported.html
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/default.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<table width="100%">
|
||||||
|
<tr><td colspan=3 align="center"><h1>Supported CPAP Machines</h1></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>
|
||||||
|
</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>
|
||||||
|
</tr><tr>
|
||||||
|
<td align="center"><img src="/images/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> </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> </td>
|
||||||
|
<td> </td>
|
||||||
|
</tr></table>
|
||||||
|
</body>
|
||||||
|
</html>
|
19
sleepyhead/help/help_en/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>
|
BIN
sleepyhead/help/images/aircurve.png
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
sleepyhead/help/images/airsense10.png
Normal file
After Width: | Height: | Size: 72 KiB |
BIN
sleepyhead/help/images/cms50f.png
Normal file
After Width: | Height: | Size: 70 KiB |
BIN
sleepyhead/help/images/dreamstation.png
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
sleepyhead/help/images/dv64.png
Normal file
After Width: | Height: | Size: 60 KiB |
BIN
sleepyhead/help/images/fp_icon.png
Normal file
After Width: | Height: | Size: 73 KiB |
BIN
sleepyhead/help/images/intellipap.png
Normal file
After Width: | Height: | Size: 77 KiB |
BIN
sleepyhead/help/images/oximeter.png
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
sleepyhead/help/images/prs1.png
Normal file
After Width: | Height: | Size: 60 KiB |
BIN
sleepyhead/help/images/prs1_60s.png
Normal file
After Width: | Height: | Size: 66 KiB |
BIN
sleepyhead/help/images/prs1_960.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
sleepyhead/help/images/rms9.png
Normal file
After Width: | Height: | Size: 63 KiB |
BIN
sleepyhead/help/images/sheep.png
Normal file
After Width: | Height: | Size: 11 KiB |
@ -202,21 +202,12 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
// ui->statisticsView->page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks);
|
// ui->statisticsView->page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks);
|
||||||
// ui->webView->page()->setLinkDelegationPolicy(QWebPage::DelegateExternalLinks);
|
// ui->webView->page()->setLinkDelegationPolicy(QWebPage::DelegateExternalLinks);
|
||||||
|
|
||||||
QString loadingtxt =
|
|
||||||
"<HTML><body style='text-align: center; vertical-align: center'><table width='100%' height='100%'>"
|
|
||||||
"<tr><td align=center>"
|
|
||||||
"<img src='qrc:/docs/sheep.png'>"
|
|
||||||
"<h1>" + tr("Under construction...") + "</h1>"
|
|
||||||
"</td></tr></table></body></HTML>";
|
|
||||||
ui->helpBrowser->setHtml(loadingtxt);
|
|
||||||
on_tabWidget_currentChanged(0);
|
on_tabWidget_currentChanged(0);
|
||||||
|
|
||||||
#ifndef REMSTAR_M_SUPPORT
|
#ifndef REMSTAR_M_SUPPORT
|
||||||
ui->actionImport_RemStar_MSeries_Data->setVisible(false);
|
ui->actionImport_RemStar_MSeries_Data->setVisible(false);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
on_homeButton_clicked();
|
|
||||||
|
|
||||||
qsrand(QDateTime::currentDateTime().toTime_t());
|
qsrand(QDateTime::currentDateTime().toTime_t());
|
||||||
|
|
||||||
QList<int> a;
|
QList<int> a;
|
||||||
@ -230,9 +221,10 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
|
|
||||||
QTimer::singleShot(50, this, SLOT(Startup()));
|
QTimer::singleShot(50, this, SLOT(Startup()));
|
||||||
|
|
||||||
ui->backButton->setEnabled(ui->helpBrowser->backwardHistoryCount()>0);
|
|
||||||
ui->forwardButton->setEnabled(ui->helpBrowser->forwardHistoryCount()>0);
|
|
||||||
|
|
||||||
|
help = new Help(this);
|
||||||
|
|
||||||
|
ui->tabWidget->addTab(help, tr("Help Browser"));
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::logMessage(QString msg)
|
void MainWindow::logMessage(QString msg)
|
||||||
@ -1109,12 +1101,6 @@ QString MainWindow::getWelcomeHTML()
|
|||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_homeButton_clicked()
|
|
||||||
{
|
|
||||||
if (welcome) ui->tabWidget->setCurrentWidget(welcome);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
void MainWindow::updateFavourites()
|
void MainWindow::updateFavourites()
|
||||||
{
|
{
|
||||||
QDate date = p_profile->LastDay(MT_JOURNAL);
|
QDate date = p_profile->LastDay(MT_JOURNAL);
|
||||||
@ -1179,22 +1165,6 @@ void MainWindow::updateFavourites()
|
|||||||
ui->bookmarkView->setHtml(html);
|
ui->bookmarkView->setHtml(html);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_backButton_clicked()
|
|
||||||
{
|
|
||||||
ui->helpBrowser->backward();
|
|
||||||
}
|
|
||||||
|
|
||||||
void MainWindow::on_forwardButton_clicked()
|
|
||||||
{
|
|
||||||
ui->helpBrowser->forward();
|
|
||||||
}
|
|
||||||
|
|
||||||
void MainWindow::on_urlBar_activated(const QString &arg1)
|
|
||||||
{
|
|
||||||
Q_UNUSED(arg1);
|
|
||||||
ui->helpBrowser->setText(QString("This ain't no web browser.. this needs to look up %1 in help index or something").arg(arg1));
|
|
||||||
}
|
|
||||||
|
|
||||||
void MainWindow::on_dailyButton_clicked()
|
void MainWindow::on_dailyButton_clicked()
|
||||||
{
|
{
|
||||||
if (daily) {
|
if (daily) {
|
||||||
@ -1420,9 +1390,8 @@ void MainWindow::on_actionPrint_Report_triggered()
|
|||||||
b.render(&painter, QPoint(0,0));
|
b.render(&painter, QPoint(0,0));
|
||||||
painter.end();
|
painter.end();
|
||||||
|
|
||||||
|
} else if (ui->tabWidget->currentWidget() == help) {
|
||||||
} else if (ui->tabWidget->currentWidget() == ui->helpTab) {
|
// help->print(&printer);
|
||||||
ui->helpBrowser->print(&printer);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -2002,7 +1971,7 @@ void MainWindow::on_action_Sidebar_Toggle_toggled(bool visible)
|
|||||||
|
|
||||||
void MainWindow::on_helpButton_clicked()
|
void MainWindow::on_helpButton_clicked()
|
||||||
{
|
{
|
||||||
ui->tabWidget->setCurrentWidget(ui->helpTab);
|
ui->tabWidget->setCurrentWidget(help);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_actionView_Statistics_triggered()
|
void MainWindow::on_actionView_Statistics_triggered()
|
||||||
@ -2522,25 +2491,7 @@ void MainWindow::on_recordsBox_anchorClicked(const QUrl &linkurl)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_helpBrowser_sourceChanged(const QUrl &url)
|
|
||||||
{
|
|
||||||
ui->urlBar->setEditText(url.toString());
|
|
||||||
}
|
|
||||||
|
|
||||||
void MainWindow::on_statisticsView_anchorClicked(const QUrl &url)
|
void MainWindow::on_statisticsView_anchorClicked(const QUrl &url)
|
||||||
{
|
{
|
||||||
on_recordsBox_anchorClicked(url);
|
on_recordsBox_anchorClicked(url);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_helpBrowser_anchorClicked(const QUrl &url)
|
|
||||||
{
|
|
||||||
QString s = url.toString();
|
|
||||||
qDebug() << "Link Clicked" << url;
|
|
||||||
|
|
||||||
if (s.toLower().startsWith("https:")) {
|
|
||||||
QDesktopServices().openUrl(url);
|
|
||||||
} else {
|
|
||||||
ui->helpBrowser->setText(QString("Loading resource %1").arg(url.toString()));
|
|
||||||
//ui->helpBrowser->setUrl(url);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -17,6 +17,8 @@
|
|||||||
#include "daily.h"
|
#include "daily.h"
|
||||||
#include "overview.h"
|
#include "overview.h"
|
||||||
#include "welcome.h"
|
#include "welcome.h"
|
||||||
|
#include "help.h"
|
||||||
|
|
||||||
#include "profileselector.h"
|
#include "profileselector.h"
|
||||||
#include "preferencesdialog.h"
|
#include "preferencesdialog.h"
|
||||||
|
|
||||||
@ -174,18 +176,6 @@ class MainWindow : public QMainWindow
|
|||||||
//! \brief Toggle Fullscreen (currently F11)
|
//! \brief Toggle Fullscreen (currently F11)
|
||||||
void on_action_Fullscreen_triggered();
|
void on_action_Fullscreen_triggered();
|
||||||
|
|
||||||
//! \brief Loads the default page in the Welcome screens web browser
|
|
||||||
void on_homeButton_clicked();
|
|
||||||
|
|
||||||
//! \brief Go back in the welcome browsers history
|
|
||||||
void on_backButton_clicked();
|
|
||||||
|
|
||||||
//! \brief Go forward in the welcome browsers history
|
|
||||||
void on_forwardButton_clicked();
|
|
||||||
|
|
||||||
//! \brief Loads a web page when enter is pressed in the URL bar
|
|
||||||
void on_urlBar_activated(const QString &arg1);
|
|
||||||
|
|
||||||
//! \brief Selects the Daily page and redraws the graphs
|
//! \brief Selects the Daily page and redraws the graphs
|
||||||
void on_dailyButton_clicked();
|
void on_dailyButton_clicked();
|
||||||
|
|
||||||
@ -323,11 +313,8 @@ class MainWindow : public QMainWindow
|
|||||||
|
|
||||||
void on_recordsBox_anchorClicked(const QUrl &linkurl);
|
void on_recordsBox_anchorClicked(const QUrl &linkurl);
|
||||||
|
|
||||||
void on_helpBrowser_sourceChanged(const QUrl &url);
|
|
||||||
|
|
||||||
void on_statisticsView_anchorClicked(const QUrl &url);
|
void on_statisticsView_anchorClicked(const QUrl &url);
|
||||||
|
|
||||||
void on_helpBrowser_anchorClicked(const QUrl &url);
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void importCPAPBackups();
|
void importCPAPBackups();
|
||||||
@ -342,6 +329,7 @@ private:
|
|||||||
Overview *overview;
|
Overview *overview;
|
||||||
ProfileSelector *profileSelector;
|
ProfileSelector *profileSelector;
|
||||||
Welcome * welcome;
|
Welcome * welcome;
|
||||||
|
Help * help;
|
||||||
bool first_load;
|
bool first_load;
|
||||||
PreferencesDialog *prefdialog;
|
PreferencesDialog *prefdialog;
|
||||||
QTime logtime;
|
QTime logtime;
|
||||||
|
@ -1053,198 +1053,6 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="helpTab">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<attribute name="title">
|
|
||||||
<string>&Help Browser</string>
|
|
||||||
</attribute>
|
|
||||||
<layout class="QVBoxLayout" name="verticalLayout">
|
|
||||||
<property name="spacing">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="leftMargin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="topMargin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="rightMargin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="bottomMargin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<item>
|
|
||||||
<widget class="QFrame" name="frame">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>0</width>
|
|
||||||
<height>40</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="maximumSize">
|
|
||||||
<size>
|
|
||||||
<width>16777215</width>
|
|
||||||
<height>40</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="frameShape">
|
|
||||||
<enum>QFrame::NoFrame</enum>
|
|
||||||
</property>
|
|
||||||
<property name="frameShadow">
|
|
||||||
<enum>QFrame::Plain</enum>
|
|
||||||
</property>
|
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
|
||||||
<property name="spacing">
|
|
||||||
<number>4</number>
|
|
||||||
</property>
|
|
||||||
<property name="leftMargin">
|
|
||||||
<number>6</number>
|
|
||||||
</property>
|
|
||||||
<property name="topMargin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="rightMargin">
|
|
||||||
<number>6</number>
|
|
||||||
</property>
|
|
||||||
<property name="bottomMargin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<item>
|
|
||||||
<widget class="QToolButton" name="backButton">
|
|
||||||
<property name="text">
|
|
||||||
<string>...</string>
|
|
||||||
</property>
|
|
||||||
<property name="icon">
|
|
||||||
<iconset resource="Resources.qrc">
|
|
||||||
<normaloff>:/icons/back.png</normaloff>:/icons/back.png</iconset>
|
|
||||||
</property>
|
|
||||||
<property name="iconSize">
|
|
||||||
<size>
|
|
||||||
<width>24</width>
|
|
||||||
<height>24</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="autoRaise">
|
|
||||||
<bool>true</bool>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QToolButton" name="forwardButton">
|
|
||||||
<property name="text">
|
|
||||||
<string>...</string>
|
|
||||||
</property>
|
|
||||||
<property name="icon">
|
|
||||||
<iconset resource="Resources.qrc">
|
|
||||||
<normaloff>:/icons/forward.png</normaloff>:/icons/forward.png</iconset>
|
|
||||||
</property>
|
|
||||||
<property name="iconSize">
|
|
||||||
<size>
|
|
||||||
<width>24</width>
|
|
||||||
<height>24</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="autoRaise">
|
|
||||||
<bool>true</bool>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QToolButton" name="homeButton">
|
|
||||||
<property name="text">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="icon">
|
|
||||||
<iconset resource="Resources.qrc">
|
|
||||||
<normaloff>:/icons/go-home.png</normaloff>:/icons/go-home.png</iconset>
|
|
||||||
</property>
|
|
||||||
<property name="iconSize">
|
|
||||||
<size>
|
|
||||||
<width>24</width>
|
|
||||||
<height>24</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="toolButtonStyle">
|
|
||||||
<enum>Qt::ToolButtonTextBesideIcon</enum>
|
|
||||||
</property>
|
|
||||||
<property name="autoRaise">
|
|
||||||
<bool>true</bool>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="label">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="font">
|
|
||||||
<font>
|
|
||||||
<weight>75</weight>
|
|
||||||
<bold>true</bold>
|
|
||||||
</font>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>Search Topic:</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QComboBox" name="urlBar">
|
|
||||||
<property name="editable">
|
|
||||||
<bool>true</bool>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QFrame" name="frame_4">
|
|
||||||
<property name="frameShape">
|
|
||||||
<enum>QFrame::StyledPanel</enum>
|
|
||||||
</property>
|
|
||||||
<property name="frameShadow">
|
|
||||||
<enum>QFrame::Raised</enum>
|
|
||||||
</property>
|
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_4">
|
|
||||||
<property name="spacing">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="leftMargin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="topMargin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="rightMargin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="bottomMargin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<item>
|
|
||||||
<widget class="QTextBrowser" name="helpBrowser"/>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</widget>
|
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QPlainTextEdit" name="logText">
|
<widget class="QPlainTextEdit" name="logText">
|
||||||
<property name="readOnly">
|
<property name="readOnly">
|
||||||
|
@ -58,7 +58,7 @@ ProfileSelector::ProfileSelector(QWidget *parent) :
|
|||||||
ui->diskSpaceInfo->setVisible(false);
|
ui->diskSpaceInfo->setVisible(false);
|
||||||
|
|
||||||
QItemSelectionModel * sm = ui->profileView->selectionModel();
|
QItemSelectionModel * sm = ui->profileView->selectionModel();
|
||||||
connect(sm, SIGNAL(currentRowChanged(QModelIndex,QModelIndex)), this, SLOT(on_selectionChanged(QModelIndex,QModelIndex)));
|
if (sm) connect(sm, SIGNAL(currentRowChanged(QModelIndex,QModelIndex)), this, SLOT(on_selectionChanged(QModelIndex,QModelIndex)));
|
||||||
ui->buttonEditProfile->setEnabled(false);
|
ui->buttonEditProfile->setEnabled(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -73,6 +73,9 @@ const Qt::GlobalColor openProfileHighlightColor = Qt::darkGreen;
|
|||||||
|
|
||||||
void ProfileSelector::updateProfileList()
|
void ProfileSelector::updateProfileList()
|
||||||
{
|
{
|
||||||
|
QItemSelectionModel * sm = ui->profileView->selectionModel();
|
||||||
|
if (sm) disconnect(sm, SIGNAL(currentRowChanged(QModelIndex,QModelIndex)), this, SLOT(on_selectionChanged(QModelIndex,QModelIndex)));
|
||||||
|
|
||||||
QString name;
|
QString name;
|
||||||
int w=0;
|
int w=0;
|
||||||
if (proxy) delete proxy;
|
if (proxy) delete proxy;
|
||||||
@ -169,8 +172,7 @@ void ProfileSelector::updateProfileList()
|
|||||||
headerView->setStretchLastSection(true);
|
headerView->setStretchLastSection(true);
|
||||||
headerView->setSectionResizeMode(QHeaderView::Stretch);
|
headerView->setSectionResizeMode(QHeaderView::Stretch);
|
||||||
|
|
||||||
QItemSelectionModel * sm = ui->profileView->selectionModel();
|
sm = ui->profileView->selectionModel();
|
||||||
disconnect(sm, SIGNAL(currentRowChanged(QModelIndex,QModelIndex)), this, SLOT(on_selectionChanged(QModelIndex,QModelIndex)));
|
|
||||||
connect(sm, SIGNAL(currentRowChanged(QModelIndex,QModelIndex)), this, SLOT(on_selectionChanged(QModelIndex,QModelIndex)));
|
connect(sm, SIGNAL(currentRowChanged(QModelIndex,QModelIndex)), this, SLOT(on_selectionChanged(QModelIndex,QModelIndex)));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
#-------------------------------------------------
|
#-------------------------------------------------
|
||||||
|
|
||||||
QT += core gui network xml printsupport serialport widgets
|
QT += core gui network xml printsupport serialport widgets help
|
||||||
|
|
||||||
|
|
||||||
lessThan(QT_MAJOR_VERSION,5) {
|
lessThan(QT_MAJOR_VERSION,5) {
|
||||||
@ -66,6 +66,8 @@ exists(../.git):{
|
|||||||
DEFINES += BETA_BUILD
|
DEFINES += BETA_BUILD
|
||||||
|
|
||||||
|
|
||||||
|
system(qcollectiongenerator help/help.qhcp -o help/help.qhc)
|
||||||
|
|
||||||
unix:!macx:!haiku {
|
unix:!macx:!haiku {
|
||||||
LIBS += -lX11 -lz -lGLU
|
LIBS += -lX11 -lz -lGLU
|
||||||
DEFINES += _TTY_POSIX_
|
DEFINES += _TTY_POSIX_
|
||||||
@ -163,7 +165,8 @@ SOURCES += \
|
|||||||
profileselector.cpp \
|
profileselector.cpp \
|
||||||
SleepLib/loader_plugins/edfparser.cpp \
|
SleepLib/loader_plugins/edfparser.cpp \
|
||||||
aboutdialog.cpp \
|
aboutdialog.cpp \
|
||||||
welcome.cpp
|
welcome.cpp \
|
||||||
|
help.cpp
|
||||||
|
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
common_gui.h \
|
common_gui.h \
|
||||||
@ -231,7 +234,8 @@ HEADERS += \
|
|||||||
SleepLib/loader_plugins/edfparser.h \
|
SleepLib/loader_plugins/edfparser.h \
|
||||||
aboutdialog.h \
|
aboutdialog.h \
|
||||||
welcome.h \
|
welcome.h \
|
||||||
mytextbrowser.h
|
mytextbrowser.h \
|
||||||
|
help.h
|
||||||
|
|
||||||
FORMS += \
|
FORMS += \
|
||||||
daily.ui \
|
daily.ui \
|
||||||
@ -247,7 +251,8 @@ FORMS += \
|
|||||||
oximeterimport.ui \
|
oximeterimport.ui \
|
||||||
profileselector.ui \
|
profileselector.ui \
|
||||||
aboutdialog.ui \
|
aboutdialog.ui \
|
||||||
welcome.ui
|
welcome.ui \
|
||||||
|
help.ui
|
||||||
|
|
||||||
RESOURCES += \
|
RESOURCES += \
|
||||||
Resources.qrc
|
Resources.qrc
|
||||||
@ -289,12 +294,35 @@ win32 {
|
|||||||
system(xcopy /y $$quote($$FILE) $$quote($$DDIR))
|
system(xcopy /y $$quote($$FILE) $$quote($$DDIR))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CONFIG(debug, debug|release) {
|
||||||
|
HELPDIR = $$OUT_PWD/debug/Help
|
||||||
|
}
|
||||||
|
CONFIG(release, debug|release) {
|
||||||
|
HELPDIR = $$OUT_PWD/release/Help
|
||||||
|
}
|
||||||
|
HELPDIR ~= s,/,\\,g
|
||||||
|
|
||||||
|
HELP_FILES += $$PWD/help/*.qch
|
||||||
|
HELP_FILES += $$PWD/help/help.qhc
|
||||||
|
HELP_FILES_WIN = $${HELP_FILES}
|
||||||
|
HELP_FILES_WIN ~= s,/,\\,g
|
||||||
|
|
||||||
|
system(mkdir $$quote($$HELPDIR))
|
||||||
|
|
||||||
|
for(FILE,HELP_FILES_WIN){
|
||||||
|
system(xcopy /y $$quote($$FILE) $$quote($$HELPDIR))
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mac {
|
mac {
|
||||||
TransFiles.files = $$files(../Translations/*.qm)
|
TransFiles.files = $$files(../Translations/*.qm)
|
||||||
TransFiles.path = Contents/Resources/Translations
|
TransFiles.path = Contents/Resources/Translations
|
||||||
|
HelpFiles.files = $$files(../Help/*.qch)
|
||||||
|
HelpFiles.files += $$files(../Help/help.qhc)
|
||||||
|
HelpFiles.path = Contents/Resources/Help
|
||||||
QMAKE_BUNDLE_DATA += TransFiles
|
QMAKE_BUNDLE_DATA += TransFiles
|
||||||
|
QMAKE_BUNDLE_DATA += HelpFiles
|
||||||
}
|
}
|
||||||
|
|
||||||
#include(../3rdparty/quazip/quazip/quazip.pri)
|
#include(../3rdparty/quazip/quazip/quazip.pri)
|
||||||
@ -302,4 +330,20 @@ mac {
|
|||||||
#DEPENDPATH += $$PWD/../3rdparty/quazip
|
#DEPENDPATH += $$PWD/../3rdparty/quazip
|
||||||
|
|
||||||
DISTFILES += \
|
DISTFILES += \
|
||||||
../README
|
../README \
|
||||||
|
help/compile.sh \
|
||||||
|
help/default.css \
|
||||||
|
help/help_en.qhp \
|
||||||
|
help/help_en/daily.html \
|
||||||
|
help/help_en/doc.html \
|
||||||
|
help/help_en/glossary.html \
|
||||||
|
help/help_en/import.html \
|
||||||
|
help/help_en/index.html \
|
||||||
|
help/help_en/overview.html \
|
||||||
|
help/help_en/oximetry.html \
|
||||||
|
help/help_en/statistics.html \
|
||||||
|
help/help_en/supported.html \
|
||||||
|
help/help_en/gettingstarted.html \
|
||||||
|
help/help_en/tipsntricks.html \
|
||||||
|
help/help_en/faq.html \
|
||||||
|
help/help.qhcp
|
||||||
|