1 Star 0 Fork 37

流年/SuperDT

forked from 我是唐/SuperDT 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.cpp 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
TANG-N 提交于 2022-05-08 01:02 . 支持字体设置
#include <QApplication>
#include "CMainWindow.h"
#include "CSettings.h"
#include <QFont>
#include "CConversion.h"
#include <QDebug>
#include "CUIHelper.h"
#include "CIconFont.h"
int main(int argc, char *argv[])
{
#if(QT_VERSION >= QT_VERSION_CHECK(5,6,0))
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
#endif
QApplication a(argc, argv);
//debug输出格式
qSetMessagePattern("%{if-debug}[DBUG%{endif}"
"%{if-info}\033[32m[INFO%{endif}"
"%{if-warning}\033[33m[WARN%{endif}"
"%{if-critical}\033[31m[ERRO%{endif}"
"%{if-fatal}\033[35m[FATL%{endif}] "
"%{time yyyyMMdd h:mm:ss.zzz} "
"%{function}:%{line} - %{message}\033[0m");
a.setApplicationVersion("1.3.3");
a.setProperty("UpdateDateTime","2022/05/08");
// QFont font;
// font.setFamily("等线,Arial");
// a.setFont(font);
CSettings::getInstance()->init();
CIconFont::getInstance()->init(":/Font/iconfont.ttf");
// CUIHelper::installQss(QString(PRO_DIR) + "/style.qss");
CMainWindow::getInstance()->resize(800,800);
CMainWindow::getInstance()->show();
return a.exec();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/silence_cat/SuperDT.git
[email protected]:silence_cat/SuperDT.git
silence_cat
SuperDT
SuperDT
main

搜索帮助