aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/LVideoWidget.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-10-25 18:27:52 -0400
committerKen Moore <ken@ixsystems.com>2017-10-25 18:27:52 -0400
commitc52596a4d90e681b394e4c212592f26275d74bae (patch)
tree6264e2caf978da7e09d749c923821e3d8132bd10 /src-qt5/core/libLumina/LVideoWidget.h
parentRe-enable the "Root Mode" warning at the top of lumina-fm, and setup the root... (diff)
parentFixed issues with previews and LVideoWidget sizing (diff)
downloadlumina-c52596a4d90e681b394e4c212592f26275d74bae.tar.gz
lumina-c52596a4d90e681b394e4c212592f26275d74bae.tar.bz2
lumina-c52596a4d90e681b394e4c212592f26275d74bae.zip
Merge branch 'master' of github.com:trueos/lumina
Diffstat (limited to 'src-qt5/core/libLumina/LVideoWidget.h')
-rw-r--r--src-qt5/core/libLumina/LVideoWidget.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src-qt5/core/libLumina/LVideoWidget.h b/src-qt5/core/libLumina/LVideoWidget.h
index c239a697..610fd9e5 100644
--- a/src-qt5/core/libLumina/LVideoWidget.h
+++ b/src-qt5/core/libLumina/LVideoWidget.h
@@ -8,12 +8,13 @@
class LVideoWidget : public QWidget {
Q_OBJECT
public:
- LVideoWidget(QString, QSize, QWidget* parent=NULL);
+ LVideoWidget(QString, QSize, bool icons, QWidget* parent=NULL);
~LVideoWidget();
void setIconSize(QSize);
+ void disableIcons();
+ void enableIcons();
private:
- bool flag;
LVideoLabel *iconLabel;
QLabel *textLabel;
QHBoxLayout *layout;
bgstack15