Try out GUI options for having a preview in the choice phase.

This commit is contained in:
Teo Mrnjavac 2015-09-18 17:25:55 +02:00
parent 01bd1a779c
commit e58fe43a03
2 changed files with 82 additions and 1 deletions

View file

@ -23,8 +23,11 @@
#include "core/OsproberEntry.h"
#include <QMutex>
class QBoxLayout;
class QLabel;
class QListView;
class PartitionCoreModule;
@ -55,12 +58,17 @@ signals:
private:
void setNextEnabled( bool enabled );
void updatePreviews();
bool m_nextEnabled;
PartitionCoreModule* m_core;
QBoxLayout* m_itemsLayout;
QLabel* m_messageLabel;
QListView* m_drivesView;
QWidget* m_previewFrame;
QMutex m_previewsMutex;
Choice m_choice;
};