summary refs log tree commit diff
path: root/src/dialogs/LeaveRoom.h
blob: e94655794a8ad935af5c4dca71a273173690b4df (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
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later

#pragma once

#include <QFrame>

class QPushButton;

namespace dialogs {

class LeaveRoom : public QFrame
{
        Q_OBJECT
public:
        explicit LeaveRoom(QWidget *parent = nullptr);

signals:
        void leaving();

private:
        QPushButton *confirmBtn_;
        QPushButton *cancelBtn_;
};
} // dialogs