qt_demoe/nettool/main.cpp

29 lines
899 B
C++
Raw Normal View History

2019-09-29 05:13:01 +00:00
#include "frmmain.h"
#include "quiwidget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
a.setWindowIcon(QIcon(":/main.ico"));
2019-09-29 05:13:01 +00:00
//设置编码+字体+中文翻译文件
2019-09-29 05:13:01 +00:00
QUIHelper::setCode();
2021-01-22 09:20:01 +00:00
QUIHelper::setFont(":/DroidSansFallback.ttf");
2019-09-29 05:13:01 +00:00
QUIHelper::setTranslator(":/qt_zh_CN.qm");
QUIHelper::setTranslator(":/widgets.qm");
QUIHelper::initRand();
App::Intervals << "1" << "10" << "20" << "50" << "100" << "200" << "300" << "500" << "1000" << "1500" << "2000" << "3000" << "5000" << "10000";
App::ConfigFile = QString("%1/%2.ini").arg(QUIHelper::appPath()).arg(QUIHelper::appName());
App::readConfig();
App::readSendData();
App::readDeviceData();
frmMain w;
w.setWindowTitle("网络调试助手 V2021 (QQ: 517216493 WX: feiyangqingyun)");
QUIHelper::setFormInCenter(&w);
w.show();
2019-09-29 05:13:01 +00:00
return a.exec();
}