改进代码

master
feiyangqingyun 2021-03-20 13:54:55 +08:00
parent dd4f979511
commit f7845e1515
7 changed files with 6 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 638 KiB

After

Width:  |  Height:  |  Size: 581 KiB

View File

@ -21,6 +21,7 @@ int main(int argc, char *argv[])
frmMain w;
w.setWindowTitle("网络调试助手 V2021 (QQ: 517216493 WX: feiyangqingyun)");
w.resize(950, 700);
QUIHelper::setFormInCenter(&w);
w.show();

View File

@ -11,7 +11,7 @@
6可对单个在线连接发送数据也可勾选全部进行发送。
7支持多个客户端连接并发。
8采用单线程。
9种模式tcp客户端、tcp服务器、udp客户端、udp服务器。
9种模式tcp客户端、tcp服务器、udp客户端、udp服务器、websocket客户端、websocket服务器。
编译后请将源码下的file目录中的所有文件复制到可执行文件同一目录。
如果有更好的建议或者意见请Q我(517216493),谢谢!

View File

@ -24,5 +24,5 @@ void frmNtpClient::on_btnGetTime_clicked()
void frmNtpClient::receiveTime(const QDateTime &dateTime)
{
ui->txtTime->setText(dateTime.toString("yyyy-MM-dd HH:mm:ss"));
ui->txtTime->setText(dateTime.toString("yyyy-MM-dd HH:mm:ss zzz"));
}

View File

@ -1,6 +1,7 @@
#include "ntpclient.h"
#include "qmutex.h"
#include "qudpsocket.h"
#include "qdebug.h"
QScopedPointer<NtpClient> NtpClient::self;
NtpClient *NtpClient::Instance()

View File

@ -66,7 +66,7 @@ void VideoPanel::initForm()
//设置样式表
QStringList qss;
qss.append("QFrame{border:2px solid #000000;}");
qss.append("QLabel{font:75 25px;color:#F0F0F0;border:2px solid #AAAAAA;background:#000000;}");
qss.append("QLabel{font:75 25px;color:#F0F0F0;border:2px solid #AAAAAA;background:#303030;}");
qss.append("QLabel:focus{border:2px solid #00BB9E;background:#555555;}");
this->setStyleSheet(qss.join(""));

View File

@ -39,6 +39,7 @@ VideoWidget::VideoWidget(QWidget *parent) : QWidget(parent)
borderWidth = 5;
borderColor = "#000000";
focusColor = "#22A3A9";
bgColor = Qt::transparent;
bgText = "实时视频";
bgImage = QImage();