forked from mirror/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.
22 lines
375 B
22 lines
375 B
#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_;
|
|
};
|
|
|