summary refs log tree commit diff
path: root/src/dialogs/FallbackAuth.h
blob: 62092b0812354474bd028dee4b2b49dae31e2fc4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// 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