mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
31 lines
662 B
C++
31 lines
662 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);
|
|
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
|