Added 'today' (most recent) button, tooltips

This commit is contained in:
Mark Watkins 2011-10-30 13:18:20 +10:00
parent 0f7f67707f
commit 48ad1dc5a6
3 changed files with 30 additions and 1 deletions

View File

@ -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);
}

View File

@ -62,6 +62,8 @@ private slots:
void on_calButton_toggled(bool checked);
void on_todayButton_clicked();
protected:
private:

View File

@ -57,6 +57,9 @@
</property>
<item>
<widget class="QToolButton" name="prevDayButton">
<property name="toolTip">
<string>Go to the previous day</string>
</property>
<property name="text">
<string>&lt; Prev</string>
</property>
@ -76,6 +79,9 @@
<height>25</height>
</size>
</property>
<property name="toolTip">
<string>Show or hide the calender</string>
</property>
<property name="layoutDirection">
<enum>Qt::LeftToRight</enum>
</property>
@ -99,8 +105,21 @@
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="todayButton">
<property name="toolTip">
<string>Go to the most recent day with data records</string>
</property>
<property name="text">
<string>T</string>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="nextDayButton">
<property name="toolTip">
<string>Go to the next day</string>
</property>
<property name="text">
<string>Next &gt;</string>
</property>
@ -499,7 +518,7 @@
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>70</height>
<height>77</height>
</size>
</property>
</spacer>