blob: c239a6976d7e3f92280b84395fd20e6bae2e8128 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef LVIDEOWIDGET_H
#define LVIDEOWIDGET_H
#include "LVideoLabel.h"
#include <QHBoxLayout>
#include <QResizeEvent>
class LVideoWidget : public QWidget {
Q_OBJECT
public:
LVideoWidget(QString, QSize, QWidget* parent=NULL);
~LVideoWidget();
void setIconSize(QSize);
private:
bool flag;
LVideoLabel *iconLabel;
QLabel *textLabel;
QHBoxLayout *layout;
};
#endif
|