mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-03-28 03:12:02 -04:00
52 lines
1.0 KiB
C++
52 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include <QWizardPage>
|
|
|
|
class Auth;
|
|
class Ui_AutoConfigStreamPage;
|
|
|
|
class AutoConfigStreamPage : public QWizardPage {
|
|
Q_OBJECT
|
|
|
|
friend class AutoConfig;
|
|
|
|
enum class Section : int {
|
|
Connect,
|
|
StreamKey,
|
|
};
|
|
|
|
std::shared_ptr<Auth> auth;
|
|
|
|
std::unique_ptr<Ui_AutoConfigStreamPage> ui;
|
|
QString lastService;
|
|
bool ready = false;
|
|
|
|
void LoadServices(bool showAll);
|
|
inline bool IsCustomService() const;
|
|
|
|
public:
|
|
AutoConfigStreamPage(QWidget *parent = nullptr);
|
|
~AutoConfigStreamPage();
|
|
|
|
virtual bool isComplete() const override;
|
|
virtual int nextId() const override;
|
|
virtual bool validatePage() override;
|
|
|
|
void OnAuthConnected();
|
|
void OnOAuthStreamKeyConnected();
|
|
|
|
public slots:
|
|
void on_show_clicked();
|
|
void on_connectAccount_clicked();
|
|
void on_disconnectAccount_clicked();
|
|
void on_useStreamKey_clicked();
|
|
void on_preferHardware_clicked();
|
|
void ServiceChanged();
|
|
void UpdateKeyLink();
|
|
void UpdateMoreInfoLink();
|
|
void UpdateServerList();
|
|
void UpdateCompleted();
|
|
|
|
void reset_service_ui_fields(std::string &service);
|
|
};
|