mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Boring stuff and a windows build fix
This commit is contained in:
parent
1d9ac7c373
commit
92e018ceb6
@ -94,7 +94,7 @@ void InitMapsWithoutAwesomeInitializerLists()
|
|||||||
CPAP_Hypopnea=CPAP_CODES.Get(CT_Event,QObject::tr("Hypopnea"),QObject::tr("H"),"OA"),
|
CPAP_Hypopnea=CPAP_CODES.Get(CT_Event,QObject::tr("Hypopnea"),QObject::tr("H"),"OA"),
|
||||||
CPAP_Apnea=CPAP_CODES.Get(CT_Event,QObject::tr("Unspecified Apnea"),QObject::tr("UA"),"UA"),
|
CPAP_Apnea=CPAP_CODES.Get(CT_Event,QObject::tr("Unspecified Apnea"),QObject::tr("UA"),"UA"),
|
||||||
CPAP_ClearAirway=CPAP_CODES.Get(CT_Event,QObject::tr("Clear Airway Apnea"),QObject::tr("CA"),"CA"),
|
CPAP_ClearAirway=CPAP_CODES.Get(CT_Event,QObject::tr("Clear Airway Apnea"),QObject::tr("CA"),"CA"),
|
||||||
CPAP_RERA=CPAP_CODES.Get(CT_Event,QObject::tr("Respiratory Effort Related Arousal"),QObject::tr("RE"),"RE"),
|
CPAP_RERA=CPAP_CODES.Get(CT_Event,QObject::tr("RERA"),QObject::tr("RE"),"RE"),
|
||||||
CPAP_FlowLimit=CPAP_CODES.Get(CT_Event,QObject::tr("Flow Limitation"),QObject::tr("FL"),"FL"),
|
CPAP_FlowLimit=CPAP_CODES.Get(CT_Event,QObject::tr("Flow Limitation"),QObject::tr("FL"),"FL"),
|
||||||
CPAP_CSR=CPAP_CODES.Get(CT_Event,QObject::tr("Periodic Breathing"),QObject::tr("PB"),"PB"),
|
CPAP_CSR=CPAP_CODES.Get(CT_Event,QObject::tr("Periodic Breathing"),QObject::tr("PB"),"PB"),
|
||||||
CPAP_VSnore=CPAP_CODES.Get(CT_Event,QObject::tr("Vibratory Snore"),QObject::tr("VS"),"VS"),
|
CPAP_VSnore=CPAP_CODES.Get(CT_Event,QObject::tr("Vibratory Snore"),QObject::tr("VS"),"VS"),
|
||||||
|
@ -65,7 +65,7 @@ PreferencesDialog::PreferencesDialog(QWidget *parent) :
|
|||||||
pb->setText("foo");
|
pb->setText("foo");
|
||||||
ui->eventTable->setCellWidget(row,0,c);
|
ui->eventTable->setCellWidget(row,0,c);
|
||||||
ui->eventTable->setCellWidget(row,1,pb);
|
ui->eventTable->setCellWidget(row,1,pb);
|
||||||
QColor a(random() % 255, random() % 255, random() % 255, 255);
|
QColor a(rand() % 255, rand() % 255, rand() % 255, 255);
|
||||||
QPalette p(a,a,a,a,a,a,a);
|
QPalette p(a,a,a,a,a,a,a);
|
||||||
|
|
||||||
pb->setPalette(p);
|
pb->setPalette(p);
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QTabWidget" name="tabWidget">
|
<widget class="QTabWidget" name="tabWidget">
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>1</number>
|
<number>0</number>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QWidget" name="tab">
|
<widget class="QWidget" name="tab">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
@ -255,6 +255,13 @@ p, li { white-space: pre-wrap; }
|
|||||||
<string>&Events</string>
|
<string>&Events</string>
|
||||||
</attribute>
|
</attribute>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_6">
|
||||||
|
<property name="text">
|
||||||
|
<string>This doesn't work yet.. The colours shown are random.</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QTableWidget" name="eventTable">
|
<widget class="QTableWidget" name="eventTable">
|
||||||
<property name="sortingEnabled">
|
<property name="sortingEnabled">
|
||||||
|
Loading…
Reference in New Issue
Block a user