Files
StarPilot/selfdrive/ui/qt/setup/setup.hpp
T
Adeeb Shihadeh be77d9c02f Qt setup + installer (#2511)
* getting started

* setup screens

* cleanupg

* url input

* installer

* setup

* installer
old-commit-hash: 7b72bbe9f3743a16edf31c44506c7f62a43b081b
2020-11-12 11:31:02 -08:00

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();
};