mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Preferenalize that skip feature
This commit is contained in:
parent
d31193de1e
commit
1feb6818a7
14
daily.cpp
14
daily.cpp
@ -856,33 +856,35 @@ void Daily::on_JournalNotesUnderline_clicked()
|
|||||||
|
|
||||||
void Daily::on_prevDayButton_clicked()
|
void Daily::on_prevDayButton_clicked()
|
||||||
{
|
{
|
||||||
|
if (!PREF.ExistsAndTrue("SkipEmptyDays")) {
|
||||||
|
LoadDate(previous_date.addDays(-1));
|
||||||
|
} else {
|
||||||
QDate d=previous_date;
|
QDate d=previous_date;
|
||||||
bool found=false;
|
bool found=false;
|
||||||
for (int i=0;i<90;i++) {
|
for (int i=0;i<90;i++) {
|
||||||
d=d.addDays(-1);
|
d=d.addDays(-1);
|
||||||
if (PROFILE.GetDay(d)) {
|
if (PROFILE.GetDay(d)) {
|
||||||
LoadDate(d);
|
LoadDate(d);
|
||||||
found=true;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!found) LoadDate(previous_date.addDays(-1));
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Daily::on_nextDayButton_clicked()
|
void Daily::on_nextDayButton_clicked()
|
||||||
{
|
{
|
||||||
|
if (!PREF.ExistsAndTrue("SkipEmptyDays")) {
|
||||||
|
LoadDate(previous_date.addDays(1));
|
||||||
|
} else {
|
||||||
QDate d=previous_date;
|
QDate d=previous_date;
|
||||||
bool found=false;
|
|
||||||
for (int i=0;i<90;i++) {
|
for (int i=0;i<90;i++) {
|
||||||
d=d.addDays(1);
|
d=d.addDays(1);
|
||||||
if (PROFILE.GetDay(d)) {
|
if (PROFILE.GetDay(d)) {
|
||||||
LoadDate(d);
|
LoadDate(d);
|
||||||
found=true;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!found) LoadDate(previous_date.addDays(1));
|
}
|
||||||
//LoadDate(previous_date.addDays(1));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Daily::on_calButton_toggled(bool checked)
|
void Daily::on_calButton_toggled(bool checked)
|
||||||
|
@ -66,6 +66,9 @@ PreferencesDialog::PreferencesDialog(QWidget *parent,Profile * _profile) :
|
|||||||
ui->bigFontBold->setChecked(bigfont->weight()==QFont::Bold);
|
ui->bigFontBold->setChecked(bigfont->weight()==QFont::Bold);
|
||||||
ui->bigFontItalic->setChecked(bigfont->italic());
|
ui->bigFontItalic->setChecked(bigfont->italic());
|
||||||
|
|
||||||
|
if (!PREF.Exists("SkipEmptyDays")) PREF["SkipEmptyDays"]=true;
|
||||||
|
ui->skipEmptyDays->setChecked(PREF["SkipEmptyDays"].toBool());
|
||||||
|
|
||||||
if (!PREF.Exists("Updates_AutoCheck")) PREF["Updates_AutoCheck"]=true;
|
if (!PREF.Exists("Updates_AutoCheck")) PREF["Updates_AutoCheck"]=true;
|
||||||
ui->automaticallyCheckUpdates->setChecked(PREF["Updates_AutoCheck"].toBool());
|
ui->automaticallyCheckUpdates->setChecked(PREF["Updates_AutoCheck"].toBool());
|
||||||
|
|
||||||
@ -193,6 +196,7 @@ void PreferencesDialog::Save()
|
|||||||
(*profile)["SyncOximetry"]=ui->oximetrySync->isChecked();
|
(*profile)["SyncOximetry"]=ui->oximetrySync->isChecked();
|
||||||
(*profile)["OximeterType"]=ui->oximetryType->currentText();
|
(*profile)["OximeterType"]=ui->oximetryType->currentText();
|
||||||
|
|
||||||
|
PREF["SkipEmptyDays"]=ui->skipEmptyDays->isChecked();
|
||||||
PREF["Updates_AutoCheck"]=ui->automaticallyCheckUpdates->isChecked();
|
PREF["Updates_AutoCheck"]=ui->automaticallyCheckUpdates->isChecked();
|
||||||
PREF["Updates_CheckFrequency"]=ui->updateCheckEvery->value();
|
PREF["Updates_CheckFrequency"]=ui->updateCheckEvery->value();
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QTabWidget" name="tabWidget">
|
<widget class="QTabWidget" name="tabWidget">
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>6</number>
|
<number>0</number>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QWidget" name="visualTab">
|
<widget class="QWidget" name="visualTab">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
@ -209,6 +209,16 @@ It has no effect on single cpu machines.</string>
|
|||||||
</property>
|
</property>
|
||||||
</spacer>
|
</spacer>
|
||||||
</item>
|
</item>
|
||||||
|
<item row="7" column="2">
|
||||||
|
<widget class="QCheckBox" name="skipEmptyDays">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Skip empty days with Prev & Next buttons above daily view calendar</string>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Skip Empty Days</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="sessionTab">
|
<widget class="QWidget" name="sessionTab">
|
||||||
|
Loading…
Reference in New Issue
Block a user