mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Create Clinical TAB in preference menu
This commit is contained in:
parent
759221f1f0
commit
b2b8006b2e
@ -559,10 +559,6 @@ void gOverviewGraph::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
|
||||
float compliance_hours = 0;
|
||||
|
||||
if (p_profile->cpap->showComplianceInfo()) {
|
||||
compliance_hours = p_profile->cpap->complianceHours();
|
||||
}
|
||||
|
||||
int incompliant = 0;
|
||||
Day *day;
|
||||
EventDataType hours;
|
||||
@ -1008,15 +1004,6 @@ jumpnext:
|
||||
}*/
|
||||
a += QString(QObject::tr("Days: %1")).arg(total_days, 0);
|
||||
|
||||
if (p_profile->cpap->showComplianceInfo()) {
|
||||
if (ishours && incompliant > 0) {
|
||||
a += " "+QString(QObject::tr("Low Usage Days: %1")).arg(incompliant, 0)+
|
||||
" "+QString(QObject::tr("(%1% compliant, defined as > %2 hours)")).
|
||||
arg((1.0 / daynum) * (total_days - incompliant) * 100.0, 0, 'f', 2).arg(compliance_hours, 0, 'f', 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//GetTextExtent(a,x,y);
|
||||
//legendx-=30+x;
|
||||
//w.renderText(a,px+24,py+5);
|
||||
|
@ -309,7 +309,6 @@ const QString STR_OS_OxiDiscardThreshold = "OxiDiscardThreshold";
|
||||
|
||||
// CPAPSettings Strings
|
||||
const QString STR_CS_ComplianceHours = "ComplianceHours";
|
||||
const QString STR_CS_ShowCompliance = "ShowCompliance";
|
||||
const QString STR_CS_ShowLeaksMode = "ShowLeaksMode";
|
||||
const QString STR_CS_MaskStartDate = "MaskStartDate";
|
||||
const QString STR_CS_MaskDescription = "MaskDescription";
|
||||
@ -560,7 +559,6 @@ class CPAPSettings : public PrefSettings
|
||||
: PrefSettings(profile)
|
||||
{
|
||||
m_complianceHours = initPref(STR_CS_ComplianceHours, 4.0f).toFloat();
|
||||
initPref(STR_CS_ShowCompliance, true);
|
||||
initPref(STR_CS_ShowLeaksMode, 0);
|
||||
// TODO: jedimark: Check if this date is initiliazed yet
|
||||
initPref(STR_CS_MaskStartDate, QDate());
|
||||
@ -597,7 +595,6 @@ class CPAPSettings : public PrefSettings
|
||||
|
||||
//Getters
|
||||
double complianceHours() const { return m_complianceHours; }
|
||||
bool showComplianceInfo() const { return getPref(STR_CS_ShowCompliance).toBool(); }
|
||||
int leakMode() const { return getPref(STR_CS_ShowLeaksMode).toInt(); }
|
||||
QDate maskStartDate() const { return getPref(STR_CS_MaskStartDate).toDate(); }
|
||||
QString maskDescription() const { return getPref(STR_CS_MaskDescription).toString(); }
|
||||
@ -635,7 +632,6 @@ class CPAPSettings : public PrefSettings
|
||||
void setNotes(QString notes) { setPref(STR_CS_Notes, notes); }
|
||||
void setDateDiagnosed(QDate date) { setPref(STR_CS_DateDiagnosed, date); }
|
||||
void setComplianceHours(EventDataType hours) { setPref(STR_CS_ComplianceHours, m_complianceHours=hours); }
|
||||
void setShowComplianceInfo(bool b) { setPref(STR_CS_ShowCompliance, b); }
|
||||
void setLeakMode(int leakmode) { setPref(STR_CS_ShowLeaksMode, (int)leakmode); }
|
||||
void setMaskStartDate(QDate date) { setPref(STR_CS_MaskStartDate, date); }
|
||||
void setMaskType(MaskType masktype) { setPref(STR_CS_MaskType, (int)masktype); }
|
||||
|
@ -7,6 +7,9 @@
|
||||
* License. See the file COPYING in the main directory of the source code
|
||||
* for more details. */
|
||||
|
||||
#define TEST_MACROS_ENABLEDoff
|
||||
#include <test_macros.h>
|
||||
|
||||
#include <QLabel>
|
||||
#include <QColorDialog>
|
||||
#include <QMessageBox>
|
||||
@ -220,6 +223,9 @@ PreferencesDialog::PreferencesDialog(QWidget *parent, Profile *_profile) :
|
||||
ui->includeSerial->setChecked(AppSetting->includeSerial());
|
||||
ui->monochromePrinting->setChecked(AppSetting->monochromePrinting());
|
||||
ui->clinicalMode->setChecked(AppSetting->clinicalMode());
|
||||
// clinicalMode and allowDisabledSessions are radio buttons and must be set to opposite values. Once clinicalMode is used.
|
||||
// Radio Buttons illustrate the operating mode.
|
||||
ui->allowDisabledSessions->setChecked(!AppSetting->clinicalMode());
|
||||
|
||||
ui->autoLaunchImporter->setChecked(AppSetting->autoLaunchImport());
|
||||
#ifndef NO_CHECKUPDATES
|
||||
@ -262,7 +268,6 @@ PreferencesDialog::PreferencesDialog(QWidget *parent, Profile *_profile) :
|
||||
ui->cacheSessionData->setChecked(AppSetting->cacheSessions());
|
||||
ui->preloadSummaries->setChecked(profile->session->preloadSummaries());
|
||||
ui->animationsAndTransitionsCheckbox->setChecked(AppSetting->animations());
|
||||
ui->complianceCheckBox->setChecked(profile->cpap->showComplianceInfo());
|
||||
ui->complianceHours->setValue(profile->cpap->complianceHours());
|
||||
|
||||
ui->prefCalcMiddle->setCurrentIndex(profile->general->prefCalcMiddle());
|
||||
@ -858,7 +863,6 @@ bool PreferencesDialog::Save()
|
||||
profile->cpap->setShowLeakRedline(ui->showLeakRedline->isChecked());
|
||||
profile->cpap->setLeakRedline(ui->leakRedlineSpinbox->value());
|
||||
|
||||
profile->cpap->setShowComplianceInfo(ui->complianceCheckBox->isChecked());
|
||||
profile->cpap->setComplianceHours(ui->complianceHours->value());
|
||||
|
||||
if (ui->graphHeight->value() != AppSetting->graphHeight()) {
|
||||
|
@ -1201,13 +1201,6 @@ A value of 20% works well for detecting apneas. </string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QCheckBox" name="complianceCheckBox">
|
||||
<property name="text">
|
||||
<string>Compliance defined as</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="6" column="2">
|
||||
<widget class="QSpinBox" name="ahiGraphWindowSize">
|
||||
<property name="sizePolicy">
|
||||
@ -1285,31 +1278,6 @@ Defaults to 60 minutes.. Highly recommend it's left at this value.</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="2" colspan="2">
|
||||
<widget class="QDoubleSpinBox" name="complianceHours">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Regard days with under this usage as "incompliant". 4 hours is usually considered compliant.</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string> hours</string>
|
||||
</property>
|
||||
<property name="decimals">
|
||||
<number>1</number>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<double>8.000000000000000</double>
|
||||
</property>
|
||||
<property name="value">
|
||||
<double>4.000000000000000</double>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="2" colspan="2">
|
||||
<widget class="QComboBox" name="eventIndexCombo">
|
||||
<property name="sizePolicy">
|
||||
@ -1513,6 +1481,172 @@ as this is the only value available on summary-only days.</string>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="ClinicalTab">
|
||||
<attribute name="title">
|
||||
<string>Clinical</string>
|
||||
</attribute>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_Z12">
|
||||
<property name="spacing">
|
||||
<number>4</number>
|
||||
</property>
|
||||
<property name="leftMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="visible" stdset="0">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="clinicalGroupBox">
|
||||
<property name="enabled">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Clinical Settings</string>
|
||||
</property>
|
||||
<property name="checkable">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout_Z2">
|
||||
<property name="leftMargin">
|
||||
<number>4</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>8</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>4</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>4</number>
|
||||
</property>
|
||||
<property name="spacing">
|
||||
<number>5</number>
|
||||
</property>
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="label_56">
|
||||
<property name="text">
|
||||
<string>Compliance defined as</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Regard days with under this usage as "incompliant". 4 hours is usually considered compliant.</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="0" colspan="3">
|
||||
<spacer name="verticalSpacer_6">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="4" column="0">
|
||||
<widget class="QPushButton" name="resetClinicalDefaults">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Minimum">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Reset &Defaults</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0" colspan="3">
|
||||
<widget class="QGroupBox" name="groupBox_Z4">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Select Oscar Operating Mode </string>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout_5">
|
||||
<item row="0" column="0">
|
||||
<widget class="QRadioButton" name="clinicalMode">
|
||||
<property name="text">
|
||||
<string>Clinical Mode</string>
|
||||
</property>
|
||||
<property name="checkable">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Clinical Mode does not allow disabled sessions.\nDisabled Session are not used for graphing or Statistics.</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QRadioButton" name="allowDisabledSessions">
|
||||
<property name="text">
|
||||
<string>Allow Disabled Sessions</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Clinical Mode does not allow disabled sessions.\nDisabled Session are not used for graphing or Statistics.</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QDoubleSpinBox" name="complianceHours">
|
||||
<property name="suffix">
|
||||
<string> Hours</string>
|
||||
</property>
|
||||
<property name="decimals">
|
||||
<number>1</number>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<double>8.000000000000000</double>
|
||||
</property>
|
||||
<property name="value">
|
||||
<double>4.000000000000000</double>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QTextEdit" name="textEdit">
|
||||
<property name="readOnly">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="html">
|
||||
<string><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Changing the Oscar Operating Mode requires a reload of the user's profile.</p>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Data will be saved and restored.</p></body></html></string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="oximetryTab">
|
||||
<attribute name="title">
|
||||
<string>&Oximetry</string>
|
||||
@ -2756,16 +2890,6 @@ Try it and see if you like it.</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="clinicalMode">
|
||||
<property name="toolTip">
|
||||
<string>Clinical Mode does not allow disabled sessions.\nDisabled Session are not used for graphing or Statistics.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Clinical Mode</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="verticalSpacer">
|
||||
<property name="orientation">
|
||||
|
Loading…
Reference in New Issue
Block a user