muc participant avatars

This commit is contained in:
Blue 2019-12-30 23:22:04 +03:00
parent efc90e18c3
commit 55703c2007
15 changed files with 506 additions and 221 deletions

View file

@ -41,10 +41,20 @@ public:
Shared::Role getRole() const;
void setRole(Shared::Role p_role);
void setRole(unsigned int role);
Shared::Avatar getAvatarState() const;
QString getAvatarPath() const;
protected:
void setAvatarState(Shared::Avatar p_state);
void setAvatarState(unsigned int p_state);
void setAvatarPath(const QString& path);
private:
Shared::Affiliation affiliation;
Shared::Role role;
Shared::Avatar avatarState;
QString avatarPath;
};
}