1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/friend.h
Kevin Flynn a34e28518f Added resizable friendList
Not perfect, but a good start. Note that the editable name&status labels
disappeared, QDesigner seems to have turned them into regular QLabels
(no idea why).
2014-07-02 23:43:23 -07:00

29 lines
480 B
C++

#ifndef FRIEND_H
#define FRIEND_H
#include <QString>
#include "widget/form/chatform.h"
struct FriendWidget;
struct Friend
{
public:
Friend(int FriendId, QString UserId);
~Friend();
void setName(QString name);
void setStatusMessage(QString message);
QString getName();
public:
FriendWidget* widget;
int friendId;
QString userId;
ChatForm* chatForm;
int hasNewMessages;
Status friendStatus;
QPixmap avatar;
};
#endif // FRIEND_H