aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/LVideoWidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/core/libLumina/LVideoWidget.h')
-rw-r--r--src-qt5/core/libLumina/LVideoWidget.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src-qt5/core/libLumina/LVideoWidget.h b/src-qt5/core/libLumina/LVideoWidget.h
new file mode 100644
index 00000000..610fd9e5
--- /dev/null
+++ b/src-qt5/core/libLumina/LVideoWidget.h
@@ -0,0 +1,22 @@
+#ifndef LVIDEOWIDGET_H
+#define LVIDEOWIDGET_H
+
+#include "LVideoLabel.h"
+#include <QHBoxLayout>
+#include <QResizeEvent>
+
+class LVideoWidget : public QWidget {
+ Q_OBJECT
+ public:
+ LVideoWidget(QString, QSize, bool icons, QWidget* parent=NULL);
+ ~LVideoWidget();
+ void setIconSize(QSize);
+ void disableIcons();
+ void enableIcons();
+
+ private:
+ LVideoLabel *iconLabel;
+ QLabel *textLabel;
+ QHBoxLayout *layout;
+};
+#endif
bgstack15