summary refs log tree commit diff
path: root/src/dialogs/FallbackAuth.h
diff options
context:
space:
mode:
authorDeepBlueV7.X <nicolas.werner@hotmail.de>2023-08-10 07:01:52 +0000
committerGitHub <noreply@github.com>2023-08-10 07:01:52 +0000
commitff079f6b6ae4b7fd020218263b05079ae4d0bfea (patch)
treefb5abe783bcbc6464c696aba1579568ab4b6d24d /src/dialogs/FallbackAuth.h
parentRemove usage of creator (diff)
parentQML the fallback auth dialog (diff)
downloadnheko-ff079f6b6ae4b7fd020218263b05079ae4d0bfea.tar.xz
Merge pull request #1523 from Nheko-Reborn/qmlFallbackAuth
QML the fallback auth dialog
Diffstat (limited to 'src/dialogs/FallbackAuth.h')
-rw-r--r--src/dialogs/FallbackAuth.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/dialogs/FallbackAuth.h b/src/dialogs/FallbackAuth.h
deleted file mode 100644

index 62092b08..00000000 --- a/src/dialogs/FallbackAuth.h +++ /dev/null
@@ -1,30 +0,0 @@ -// SPDX-FileCopyrightText: Nheko Contributors -// -// SPDX-License-Identifier: GPL-3.0-or-later - -#pragma once - -#include <QWidget> - -class QPushButton; -class QLabel; - -namespace dialogs { - -class FallbackAuth final : 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