summary refs log tree commit diff
path: root/include/dialogs/JoinRoom.h
blob: dbc06bdf9a3a23358a4e398d4ac20106da43d9c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#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