1 Star 0 Fork 2

spyhooky/ 毕设大作业基于qt5开发的局域网聊天软件

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
contactlist.h 741 Bytes
一键复制 编辑 原始数据 按行查看 历史
UNSTOPPABLE 提交于 2022-08-19 16:11 . 首次提交
#ifndef CONTACTLIST_H
#define CONTACTLIST_H
#include "contactinfo.h"
#include <QListWidget>
#include <QMenu>
#include <QMouseEvent>
#include <QLineEdit>
#include <QHostAddress>
class ContactList : public QListWidget
{
Q_OBJECT
public:
explicit ContactList(QListWidget *parent = 0);
QMenu *blankMenu;
QMenu *personMenu;
void mousePressEvent(QMouseEvent *event);
void contextMenuEvent(QContextMenuEvent*);
void initMenu();
QListWidgetItem *currentItem=nullptr;
signals:
void contactItemClick(ContactInfo *contactInfo);
public slots:
void slotAddContact(ContactInfo *contactInfo,bool isMe);
void slotDelContact();
int slotIsIncludeList(ContactInfo *contactInfo);
};
#endif // CONTACTLIST_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/spyhooky/lan-chat-software-based-on-qt5.git
[email protected]:spyhooky/lan-chat-software-based-on-qt5.git
spyhooky
lan-chat-software-based-on-qt5
毕设大作业基于qt5开发的局域网聊天软件
master

搜索帮助