mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 19:38:48 +03:00
27 lines
437 B
C
27 lines
437 B
C
|
#pragma once
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
class QPushButton;
|
||
|
class QLabel;
|
||
|
|
||
|
namespace dialogs {
|
||
|
|
||
|
class FallbackAuth : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
FallbackAuth(const QString &authType, const QString &session, QWidget *parent = nullptr);
|
||
|
|
||
|
signals:
|
||
|
void confirmation();
|
||
|
void cancel();
|
||
|
|
||
|
private:
|
||
|
QPushButton *openBtn_;
|
||
|
QPushButton *confirmBtn_;
|
||
|
QPushButton *cancelBtn_;
|
||
|
};
|
||
|
} // dialogs
|