Add shutdown widget.

This commit is contained in:
sunwen
2023-09-11 16:29:30 +08:00
parent ae1b063b72
commit 2bbef648f5
10 changed files with 140 additions and 7 deletions

View 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