mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-21 17:34:57 -05:00
34 lines
554 B
C++
34 lines
554 B
C++
#pragma once
|
|
#include "resource-table.hpp"
|
|
|
|
#include <QCheckBox>
|
|
#include <QDialog>
|
|
|
|
namespace advss {
|
|
|
|
class TwitchConnectionsTable final : public ResourceTable {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static TwitchConnectionsTable *Create();
|
|
|
|
private slots:
|
|
void Add();
|
|
void Remove();
|
|
|
|
private:
|
|
TwitchConnectionsTable(QTabWidget *parent = nullptr);
|
|
};
|
|
|
|
class InvalidTokenDialog : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
static void ShowWarning(const QString &name);
|
|
|
|
private:
|
|
InvalidTokenDialog(const QString &name);
|
|
QCheckBox *_doNotShowAgain;
|
|
};
|
|
|
|
} // namespace advss
|