mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-04 13:02:09 +08:00
74814dfb75
* add keyboard for custom url * it works * cleanup old-commit-hash: 8de4adac61a9d3fd5eb9044da0d44e36f32806c5
28 lines
503 B
C++
28 lines
503 B
C++
#include <QString>
|
|
#include <QWidget>
|
|
#include <QLineEdit>
|
|
#include <QPushButton>
|
|
#include <QStackedWidget>
|
|
|
|
class Setup : public QStackedWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Setup(QWidget *parent = 0);
|
|
|
|
private:
|
|
QLineEdit *url_input;
|
|
QPushButton *continue_btn;
|
|
|
|
QWidget *getting_started();
|
|
QWidget *network_setup();
|
|
QWidget *software_selection();
|
|
QWidget *custom_software();
|
|
QWidget *downloading();
|
|
|
|
public slots:
|
|
void nextPage();
|
|
void prevPage();
|
|
void download(QString url);
|
|
};
|