mirror of https://github.com/Nheko-Reborn/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
392 B
27 lines
392 B
7 years ago
|
#pragma once
|
||
|
|
||
|
#include <QFrame>
|
||
|
#include <QLineEdit>
|
||
|
|
||
7 years ago
|
class FlatButton;
|
||
7 years ago
|
|
||
7 years ago
|
namespace dialogs {
|
||
|
|
||
|
class JoinRoom : public QFrame
|
||
7 years ago
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
7 years ago
|
JoinRoom(QWidget *parent = nullptr);
|
||
7 years ago
|
|
||
|
signals:
|
||
|
void closing(bool isJoining, QString roomAlias);
|
||
|
|
||
|
private:
|
||
|
FlatButton *confirmBtn_;
|
||
|
FlatButton *cancelBtn_;
|
||
|
|
||
|
QLineEdit *roomAliasEdit_;
|
||
|
};
|
||
7 years ago
|
|
||
|
} // dialogs
|