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.
58 lines
1.0 KiB
58 lines
1.0 KiB
7 years ago
|
#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
|