diff options
| author | 2017-08-26 20:15:15 -0400 | |
|---|---|---|
| committer | 2017-08-26 20:15:15 -0400 | |
| commit | 22fc378fe9f3314b08d81ffaaf57fd8688e9e3cc (patch) | |
| tree | d263eaca71ee08c3f9b81441b42bcd0e35977510 /src/citra_qt/configuration/configure_web.h | |
| parent | SidebySide Layout (#2859) (diff) | |
| parent | web_backend: Fix CPR bug where Winsock is not properly initializing. (diff) | |
| download | yuzu-22fc378fe9f3314b08d81ffaaf57fd8688e9e3cc.tar.gz yuzu-22fc378fe9f3314b08d81ffaaf57fd8688e9e3cc.tar.xz yuzu-22fc378fe9f3314b08d81ffaaf57fd8688e9e3cc.zip | |
Merge pull request #2897 from bunnei/telemetry-ui
Telemetry UI and final touches
Diffstat (limited to '')
| -rw-r--r-- | src/citra_qt/configuration/configure_web.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/citra_qt/configuration/configure_web.h b/src/citra_qt/configuration/configure_web.h new file mode 100644 index 000000000..20bc254b9 --- /dev/null +++ b/src/citra_qt/configuration/configure_web.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | // Copyright 2017 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #include <memory> | ||
| 8 | #include <QWidget> | ||
| 9 | |||
| 10 | namespace Ui { | ||
| 11 | class ConfigureWeb; | ||
| 12 | } | ||
| 13 | |||
| 14 | class ConfigureWeb : public QWidget { | ||
| 15 | Q_OBJECT | ||
| 16 | |||
| 17 | public: | ||
| 18 | explicit ConfigureWeb(QWidget* parent = nullptr); | ||
| 19 | ~ConfigureWeb(); | ||
| 20 | |||
| 21 | void applyConfiguration(); | ||
| 22 | |||
| 23 | public slots: | ||
| 24 | void refreshTelemetryID(); | ||
| 25 | |||
| 26 | private: | ||
| 27 | void setConfiguration(); | ||
| 28 | |||
| 29 | std::unique_ptr<Ui::ConfigureWeb> ui; | ||
| 30 | }; | ||