
(Chat)
局域网聊天软件, 就像局域网中的微信。(我英语不好,难免有错误之处,请多多包涵) LAN chat software, LAN's wechat. (my English is poor, hard to avoid any mistake, please forgive me) 特性: Feature: 1、支持文本、图像、文件、语音通信。 1、Support text、image、file、voice communication。 2、支持气泡模式,头像选择。 2、Support Bubble model,choose head portrait. 3、语音消息播放标记(红色圆点), 伴有播放动画。 3、The voice message play tag(red point), with the animation. 4、支持语音识别,转中文、英文。 4、Support Speech recognition, to Chinese or English. 5、支持聊天记录保存和加载。 5、Support chat records save and load. 测试说明: test instructions: 解压 headImg.rar 到程序目录,里面是头像。 在一台电脑上测试, 拷贝一份文件,在一个里面新建文本文件,改名为1;另一个里面新建,改名为2,即可测试。 在不同电脑上测试,则不需要做任何操作。 decompression file [headImg.rar] to program path, images of head portrait. Test in one computer, copy one file, in one program path new file rename to 1; and another new file rename to 2。 Test in Different computers, Don't do anything. 因为如下初始化发送、接收端口。 Because of the following initialization sending and receiving port. // init send and receive port if (QFile::exists("1")) { m_recvPort = 18888; m_sendPort = 19999; } else if (QFile::exists("2")) { m_recvPort = 19999; m_sendPort = 18888; } else { m_recvPort = 18888; m_sendPort = 18888; }
[read more]