mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-21 08:23:55 +08:00
* multilang
* update translations
* Specifies dependency
* load lang from json file
* update translations
* fix white border
* remove stretch
* update translations
* fix tr
* no default language
* update translations
* rm main_en.qm
* cleanup
* cleanup
* add language files
* remove type=unfinish
* build languages before assets
* depends lrelease
old-commit-hash: 0767a6dee5
35 lines
661 B
C++
35 lines
661 B
C++
#pragma once
|
|
|
|
#include <QLabel>
|
|
#include <QStackedWidget>
|
|
#include <QString>
|
|
#include <QTranslator>
|
|
#include <QWidget>
|
|
|
|
class Setup : public QStackedWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Setup(QWidget *parent = 0);
|
|
|
|
private:
|
|
void selectLanguage();
|
|
QWidget *low_voltage();
|
|
QWidget *getting_started();
|
|
QWidget *network_setup();
|
|
QWidget *downloading();
|
|
QWidget *download_failed(QLabel *url, QLabel *body);
|
|
|
|
QWidget *failed_widget;
|
|
QWidget *downloading_widget;
|
|
QTranslator translator;
|
|
|
|
signals:
|
|
void finished(const QString &url, const QString &error = "");
|
|
|
|
public slots:
|
|
void nextPage();
|
|
void prevPage();
|
|
void download(QString url);
|
|
};
|