2018-09-16 18:05:51 +00:00
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <QFutureWatcher>
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ConfigureWeb;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ConfigureWeb : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit ConfigureWeb(QWidget* parent = nullptr);
|
2018-12-02 19:10:28 +00:00
|
|
|
~ConfigureWeb() override;
|
2018-09-16 18:05:51 +00:00
|
|
|
|
|
|
|
void applyConfiguration();
|
|
|
|
void retranslateUi();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void RefreshTelemetryID();
|
|
|
|
void OnLoginChanged();
|
|
|
|
void VerifyLogin();
|
|
|
|
void OnLoginVerified();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void setConfiguration();
|
|
|
|
|
|
|
|
bool user_verified = true;
|
|
|
|
QFutureWatcher<bool> verify_watcher;
|
|
|
|
|
|
|
|
std::unique_ptr<Ui::ConfigureWeb> ui;
|
|
|
|
};
|