mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-29 22:28:49 +03:00
22 lines
315 B
C++
22 lines
315 B
C++
#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
|