Files
StarPilot/selfdrive/ui/qt/setup/setup.h
T
Cameron Clough 4d4c0c45b9 setup: replace software selection widget with input dialog (#27236)
* setup: replace software selection widget with input dialog

* revert

https://github.com/commaai/openpilot/pull/21617/commits/3f7047651c31b209c9c4a0b8ff7bd408aca3f9e5
old-commit-hash: 1a0a6387409203e1a2611eb35882de7a931ca703
2023-02-07 11:37:25 -08:00

31 lines
511 B
C++

#pragma once
#include <QStackedWidget>
#include <QString>
#include <QWidget>
class Setup : public QStackedWidget {
Q_OBJECT
public:
explicit Setup(QWidget *parent = 0);
private:
QWidget *low_voltage();
QWidget *getting_started();
QWidget *network_setup();
QWidget *downloading();
QWidget *download_failed();
QWidget *failed_widget;
QWidget *downloading_widget;
signals:
void finished(bool success);
public slots:
void nextPage();
void prevPage();
void download(QString url);
};