2017-08-23 05:36:57 +02:00
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
2018-09-12 18:22:48 +02:00
|
|
|
#include <QFutureWatcher>
|
2017-08-23 05:36:57 +02:00
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ConfigureWeb;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ConfigureWeb : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit ConfigureWeb(QWidget* parent = nullptr);
|
2018-12-07 16:44:37 +01:00
|
|
|
~ConfigureWeb() override;
|
2017-08-23 05:36:57 +02:00
|
|
|
|
2019-05-26 06:39:23 +02:00
|
|
|
void ApplyConfiguration();
|
|
|
|
void RetranslateUI();
|
|
|
|
void SetConfiguration();
|
2019-04-20 04:42:20 +02:00
|
|
|
void SetWebServiceConfigEnabled(bool enabled);
|
2017-08-23 05:36:57 +02:00
|
|
|
|
2018-12-02 20:14:32 +01:00
|
|
|
private:
|
2017-09-19 03:18:26 +02:00
|
|
|
void RefreshTelemetryID();
|
|
|
|
void OnLoginChanged();
|
|
|
|
void VerifyLogin();
|
|
|
|
void OnLoginVerified();
|
|
|
|
|
|
|
|
bool user_verified = true;
|
2018-09-12 18:22:48 +02:00
|
|
|
QFutureWatcher<bool> verify_watcher;
|
2017-09-19 03:18:26 +02:00
|
|
|
|
2017-08-23 05:36:57 +02:00
|
|
|
std::unique_ptr<Ui::ConfigureWeb> ui;
|
|
|
|
};
|