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); ui->calButton->setArrowType(Qt::DownArrow);
else ui->calButton->setArrowType(Qt::UpArrow); 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_calButton_toggled(bool checked);
void on_todayButton_clicked();
protected: protected:
private: private:

View File

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