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.
23 lines
375 B
23 lines
375 B
7 years ago
|
#pragma once
|
||
|
|
||
|
#include <QFrame>
|
||
|
#include <QLineEdit>
|
||
|
|
||
|
#include "FlatButton.h"
|
||
|
|
||
|
class JoinRoomDialog : public QFrame
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
JoinRoomDialog(QWidget *parent = nullptr);
|
||
|
|
||
|
signals:
|
||
|
void closing(bool isJoining, QString roomAlias);
|
||
|
|
||
|
private:
|
||
|
FlatButton *confirmBtn_;
|
||
|
FlatButton *cancelBtn_;
|
||
|
|
||
|
QLineEdit *roomAliasEdit_;
|
||
|
};
|