blob: 6743acb6ce3822d3fb6c31240dfe2a19a367ccf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#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);
void disableIcons();
void enableIcons();
private:
bool flag;
LVideoLabel *iconLabel;
QLabel *textLabel;
QHBoxLayout *layout;
};
#endif
|