diff --git a/daily.cpp b/daily.cpp index 115acce6..6b356009 100644 --- a/daily.cpp +++ b/daily.cpp @@ -870,3 +870,11 @@ void Daily::on_calButton_toggled(bool checked) ui->calButton->setArrowType(Qt::DownArrow); else ui->calButton->setArrowType(Qt::UpArrow); } + + +void Daily::on_todayButton_clicked() +{ + QDate d=QDate::currentDate(); + if (d > PROFILE.LastDay()) d=PROFILE.LastDay(); + LoadDate(d); +} diff --git a/daily.h b/daily.h index 17ebb9e9..1a8e3aff 100644 --- a/daily.h +++ b/daily.h @@ -62,6 +62,8 @@ private slots: void on_calButton_toggled(bool checked); + void on_todayButton_clicked(); + protected: private: diff --git a/daily.ui b/daily.ui index e81edcb6..efc759ea 100644 --- a/daily.ui +++ b/daily.ui @@ -57,6 +57,9 @@ + + Go to the previous day + < Prev @@ -76,6 +79,9 @@ 25 + + Show or hide the calender + Qt::LeftToRight @@ -99,8 +105,21 @@ + + + + Go to the most recent day with data records + + + T + + + + + Go to the next day + Next > @@ -499,7 +518,7 @@ 20 - 70 + 77