mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Added 'today' (most recent) button, tooltips
This commit is contained in:
parent
0f7f67707f
commit
48ad1dc5a6
@ -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);
|
||||
}
|
||||
|
2
daily.h
2
daily.h
@ -62,6 +62,8 @@ private slots:
|
||||
|
||||
void on_calButton_toggled(bool checked);
|
||||
|
||||
void on_todayButton_clicked();
|
||||
|
||||
protected:
|
||||
|
||||
private:
|
||||
|
21
daily.ui
21
daily.ui
@ -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>< 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 ></string>
|
||||
</property>
|
||||
@ -499,7 +518,7 @@
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>70</height>
|
||||
<height>77</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
|
Loading…
Reference in New Issue
Block a user