add choose friend to group chats

This commit is contained in:
xyz
2025-06-01 12:13:00 +08:00
parent 8b3290b755
commit a814d43d45
5 changed files with 300 additions and 5 deletions

View File

@ -12,6 +12,7 @@
#include "debug.h"
#include "model/data.h"
#include "choosefrienddialog.h"
using namespace model;
@ -22,6 +23,10 @@ class AvatarItem : public QWidget {
public:
AvatarItem(const QIcon& avatar, const QString& name);
QPushButton* getAvatar() {
return avatarBtn;
}
private:
QPushButton* avatarBtn;
QLabel* nameLabel;