mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
add icon and changed label name
This commit is contained in:
parent
1d0fe2e007
commit
d9da68345e
@ -2852,7 +2852,7 @@ void Daily::on_splitter_2_splitterMoved(int, int)
|
||||
AppSetting->setDailyPanelWidth(size);
|
||||
}
|
||||
|
||||
void Daily::on_backup_clicked() {
|
||||
void Daily::on_layout_clicked() {
|
||||
if (!saveGraphLayoutSettings) {
|
||||
saveGraphLayoutSettings= new SaveGraphLayoutSettings("daily",this);
|
||||
}
|
||||
|
@ -273,7 +273,7 @@ private slots:
|
||||
|
||||
void on_splitter_2_splitterMoved(int pos, int index);
|
||||
|
||||
void on_backup_clicked();
|
||||
void on_layout_clicked();
|
||||
|
||||
protected:
|
||||
virtual void showEvent(QShowEvent *);
|
||||
|
@ -1558,9 +1558,16 @@ QToolButton:pressed {
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="backup">
|
||||
<widget class="QPushButton" name="layout">
|
||||
<property name="text">
|
||||
<string>Backup</string>
|
||||
<string>Layout</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="Resources.qrc">
|
||||
<normaloff>:/icons/cog.png</normaloff>:/icons/cog.png</iconset>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Save and Restore graph layout settings</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
BIN
oscar/icons/cog.png
Normal file
BIN
oscar/icons/cog.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.5 KiB |
@ -935,7 +935,7 @@ void Overview::on_toggleVisibility_clicked(bool checked)
|
||||
GraphView->redraw();
|
||||
}
|
||||
|
||||
void Overview::on_backup_clicked() {
|
||||
void Overview::on_layout_clicked() {
|
||||
if (!saveGraphLayoutSettings) {
|
||||
saveGraphLayoutSettings= new SaveGraphLayoutSettings("overview",this);
|
||||
}
|
||||
|
@ -145,7 +145,7 @@ class Overview : public QWidget
|
||||
void on_RangeUpdate(double minx, double maxx);
|
||||
void setGraphText ();
|
||||
|
||||
void on_backup_clicked();
|
||||
void on_layout_clicked();
|
||||
|
||||
private:
|
||||
void CreateAllGraphs();
|
||||
|
@ -260,9 +260,16 @@ QToolButton:pressed {
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="backup">
|
||||
<widget class="QPushButton" name="layout">
|
||||
<property name="text">
|
||||
<string>Backup</string>
|
||||
<string>Layout</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="Resources.qrc">
|
||||
<normaloff>:/icons/cog.png</normaloff>:/icons/cog.png</iconset>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Save and Restore graph layout settings</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
Loading…
Reference in New Issue
Block a user