summary refs log tree commit diff
path: root/src/dialogs/InviteUsers.h
blob: 952c97a5613cefd6250a38f41563c4cbedf1adb8 (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
37
38
39
40
41
#pragma once

#include <QFrame>
#include <QLabel>
#include <QListWidgetItem>
#include <QStringList>

class QPushButton;
class TextField;
class QListWidget;

namespace dialogs {

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

protected:
        void showEvent(QShowEvent *event) override;

signals:
        void sendInvites(QStringList invitees);

private slots:
        void removeInvitee(QListWidgetItem *item);

private:
        void addUser();
        QStringList invitedUsers() const;

        QPushButton *confirmBtn_;
        QPushButton *cancelBtn_;

        TextField *inviteeInput_;
        QLabel *errorLabel_;

        QListWidget *inviteeList_;
};
} // dialogs