mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
26 lines
392 B
C++
26 lines
392 B
C++
#pragma once
|
|
|
|
#include <QFrame>
|
|
#include <QLineEdit>
|
|
|
|
class FlatButton;
|
|
|
|
namespace dialogs {
|
|
|
|
class JoinRoom : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
JoinRoom(QWidget *parent = nullptr);
|
|
|
|
signals:
|
|
void closing(bool isJoining, QString roomAlias);
|
|
|
|
private:
|
|
FlatButton *confirmBtn_;
|
|
FlatButton *cancelBtn_;
|
|
|
|
QLineEdit *roomAliasEdit_;
|
|
};
|
|
|
|
} // dialogs
|