mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 11:28:49 +03:00
58 lines
1 KiB
C++
58 lines
1 KiB
C++
|
#pragma once
|
||
|
|
||
|
#include <QFrame>
|
||
|
#include <QListWidget>
|
||
|
|
||
|
class Avatar;
|
||
|
class Cache;
|
||
|
class FlatButton;
|
||
|
class QHBoxLayout;
|
||
|
class QLabel;
|
||
|
class QVBoxLayout;
|
||
|
|
||
|
struct RoomMember;
|
||
|
|
||
|
template<class T>
|
||
|
class QSharedPointer;
|
||
|
|
||
|
namespace dialogs {
|
||
|
|
||
|
class MemberItem : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
MemberItem(const RoomMember &member, QWidget *parent);
|
||
|
|
||
|
private:
|
||
|
QHBoxLayout *topLayout_;
|
||
|
QVBoxLayout *textLayout_;
|
||
|
|
||
|
Avatar *avatar_;
|
||
|
|
||
|
QLabel *userName_;
|
||
|
QLabel *userId_;
|
||
|
};
|
||
|
|
||
|
class MemberList : public QFrame
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
MemberList(const QString &room_id, QSharedPointer<Cache> cache, QWidget *parent = nullptr);
|
||
|
|
||
|
public slots:
|
||
|
void addUsers(const std::vector<RoomMember> &users);
|
||
|
|
||
|
protected:
|
||
|
void paintEvent(QPaintEvent *event) override;
|
||
|
void moveButtonToBottom();
|
||
|
|
||
|
private:
|
||
|
QString room_id_;
|
||
|
QLabel *topLabel_;
|
||
|
QListWidget *list_;
|
||
|
QSharedPointer<Cache> cache_;
|
||
|
FlatButton *moreBtn_;
|
||
|
};
|
||
|
} // dialogs
|