上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 128 下一页
摘要: 1、打开ps,新建文件 背景内容这里可以直接的设置相关的颜色 2、设置配置文件 点击编辑->指定配置文件 这一步是为了在使用这个背景图的时候报警告(Qt): libpng warning: iCCP: known incorrect sRGB profile 3、存储 点击文件->存储为,选择PNG 阅读全文
posted @ 2020-11-12 10:12 朱小勇 阅读(1615) 评论(0) 推荐(0) 编辑
摘要: struct TParameter { int byteLen; int dataType; QString name; QString value; TParameter& operator = (const TParameter& destTParameter){ byteLen = destT 阅读全文
posted @ 2020-11-11 16:57 朱小勇 阅读(564) 评论(0) 推荐(0) 编辑
摘要: 1、下载Fiddler5 2、运行 3、在输入框里输入并回车 urlreplace download.qt.io mirrors.tuna.tsinghua.edu.cn/qt 4、打开Qt在线安装工具,即可下载 ps: 有时候下载可能会停掉,多执行几次3步; 遇到了Fiddler5蹦掉的情况,就是 阅读全文
posted @ 2020-11-09 15:32 朱小勇 阅读(1460) 评论(2) 推荐(0) 编辑
摘要: 1、接收广播 //方式1 udp->bind(QHostAddress(ip),port); //方式2 udp->bind(QHostAddress::AnyIPv4,port); 方式1是绑定指定的ip和端口,在windows上是能正常接收到,但是在linux【中标麒麟】下接收不到,只有换成方式 阅读全文
posted @ 2020-11-07 14:15 朱小勇 阅读(479) 评论(0) 推荐(0) 编辑
摘要: 1、直接放 std::set<NetworkInfo> networks; 其中NetworkInfo是一个自定义结构体 //网络信息配置结构体 struct NetworkInfo { bool isRuning; //是否正在运行 Protocol netWorkProtocol; //协议 Q 阅读全文
posted @ 2020-11-01 16:06 朱小勇 阅读(821) 评论(0) 推荐(0) 编辑
摘要: 1、类私有函数命名:下划线+函数名 void _init(); 2、类私有成员名称:"m_"+驼峰变量名 int m_value; 3、基本的容器类型全部使用C++stl中的,string用Qt的QString 顺序容器: vector string (它不是类模板) list forward_li 阅读全文
posted @ 2020-10-30 15:58 朱小勇 阅读(669) 评论(0) 推荐(0) 编辑
摘要: 待更新 阅读全文
posted @ 2020-10-30 15:55 朱小勇 阅读(855) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-10-30 10:33 朱小勇 阅读(557) 评论(0) 推荐(0) 编辑
摘要: 对于QVector: QVector<TSendProt> sendData; 想要清空: 1、clear只删除元素,但是占用空间不变,即capacity不变 sendData.clear(); 2、swap删除元素,空间也释放 QVector<TSendProt>().swap(sendData) 阅读全文
posted @ 2020-10-22 09:45 朱小勇 阅读(4175) 评论(0) 推荐(0) 编辑
摘要: enum MatchFlag { MatchExactly = 0, MatchContains = 1, MatchStartsWith = 2, MatchEndsWith = 3, MatchRegExp = 4, MatchWildcard = 5, MatchFixedString = 8 阅读全文
posted @ 2020-10-14 16:03 朱小勇 阅读(187) 评论(0) 推荐(0) 编辑
上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 128 下一页