obs-studio/UI/auth-twitch.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
793 B
C++
Raw Normal View History

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