mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Shortcut keys and Oximeter+CPAP days show in red
This commit is contained in:
parent
687eb0aaa2
commit
b15153917b
11
daily.cpp
11
daily.cpp
@ -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 {
|
||||||
|
@ -589,6 +589,9 @@
|
|||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Import Data</string>
|
<string>&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 &Daily</string>
|
<string>View &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 &Overview</string>
|
<string>View &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 &Welcome</string>
|
<string>View &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>&Fullscreen Toggle</string>
|
<string>&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">
|
||||||
|
Loading…
Reference in New Issue
Block a user