mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-08-21 16:23:46 +08:00
4012d181e1
date: 2024-03-17T10:14:38 master commit: 7e9a909e0e57ecb31df4c87c5b9a06b1204fd034
27 lines
511 B
C++
27 lines
511 B
C++
#include <QLabel>
|
|
#include <QPushButton>
|
|
#include <QWidget>
|
|
|
|
enum ResetMode {
|
|
USER_RESET, // user initiated a factory reset from openpilot
|
|
RECOVER, // userdata is corrupt for some reason, give a chance to recover
|
|
};
|
|
|
|
class Reset : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Reset(ResetMode mode, QWidget *parent = 0);
|
|
|
|
private:
|
|
QLabel *body;
|
|
QPushButton *rejectBtn;
|
|
QPushButton *rebootBtn;
|
|
QPushButton *confirmBtn;
|
|
void doErase();
|
|
void startReset();
|
|
|
|
private slots:
|
|
void confirm();
|
|
};
|