Preferenalize that skip feature

This commit is contained in:
Mark Watkins 2011-10-30 14:51:57 +10:00
parent d31193de1e
commit 1feb6818a7
3 changed files with 36 additions and 20 deletions

View File

@ -856,33 +856,35 @@ void Daily::on_JournalNotesUnderline_clicked()
void Daily::on_prevDayButton_clicked()
{
if (!PREF.ExistsAndTrue("SkipEmptyDays")) {
LoadDate(previous_date.addDays(-1));
} else {
QDate d=previous_date;
bool found=false;
for (int i=0;i<90;i++) {
d=d.addDays(-1);
if (PROFILE.GetDay(d)) {
LoadDate(d);
found=true;
break;
}
}
if (!found) LoadDate(previous_date.addDays(-1));
}
}
void Daily::on_nextDayButton_clicked()
{
if (!PREF.ExistsAndTrue("SkipEmptyDays")) {
LoadDate(previous_date.addDays(1));
} else {
QDate d=previous_date;
bool found=false;
for (int i=0;i<90;i++) {
d=d.addDays(1);
if (PROFILE.GetDay(d)) {
LoadDate(d);
found=true;
break;
}
}
if (!found) LoadDate(previous_date.addDays(1));
//LoadDate(previous_date.addDays(1));
}
}
void Daily::on_calButton_toggled(bool checked)

View File

@ -66,6 +66,9 @@ PreferencesDialog::PreferencesDialog(QWidget *parent,Profile * _profile) :
ui->bigFontBold->setChecked(bigfont->weight()==QFont::Bold);
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;
ui->automaticallyCheckUpdates->setChecked(PREF["Updates_AutoCheck"].toBool());
@ -193,6 +196,7 @@ void PreferencesDialog::Save()
(*profile)["SyncOximetry"]=ui->oximetrySync->isChecked();
(*profile)["OximeterType"]=ui->oximetryType->currentText();
PREF["SkipEmptyDays"]=ui->skipEmptyDays->isChecked();
PREF["Updates_AutoCheck"]=ui->automaticallyCheckUpdates->isChecked();
PREF["Updates_CheckFrequency"]=ui->updateCheckEvery->value();

View File

@ -38,7 +38,7 @@
<item>
<widget class="QTabWidget" name="tabWidget">
<property name="currentIndex">
<number>6</number>
<number>0</number>
</property>
<widget class="QWidget" name="visualTab">
<attribute name="title">
@ -209,6 +209,16 @@ It has no effect on single cpu machines.</string>
</property>
</spacer>
</item>
<item row="7" column="2">
<widget class="QCheckBox" name="skipEmptyDays">
<property name="toolTip">
<string>Skip empty days with Prev &amp; Next buttons above daily view calendar</string>
</property>
<property name="text">
<string>Skip Empty Days</string>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="sessionTab">