diff options
author | Loren Burkholder <computersemiexpert@outlook.com> | 2023-06-28 17:00:34 -0400 |
---|---|---|
committer | Loren Burkholder <computersemiexpert@outlook.com> | 2023-07-06 08:35:37 -0400 |
commit | fedc178827c5648b0ccbdd2cd08dcebc920ac416 (patch) | |
tree | 7c6c59b60899d8c7a321bea8fe44c7d04f79040f /src/dialogs/ReCaptcha.h | |
parent | Remove unneeded forward declaration (diff) | |
download | nheko-fedc178827c5648b0ccbdd2cd08dcebc920ac416.tar.xz |
Port the reCAPTCHA dialog to QML
Diffstat (limited to 'src/dialogs/ReCaptcha.h')
-rw-r--r-- | src/dialogs/ReCaptcha.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/dialogs/ReCaptcha.h b/src/dialogs/ReCaptcha.h deleted file mode 100644 index 53c7453e..00000000 --- a/src/dialogs/ReCaptcha.h +++ /dev/null @@ -1,29 +0,0 @@ -// SPDX-FileCopyrightText: Nheko Contributors -// -// SPDX-License-Identifier: GPL-3.0-or-later - -#pragma once - -#include <QWidget> - -class QPushButton; - -namespace dialogs { - -class ReCaptcha final : public QWidget -{ - Q_OBJECT - -public: - ReCaptcha(const QString &session, QWidget *parent = nullptr); - -signals: - void confirmation(); - void cancel(); - -private: - QPushButton *openCaptchaBtn_; - QPushButton *confirmBtn_; - QPushButton *cancelBtn_; -}; -} // dialogs |