1 Star 0 Fork 16

再生的雄鹰/qipmsg

forked from caowai/qipmsg 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ipmsguser.cpp 990 Bytes
一键复制 编辑 原始数据 按行查看 历史
caowai 提交于 2019-01-10 21:56 . Update ui desgin.
#include "ipmsguser.h"
IpMsgUser::IpMsgUser(QObject *parent) : QObject(parent)
{
userVer.clear();
userId.clear();
userIcon.clear();
userEmail.clear();
userHostAddr.clear();
userHostName.clear();
userNickName.clear();
userGroupName.clear();
userPktSeq = 0;
userCfmSeq = 0;
chatForm = new FormChat();
}
IpMsgUser::~IpMsgUser()
{
qDebug()<<"Do nothing for"<<this->userId;
}
void IpMsgUser::dumpUserInfo()
{
qDebug()<<"IpAddr:"<<userHostAddr.toString();
qDebug()<<"Version:"<<userVer;
qDebug()<<"UserId:"<<userId;
qDebug()<<"NickName:"<<userNickName;
qDebug()<<"Group:"<<userGroupName;
qDebug()<<"Hostname:"<<userHostName;
qDebug()<<"PacketSeq:"<<userPktSeq;
return;
}
void IpMsgUser::appendChatHistory(QString data)
{
chatHistory.append(data);
return;
}
void IpMsgUser::updateChatFormHistory()
{
if(chatForm != nullptr)
{
chatForm->updateChatHistory(chatHistory.toUtf8());
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/chinauos/qipmsg.git
[email protected]:chinauos/qipmsg.git
chinauos
qipmsg
qipmsg
master

搜索帮助