mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 03:18:49 +03:00
20 lines
310 B
C
20 lines
310 B
C
|
#pragma once
|
||
|
|
||
|
#include <QFrame>
|
||
|
|
||
|
#include "FlatButton.h"
|
||
|
|
||
|
class LeaveRoomDialog : public QFrame
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit LeaveRoomDialog(QWidget *parent = nullptr);
|
||
|
|
||
|
signals:
|
||
|
void closing(bool isLeaving);
|
||
|
|
||
|
private:
|
||
|
FlatButton *confirmBtn_;
|
||
|
FlatButton *cancelBtn_;
|
||
|
};
|