改进代码
parent
dd4f979511
commit
f7845e1515
Binary file not shown.
Before Width: | Height: | Size: 638 KiB After Width: | Height: | Size: 581 KiB |
|
@ -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();
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
6:可对单个在线连接发送数据,也可勾选全部进行发送。
|
||||
7:支持多个客户端连接并发。
|
||||
8:采用单线程。
|
||||
9:四种模式,tcp客户端、tcp服务器、udp客户端、udp服务器。
|
||||
9:多种模式,tcp客户端、tcp服务器、udp客户端、udp服务器、websocket客户端、websocket服务器。
|
||||
|
||||
编译后请将源码下的file目录中的所有文件复制到可执行文件同一目录。
|
||||
如果有更好的建议或者意见,请Q我(517216493),谢谢!
|
|
@ -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"));
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#include "ntpclient.h"
|
||||
#include "qmutex.h"
|
||||
#include "qudpsocket.h"
|
||||
#include "qdebug.h"
|
||||
|
||||
QScopedPointer<NtpClient> NtpClient::self;
|
||||
NtpClient *NtpClient::Instance()
|
||||
|
|
|
@ -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(""));
|
||||
|
||||
|
|
|
@ -39,6 +39,7 @@ VideoWidget::VideoWidget(QWidget *parent) : QWidget(parent)
|
|||
borderWidth = 5;
|
||||
borderColor = "#000000";
|
||||
focusColor = "#22A3A9";
|
||||
bgColor = Qt::transparent;
|
||||
bgText = "实时视频";
|
||||
bgImage = QImage();
|
||||
|
||||
|
|
Loading…
Reference in New Issue