summary refs log tree commit diff
path: root/src/dialogs/JoinRoom.h
blob: 11c54d7c989f1b273e3f9428b8f96dc18292bb43 (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
27
28
29
30
31
32
33
34
35
36
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later

#pragma once

#include <QFrame>

class QPushButton;
class TextField;

namespace dialogs {

class JoinRoom : public QFrame
{
    Q_OBJECT
public:
    JoinRoom(QWidget *parent = nullptr);

signals:
    void joinRoom(const QString &room);

protected:
    void showEvent(QShowEvent *event) override;

private slots:
    void handleInput();

private:
    QPushButton *confirmBtn_;
    QPushButton *cancelBtn_;

    TextField *roomInput_;
};

} // dialogs