aboutsummaryrefslogtreecommitdiff
path: root/lumina-fm/widgets/SlideshowWidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'lumina-fm/widgets/SlideshowWidget.h')
-rw-r--r--lumina-fm/widgets/SlideshowWidget.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/lumina-fm/widgets/SlideshowWidget.h b/lumina-fm/widgets/SlideshowWidget.h
index bd8a671d..3b9c70fd 100644
--- a/lumina-fm/widgets/SlideshowWidget.h
+++ b/lumina-fm/widgets/SlideshowWidget.h
@@ -24,8 +24,11 @@ public:
~SlideshowWidget();
public slots:
+ void ClearImages();
void LoadImages(QList<LFileInfo> list);
+ void refresh(); //Note: This should be called right after the widget becomes visible
+
//Theme change functions
void UpdateIcons();
void UpdateText();
@@ -33,10 +36,11 @@ public slots:
private:
Ui::SlideshowWidget *ui;
void UpdateImage();
+ double zoom;
private slots:
// Picture rotation options
- void on_combo_image_name_indexChanged(int index);
+ void on_combo_image_name_currentIndexChanged(int index);
void on_tool_image_goEnd_clicked();
void on_tool_image_goNext_clicked();
void on_tool_image_goPrev_clicked();
@@ -46,6 +50,8 @@ private slots:
void on_tool_image_remove_clicked();
void on_tool_image_rotateleft_clicked();
void on_tool_image_rotateright_clicked();
+ void on_tool_image_zoomin_clicked();
+ void on_tool_image_zoomout_clicked();
};
#endif \ No newline at end of file
bgstack15