mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Highlight ZEO days in calendar, Graph tooltip showing stage meanings
This commit is contained in:
parent
e3ff868cf1
commit
0bd5c35706
@ -545,6 +545,7 @@ void Daily::UpdateCalendarDay(QDate date)
|
||||
QTextCharFormat oxiday;
|
||||
QTextCharFormat oxicpap;
|
||||
QTextCharFormat jourday;
|
||||
QTextCharFormat stageday;
|
||||
|
||||
cpaponly.setForeground(QBrush(Qt::blue, Qt::SolidPattern));
|
||||
cpaponly.setFontWeight(QFont::Normal);
|
||||
@ -554,6 +555,8 @@ void Daily::UpdateCalendarDay(QDate date)
|
||||
oxiday.setFontWeight(QFont::Normal);
|
||||
oxicpap.setForeground(QBrush(Qt::red, Qt::SolidPattern));
|
||||
oxicpap.setFontWeight(QFont::Bold);
|
||||
stageday.setForeground(QBrush(Qt::magenta, Qt::SolidPattern));
|
||||
stageday.setFontWeight(QFont::Bold);
|
||||
jourday.setForeground(QBrush(QColor("black"), Qt::SolidPattern));
|
||||
jourday.setFontWeight(QFont::Bold);
|
||||
nodata.setForeground(QBrush(QColor("black"), Qt::SolidPattern));
|
||||
@ -562,11 +565,14 @@ void Daily::UpdateCalendarDay(QDate date)
|
||||
bool hascpap=PROFILE.GetDay(date,MT_CPAP)!=NULL;
|
||||
bool hasoxi=PROFILE.GetDay(date,MT_OXIMETER)!=NULL;
|
||||
bool hasjournal=PROFILE.GetDay(date,MT_JOURNAL)!=NULL;
|
||||
bool hasstage=PROFILE.GetDay(date,MT_SLEEPSTAGE)!=NULL;
|
||||
if (hascpap) {
|
||||
if (hasoxi) {
|
||||
ui->calendar->setDateTextFormat(date,oxicpap);
|
||||
} else if (hasjournal) {
|
||||
ui->calendar->setDateTextFormat(date,cpapjour);
|
||||
} else if (hasstage) {
|
||||
ui->calendar->setDateTextFormat(date,stageday);
|
||||
} else {
|
||||
ui->calendar->setDateTextFormat(date,cpaponly);
|
||||
}
|
||||
|
6
daily.ui
6
daily.ui
@ -814,6 +814,12 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QComboBox" name="graphCombo">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Drop down this list to show/hide available graphs.</string>
|
||||
</property>
|
||||
|
@ -118,7 +118,7 @@ Important: One id code per item, DO NOT CHANGE ID NUMBERS!!!
|
||||
<channel id="0x1804" class="data" name="SPO2Drop" details="SPO2Drop" label="SPO2 Drop" color="light blue"/>
|
||||
</group>
|
||||
<group name="SLEEP">
|
||||
<channel id="0x2000" class="data" name="SleepStage" details="Sleep Stage" label="Sleep Stage" color="dark grey"/>
|
||||
<channel id="0x2000" class="data" name="SleepStage" details="Sleep Stage" label="Sleep Stage" unit="1=Awake 2=REM 3=Light Sleep 4=Deep Sleep" color="dark grey"/>
|
||||
<channel id="0x2001" class="data" name="ZeoBW" details="Zeo Brainwave" label="ZeoWave" color="black"/>
|
||||
<channel id="0x2002" class="data" name="Awakenings" details="Awakenings" label="Awakenings" color="black"/>
|
||||
<channel id="0x2003" class="data" name="MorningFeel" details="ZEO Morning Feel" label="Morning Feel" color="black"/>
|
||||
|
Loading…
Reference in New Issue
Block a user