mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-05 05:22:07 +08:00
be77d9c02f
* getting started * setup screens * cleanupg * url input * installer * setup * installer old-commit-hash: 7b72bbe9f3743a16edf31c44506c7f62a43b081b
24 lines
373 B
C++
24 lines
373 B
C++
#include <QWidget>
|
|
#include <QLineEdit>
|
|
#include <QStackedLayout>
|
|
|
|
class Setup : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Setup(QWidget *parent = 0);
|
|
|
|
private:
|
|
QStackedLayout *layout;
|
|
|
|
QLineEdit *url_input;
|
|
|
|
QWidget *getting_started();
|
|
QWidget *network_setup();
|
|
QWidget *software_selection();
|
|
QWidget *downloading();
|
|
|
|
public slots:
|
|
void nextPage();
|
|
};
|