blob: 56defb6aa05641875ad10a0c5fefa71ac3fc1471 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#ifndef LVIDEOLABEL_H
#define LVIDEOLABEL_H
#include <QLabel>
#include <QMediaPlayer>
#include <QTimer>
#include <QResizeEvent>
#include "LVideoSurface.h"
class LVideoLabel : public QLabel{
Q_OBJECT
public:
LVideoLabel(QString, bool, QWidget* parent=NULL);
~LVideoLabel();
void enableIcons();
void disableIcons();
protected:
void enterEvent(QEvent*);
void leaveEvent(QEvent*);
void resizeEvent(QResizeEvent*);
signals:
void rollOver();
void frameReceived(QPixmap);
private slots:
void initializeBackend();
void stopVideo(QPixmap);
void setDuration(QMediaPlayer::MediaStatus);
void stateChanged(QMediaPlayer::State);
private:
QMediaPlayer *mediaPlayer;
LVideoSurface *surface;
QPixmap thumbnail;
QPixmap defaultThumbnail;
bool entered;
bool icons;
QString filepath;
};
#endif
|