Add shutdown widget.
This commit is contained in:
20
src/windows/ShutdownWidget.h
Normal file
20
src/windows/ShutdownWidget.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#ifndef SHUTDOWNWIDGET_H
|
||||
#define SHUTDOWNWIDGET_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
class QLabel;
|
||||
class LoadingWidget;
|
||||
|
||||
class ShutdownWidget : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
ShutdownWidget(QWidget* aParent);
|
||||
|
||||
private:
|
||||
LoadingWidget* mLoadingWidget;
|
||||
QLabel* mMessage;
|
||||
};
|
||||
|
||||
#endif // SHUTDOWNWIDGET_H
|
||||
Reference in New Issue
Block a user