Shortcut keys and Oximeter+CPAP days show in red

This commit is contained in:
Mark Watkins 2011-07-03 22:08:30 +10:00
parent 687eb0aaa2
commit b15153917b
2 changed files with 26 additions and 2 deletions

View File

@ -471,12 +471,21 @@ void Daily::UpdateCalendarDay(QDate date)
QTextCharFormat bold; QTextCharFormat bold;
QTextCharFormat cpapcol; QTextCharFormat cpapcol;
QTextCharFormat normal; QTextCharFormat normal;
QTextCharFormat oxiday;
bold.setFontWeight(QFont::Bold); bold.setFontWeight(QFont::Bold);
cpapcol.setForeground(QBrush(Qt::blue, Qt::SolidPattern)); cpapcol.setForeground(QBrush(Qt::blue, Qt::SolidPattern));
cpapcol.setFontWeight(QFont::Bold); cpapcol.setFontWeight(QFont::Bold);
oxiday.setForeground(QBrush(Qt::red, Qt::SolidPattern));
oxiday.setFontWeight(QFont::Bold);
bool hascpap=profile->GetDay(date,MT_CPAP)!=NULL;
bool hasoxi=profile->GetDay(date,MT_OXIMETER)!=NULL;
if (profile->GetDay(date,MT_CPAP)) { if (hascpap) {
if (hasoxi) {
ui->calendar->setDateTextFormat(date,oxiday);
} else {
ui->calendar->setDateTextFormat(date,cpapcol); ui->calendar->setDateTextFormat(date,cpapcol);
}
} else if (profile->GetDay(date)) { } else if (profile->GetDay(date)) {
ui->calendar->setDateTextFormat(date,bold); ui->calendar->setDateTextFormat(date,bold);
} else { } else {

View File

@ -589,6 +589,9 @@
<property name="text"> <property name="text">
<string>&amp;Import Data</string> <string>&amp;Import Data</string>
</property> </property>
<property name="shortcut">
<string>Shift+F2</string>
</property>
</action> </action>
<action name="action_Preferences"> <action name="action_Preferences">
<property name="text"> <property name="text">
@ -609,16 +612,25 @@
<property name="text"> <property name="text">
<string>View &amp;Daily</string> <string>View &amp;Daily</string>
</property> </property>
<property name="shortcut">
<string>F5</string>
</property>
</action> </action>
<action name="actionView_Overview"> <action name="actionView_Overview">
<property name="text"> <property name="text">
<string>View &amp;Overview</string> <string>View &amp;Overview</string>
</property> </property>
<property name="shortcut">
<string>F6</string>
</property>
</action> </action>
<action name="actionView_Welcome"> <action name="actionView_Welcome">
<property name="text"> <property name="text">
<string>View &amp;Welcome</string> <string>View &amp;Welcome</string>
</property> </property>
<property name="shortcut">
<string>F4</string>
</property>
</action> </action>
<action name="action_2"> <action name="action_2">
<property name="text"> <property name="text">
@ -653,6 +665,9 @@
<property name="text"> <property name="text">
<string>&amp;Fullscreen Toggle</string> <string>&amp;Fullscreen Toggle</string>
</property> </property>
<property name="shortcut">
<string>F11</string>
</property>
</action> </action>
<action name="action_Noon_Date_Split"> <action name="action_Noon_Date_Split">
<property name="checkable"> <property name="checkable">