aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/LVideoWidget.h
blob: 610fd9e5542e96200be23af8a8951f94bf69b200 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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