mirror of https://github.com/qTox/qTox.git
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.
30 lines
662 B
30 lines
662 B
#ifndef FRIENDWIDGET_H |
|
#define FRIENDWIDGET_H |
|
|
|
#include <QWidget> |
|
#include <QLabel> |
|
#include <QVBoxLayout> |
|
#include <QHBoxLayout> |
|
|
|
struct FriendWidget : public QWidget |
|
{ |
|
Q_OBJECT |
|
public: |
|
FriendWidget(int FriendId, QString id); |
|
void mouseReleaseEvent (QMouseEvent* event); |
|
void contextMenuEvent(QContextMenuEvent * event); |
|
void setAsActiveChatroom(); |
|
void setAsInactiveChatroom(); |
|
|
|
signals: |
|
void friendWidgetClicked(FriendWidget* widget); |
|
void removeFriend(int friendId); |
|
|
|
public: |
|
int friendId; |
|
QLabel avatar, name, statusMessage, statusPic; |
|
QHBoxLayout layout; |
|
QVBoxLayout textLayout; |
|
}; |
|
|
|
#endif // FRIENDWIDGET_H
|
|
|