mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
More oximetry preferences stub stuff
This commit is contained in:
parent
367a4526eb
commit
5a33b5e86d
@ -77,6 +77,10 @@ PreferencesDialog::PreferencesDialog(QWidget *parent,Profile * _profile) :
|
|||||||
ui->intentionalLeakEdit->setValue((*profile)["IntentionalLeak"].toDouble());
|
ui->intentionalLeakEdit->setValue((*profile)["IntentionalLeak"].toDouble());
|
||||||
ui->useMultithreading->setChecked((*profile)["EnableMultithreading"].toBool());
|
ui->useMultithreading->setChecked((*profile)["EnableMultithreading"].toBool());
|
||||||
|
|
||||||
|
ui->oximetryGroupBox->setChecked((*profile)["EnableOximetry"].toBool());
|
||||||
|
ui->oximetrySync->setChecked((*profile)["SyncOximetry"].toBool());
|
||||||
|
ui->oximetryType->setCurrentIndex(ui->oximetryType->findText((*profile)["OximeterType"].toString(),Qt::MatchExactly));
|
||||||
|
|
||||||
ui->eventTable->setColumnWidth(0,40);
|
ui->eventTable->setColumnWidth(0,40);
|
||||||
ui->eventTable->setColumnWidth(1,55);
|
ui->eventTable->setColumnWidth(1,55);
|
||||||
ui->eventTable->setColumnHidden(3,true);
|
ui->eventTable->setColumnHidden(3,true);
|
||||||
@ -176,6 +180,9 @@ void PreferencesDialog::Save()
|
|||||||
(*profile)["EnableGraphSnapshots"]=ui->useGraphSnapshots->isChecked();
|
(*profile)["EnableGraphSnapshots"]=ui->useGraphSnapshots->isChecked();
|
||||||
(*profile)["IntentionalLeak"]=ui->intentionalLeakEdit->value();
|
(*profile)["IntentionalLeak"]=ui->intentionalLeakEdit->value();
|
||||||
(*profile)["EnableMultithreading"]=ui->useMultithreading->isChecked();
|
(*profile)["EnableMultithreading"]=ui->useMultithreading->isChecked();
|
||||||
|
(*profile)["EnableOximetry"]=ui->oximetryGroupBox->isChecked();
|
||||||
|
(*profile)["SyncOximetry"]=ui->oximetrySync->isChecked();
|
||||||
|
(*profile)["OximeterType"]=ui->oximetryType->currentText();
|
||||||
|
|
||||||
PREF["FontApplication"]=ui->applicationFont->currentText();
|
PREF["FontApplication"]=ui->applicationFont->currentText();
|
||||||
PREF["FontApplicationSize"]=ui->applicationFontSize->value();
|
PREF["FontApplicationSize"]=ui->applicationFontSize->value();
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>527</width>
|
<width>527</width>
|
||||||
<height>291</height>
|
<height>330</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
@ -813,6 +813,9 @@ p, li { white-space: pre-wrap; }
|
|||||||
<string>Oximetry</string>
|
<string>Oximetry</string>
|
||||||
</attribute>
|
</attribute>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_6">
|
<layout class="QVBoxLayout" name="verticalLayout_6">
|
||||||
|
<property name="margin">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label_21">
|
<widget class="QLabel" name="label_21">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
@ -821,7 +824,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QGroupBox" name="groupBox_2">
|
<widget class="QGroupBox" name="oximetryGroupBox">
|
||||||
<property name="title">
|
<property name="title">
|
||||||
<string>Use Oximetry</string>
|
<string>Use Oximetry</string>
|
||||||
</property>
|
</property>
|
||||||
@ -829,7 +832,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QFormLayout" name="formLayout">
|
<layout class="QFormLayout" name="formLayout">
|
||||||
<item row="0" column="0">
|
<item row="1" column="0">
|
||||||
<widget class="QLabel" name="label_20">
|
<widget class="QLabel" name="label_20">
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
||||||
@ -842,10 +845,10 @@ p, li { white-space: pre-wrap; }
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="0" column="1">
|
<item row="1" column="1">
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_7">
|
<layout class="QHBoxLayout" name="horizontalLayout_7">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QComboBox" name="comboBox">
|
<widget class="QComboBox" name="oximetryType">
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Contec CMS50</string>
|
<string>Contec CMS50</string>
|
||||||
@ -859,7 +862,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="checkBox">
|
<widget class="QCheckBox" name="oximetrySync">
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||||
<horstretch>0</horstretch>
|
<horstretch>0</horstretch>
|
||||||
@ -873,15 +876,29 @@ p, li { white-space: pre-wrap; }
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item row="1" column="1">
|
<item row="3" column="1">
|
||||||
|
<widget class="QLabel" name="oximetryMessage">
|
||||||
|
<property name="text">
|
||||||
|
<string>Please Note: It is impossible to sync oximetry data with CPAP data without a valid timestamp.
|
||||||
|
|
||||||
|
CMS50 data imported from SpO2Review (from .spoR files) or the serial import method does NOT have the correct timestamp needed to do this.
|
||||||
|
|
||||||
|
Live view mode (using a serial cable) is the only way to acheive an accurate sync on CMS50 oximeters.</string>
|
||||||
|
</property>
|
||||||
|
<property name="wordWrap">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="4" column="1">
|
||||||
<spacer name="verticalSpacer_3">
|
<spacer name="verticalSpacer_3">
|
||||||
<property name="orientation">
|
<property name="orientation">
|
||||||
<enum>Qt::Vertical</enum>
|
<enum>Qt::Vertical</enum>
|
||||||
</property>
|
</property>
|
||||||
<property name="sizeHint" stdset="0">
|
<property name="sizeHint" stdset="0">
|
||||||
<size>
|
<size>
|
||||||
<width>434</width>
|
<width>452</width>
|
||||||
<height>101</height>
|
<height>36</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
</spacer>
|
</spacer>
|
||||||
|
Loading…
Reference in New Issue
Block a user