Highlight ZEO days in calendar, Graph tooltip showing stage meanings

This commit is contained in:
Mark Watkins 2012-01-12 00:49:22 +10:00
parent e3ff868cf1
commit 0bd5c35706
3 changed files with 13 additions and 1 deletions

View File

@ -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);
}

View File

@ -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>

View File

@ -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"/>