quill/alert.h

34 lines
514 B
C
Raw Permalink Normal View History

2021-03-25 05:00:19 -07:00
#ifndef ALERT_H
#define ALERT_H
#include <QWidget>
namespace Ui {
class alert;
}
using namespace std;
class alert : public QWidget
{
Q_OBJECT
public:
explicit alert(QWidget *parent = nullptr);
~alert();
bool signatureError = false;
bool downgradeError = false;
bool criticalBattery = false;
2021-06-26 07:09:51 -07:00
void updateReset();
2021-03-25 05:00:19 -07:00
private slots:
void on_continueBtn_clicked();
void on_resetBtn_clicked();
2021-04-02 10:42:00 -07:00
void on_continue2Btn_clicked();
2021-03-25 05:00:19 -07:00
private:
Ui::alert *ui;
};
#endif // ALERT_H