yolobs-studio/UI/auth-mixer.hpp

31 lines
537 B
C++
Raw Normal View History

2019-07-27 12:47:10 +00:00
#pragma once
#include "auth-oauth.hpp"
2019-09-22 21:19:10 +00:00
class BrowserDock;
2019-07-27 12:47:10 +00:00
class MixerAuth : public OAuthStreamKey {
Q_OBJECT
2019-09-22 21:19:10 +00:00
QSharedPointer<BrowserDock> chat;
2019-07-27 12:47:10 +00:00
QSharedPointer<QAction> chatMenu;
bool uiLoaded = false;
std::string name;
std::string id;
virtual bool RetryLogin() override;
virtual void SaveInternal() override;
virtual bool LoadInternal() override;
bool GetChannelInfo(bool allow_retry = true);
virtual void LoadUI() override;
public:
MixerAuth(const Def &d);
static std::shared_ptr<Auth> Login(QWidget *parent);
};