aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/LVideoLabel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/core/libLumina/LVideoLabel.h')
-rw-r--r--src-qt5/core/libLumina/LVideoLabel.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src-qt5/core/libLumina/LVideoLabel.h b/src-qt5/core/libLumina/LVideoLabel.h
index fa590e5a..110e3305 100644
--- a/src-qt5/core/libLumina/LVideoLabel.h
+++ b/src-qt5/core/libLumina/LVideoLabel.h
@@ -1,5 +1,5 @@
-#ifndef LVIDEOLABEL_H
-#define LVIDEOLABEL_H
+#ifndef LVIDEOLABEL_H
+#define LVIDEOLABEL_H
#include <QLabel>
#include <QMediaPlayer>
@@ -13,21 +13,26 @@ class LVideoLabel : public QLabel {
LVideoLabel(QString, QWidget* parent=NULL);
~LVideoLabel();
void setShrinkPixmap(bool);
-
+
protected:
void enterEvent(QEvent*);
void leaveEvent(QEvent*);
+
signals:
void rollOver();
void frameReceived(QPixmap);
+
private slots:
+ void initializeBackend();
void stopVideo(QPixmap);
void setDuration(QMediaPlayer::MediaStatus);
+
private:
QMediaPlayer *mediaPlayer;
LVideoSurface *surface;
QPixmap thumbnail;
bool entered;
bool shrink;
+ QString filepath;
};
#endif
bgstack15