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.
39 lines
850 B
39 lines
850 B
#ifndef GROUPWIDGET_H |
|
#define GROUPWIDGET_H |
|
|
|
#include <QWidget> |
|
#include <QLabel> |
|
#include <QHBoxLayout> |
|
#include <QVBoxLayout> |
|
|
|
class GroupWidget : public QWidget |
|
{ |
|
Q_OBJECT |
|
public: |
|
GroupWidget(int GroupId, QString Name); |
|
void onUserListChanged(); |
|
void mouseReleaseEvent (QMouseEvent* event); |
|
void mousePressEvent(QMouseEvent *event); |
|
void contextMenuEvent(QContextMenuEvent * event); |
|
void enterEvent(QEvent* event); |
|
void leaveEvent(QEvent* event); |
|
|
|
|
|
signals: |
|
void groupWidgetClicked(GroupWidget* widget); |
|
void removeGroup(int groupId); |
|
|
|
public: |
|
int groupId; |
|
QLabel avatar, name, nusers, statusPic; |
|
QHBoxLayout layout; |
|
QVBoxLayout textLayout; |
|
void setAsInactiveChatroom(); |
|
void setAsActiveChatroom(); |
|
|
|
private: |
|
QColor lastColor; |
|
int isActiveWidget; |
|
}; |
|
|
|
#endif // GROUPWIDGET_H
|
|
|