mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
24 lines
376 B
C++
24 lines
376 B
C++
#pragma once
|
|
|
|
#include <QWidget>
|
|
|
|
class QPushButton;
|
|
|
|
namespace dialogs {
|
|
|
|
class ReCaptcha : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ReCaptcha(const QString &session, QWidget *parent = nullptr);
|
|
|
|
signals:
|
|
void confirmation();
|
|
|
|
private:
|
|
QPushButton *openCaptchaBtn_;
|
|
QPushButton *confirmBtn_;
|
|
QPushButton *cancelBtn_;
|
|
};
|
|
} // dialogs
|