obs-studio/UI/auth-mixer.hpp
2019-02-07 16:28:19 -08:00

31 lines
510 B
C++

#pragma once
#include "auth-oauth.hpp"
class MixerChat;
class MixerAuth : public OAuthStreamKey {
Q_OBJECT
QSharedPointer<MixerChat> chat;
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();
virtual void LoadUI() override;
public:
MixerAuth(const Def &d);
static std::shared_ptr<Auth> Login(QWidget *parent);
};