You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
654 B
31 lines
654 B
#pragma once
|
|
|
|
#include <QLabel>
|
|
#include <QProcess>
|
|
#include <QPushButton>
|
|
#include <QProgressBar>
|
|
#include <QStackedWidget>
|
|
#include <QWidget>
|
|
|
|
class Updater : public QStackedWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Updater(const QString &updater_path, const QString &manifest_path, QWidget *parent = 0);
|
|
|
|
private slots:
|
|
void installUpdate();
|
|
void readProgress();
|
|
void updateFinished(int exitCode, QProcess::ExitStatus exitStatus);
|
|
|
|
private:
|
|
bool eventFilter(QObject *obj, QEvent *event) override;
|
|
|
|
QProcess proc;
|
|
QString updater, manifest;
|
|
|
|
QLabel *text;
|
|
QProgressBar *bar;
|
|
QPushButton *reboot;
|
|
QWidget *prompt, *wifi, *progress;
|
|
};
|
|
|