mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 10:20:47 +03:00
28 lines
457 B
C++
28 lines
457 B
C++
#pragma once
|
|
|
|
#include <QWidget>
|
|
|
|
class FlatButton;
|
|
class RaisedButton;
|
|
|
|
namespace dialogs {
|
|
|
|
class ReCaptcha : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ReCaptcha(const QString &session, QWidget *parent = nullptr);
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *event) override;
|
|
|
|
signals:
|
|
void closing();
|
|
|
|
private:
|
|
FlatButton *openCaptchaBtn_;
|
|
RaisedButton *confirmBtn_;
|
|
RaisedButton *cancelBtn_;
|
|
};
|
|
} // dialogs
|