mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
29 lines
596 B
C
29 lines
596 B
C
|
#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);
|
||
|
|
||
|
signals:
|
||
|
void friendWidgetClicked(FriendWidget* widget);
|
||
|
void removeFriend(int friendId);
|
||
|
|
||
|
public:
|
||
|
int friendId;
|
||
|
QLabel avatar, name, statusMessage, statusPic;
|
||
|
QHBoxLayout layout;
|
||
|
QVBoxLayout textLayout;
|
||
|
};
|
||
|
|
||
|
#endif // FRIENDWIDGET_H
|