openpilot is an open source driver assistance system. openpilot performs the functions of Automated Lane Centering and Adaptive Cruise Control for over 200 supported car makes and models.

28 lines
503 B

#include <QString>
#include <QWidget>
#include <QLineEdit>
#include <QPushButton>
5 years ago
#include <QStackedWidget>
5 years ago
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);
};