mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-05 01:45:05 +01:00
39 lines
722 B
C++
39 lines
722 B
C++
// 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);
|
|
~ConfigureWeb();
|
|
|
|
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;
|
|
};
|