文章分类 -  Qt

摘要:https://www.kancloud.cn/wizardforcel/wudi-qt4 阅读全文
posted @ 2024-08-27 11:21 微笑的''80 阅读(37) 评论(0) 推荐(0)
摘要:QxOrm https://github.com/QxOrm/QxOrm 介绍一个C++的ORM工具ODB https://blog.csdn.net/adrian169/article/details/9017045 Caption 名称 开源 License 需要特定的框架支持 支持Qt 支持B 阅读全文
posted @ 2024-07-24 09:19 微笑的''80 阅读(27) 评论(0) 推荐(0)
摘要:BasedOnStyle: Microsoft # 临时设置set CLANG_FORMAT_STYLE=LLVM # 永久设置(系统属性 → 环境变量)# 添加用户变量:# 名称: CLANG_FORMAT_STYLE# 值: LLVM 阅读全文
posted @ 2024-07-15 16:12 微笑的''80 阅读(9) 评论(0) 推荐(0)
摘要:http://c.biancheng.net/view/vip_3233.html 阅读全文
posted @ 2022-12-05 21:56 微笑的''80 阅读(24) 评论(0) 推荐(0)
摘要:msg.h #pragma once #include <QObject> //#include "data_define.h" using namespace std; class Msg : public QObject { Q_OBJECT public: static Msg &Inst() 阅读全文
posted @ 2022-12-01 22:54 微笑的''80 阅读(28) 评论(0) 推荐(0)
摘要:BasedOnStyle: Google Standard: Cpp11 TabWidth: 4 IndentWidth: 4 AccessModifierOffset: -4 ColumnLimit: 160 SortIncludes: false 阅读全文
posted @ 2022-11-30 14:21 微笑的''80 阅读(20) 评论(0) 推荐(0)
摘要:mainwindow.h: 1 class MainWindow : public QMainWindow 2 { 3 Q_OBJECT 4 5 public: 6 MainWindow(QWidget *parent = 0); 7 ~MainWindow(); 8 9 QStandardItem 阅读全文
posted @ 2022-11-30 11:04 微笑的''80 阅读(120) 评论(0) 推荐(0)
摘要:通过配置项目文件控制编译器分类生成中间文件,中间文件较多时作用较大。 DESTDIR 设置执行文件的输出目录,如(.exe文件)。 OBJECTS_DIR 设置编译时生成的中间代码文件路径。 MOC_DIR 设置编译时生成moc文件的路径。 注:所有QObject派生的类都会生成moc。 RCC_D 阅读全文
posted @ 2022-11-05 14:19 微笑的''80 阅读(138) 评论(0) 推荐(0)