From 48ad1dc5a6792d1f62a3715d1ad5919089ab2dd7 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 30 Oct 2011 13:18:20 +1000 Subject: [PATCH] Added 'today' (most recent) button, tooltips --- daily.cpp | 8 ++++++++ daily.h | 2 ++ daily.ui | 21 ++++++++++++++++++++- 3 files changed, 30 insertions(+), 1 deletion(-) 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