123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #pragma once
- #include <QDialog>
- #include <QTimer>
- #include <string>
- #include <memory>
- #include <json11.hpp>
- #include "auth-oauth.hpp"
- class BrowserDock;
- class TwitchAuth : public OAuthStreamKey {
- Q_OBJECT
- friend class TwitchLogin;
- bool uiLoaded = false;
- std::string name;
- std::string uuid;
- virtual bool RetryLogin() override;
- virtual void SaveInternal() override;
- virtual bool LoadInternal() override;
- bool MakeApiRequest(const char *path, json11::Json &json_out);
- bool GetChannelInfo();
- virtual void LoadUI() override;
- public:
- TwitchAuth(const Def &d);
- ~TwitchAuth();
- static std::shared_ptr<Auth> Login(QWidget *parent,
- const std::string &service_name);
- QTimer uiLoadTimer;
- public slots:
- void TryLoadSecondaryUIPanes();
- void LoadSecondaryUIPanes();
- };
|