DicomViewer (添加模型类)3

背景

上一篇新建了目录,这一篇读取dcm文件,先从模型开始。

.h 也加入到SRC

diff 复制代码
ubuntu@LAPTOP-IAHSQH9B:~/xcyxiner/DicomViewer$ git diff HEAD gen_src.py

diff --git a/gen_src.py b/gen_src.py
index 974a548..86dfdb5 100644
--- a/gen_src.py
+++ b/gen_src.py
@@ -3,7 +3,7 @@ import os
 src = []
 for root, _, files in os.walk("source"):
     for f in files:
-        if f.endswith(".cpp"):
+        if f.endswith((".cpp",".h")):
             src.append(os.path.join(root, f))

 with open("source_list.cmake", "w") as f:

新的生成工具

之前的生成的是基于QT对象的,现在需要纯c对象的。

新增new_c_class.py

ini 复制代码
#!/usr/bin/env python3
import sys
import pathlib

CLASS_NAME = sys.argv[1]

HEADER = f"""
#pragma once

class {CLASS_NAME}
{{
public:
    explicit {CLASS_NAME}();
    ~{CLASS_NAME}()=default;
}};
"""

CPP = f"""
#include "{CLASS_NAME}.h"

{CLASS_NAME}::{CLASS_NAME}()
{{
}}
"""

pathlib.Path(f"{CLASS_NAME}.h").write_text(HEADER)
pathlib.Path(f"{CLASS_NAME}.cpp").write_text(CPP)

print(f"✅ Generated {CLASS_NAME}.h / {CLASS_NAME}.cpp")

更新dcmtk的类库链接 以及包含头文件

makefile 复制代码
target_include_directories(DicomViewer_exe PRIVATE
/opt/dcmtk/include
)

  
DCMTK::ofstd
DCMTK::oflog
DCMTK::dcmdata
DCMTK::dcmimgle
DCMTK::dcmimage
DCMTK::dcmjpeg
DCMTK::dcmnet
DCMTK::dcmsr

更新.clangd

arduino 复制代码
- "-I/opt/dcmtk/include"

添加依赖的时候好找一点

新建文件

使用new_c_class.py创建模型和控制类 使用new_qt_object.py创建文件导入类

bash 复制代码
python ~/xcyxiner/DicomViewer/tools/new_c_class.py Patient
python ~/xcyxiner/DicomViewer/tools/new_c_class.py Study
python ~/xcyxiner/DicomViewer/tools/new_c_class.py Series
python ~/xcyxiner/DicomViewer/tools/new_c_class.py Image
python ~/xcyxiner/DicomViewer/tools/new_c_class.py DicomReader
python ~/xcyxiner/DicomViewer/tools/new_c_class.py CoreRepository
python ~/xcyxiner/DicomViewer/tools/new_c_class.py CoreController
python ~/xcyxiner/DicomViewer/tools/new_qt_object.py FilesImporter QThread
css 复制代码
.
├── core
│   ├── controller
│   │   ├── CoreController.cpp
│   │   └── CoreController.h
│   ├── lib
│   │   ├── DicomReader.cpp
│   │   └── DicomReader.h
│   └── model
│       ├── CoreRepository.cpp
│       ├── CoreRepository.h
│       ├── Image.cpp
│       ├── Image.h
│       ├── Patient.cpp
│       ├── Patient.h
│       ├── Series.cpp
│       ├── Series.h
│       ├── Study.cpp
│       └── Study.h
├── gui
│   ├── GUICenter.cpp
│   └── GUICenter.h
├── lib
│   ├── FilesImporter.cpp
│   └── FilesImporter.h
├── main.cpp
├── menu
│   ├── FileMenu.cpp
│   └── FileMenu.h
└── window
    ├── GUIWindow.cpp
    └── GUIWindow.h

9 directories, 23 files

QThread 不能使用QWidget,改为parent类型为QObject,需要修改.h和.cpp

arduino 复制代码
#include "FilesImporter.h"

#include "qglobal.h"
#include "qobject.h"

FilesImporter::FilesImporter(QObject* parent)
    : QThread(Q_NULLPTR)
{
}

#pragma once
#include <QThread>

#include "qobject.h"

class FilesImporter : public QThread
{
  Q_OBJECT
public:
  explicit FilesImporter(QObject* parent = nullptr);
};

编译测试没问题先提交

添加模型类以及控制器

未完待续

相关推荐
xcyxiner20 小时前
DicomViewer (目录调整) 2
qt
xcyxiner1 天前
dcmtk vtk vtk-dicom(gdcm) 编译(debug) v2
qt
桥田智能3 天前
桥田智能 QT-650S:面向白车身焊装的 800kg 重载快换解决方案
开发语言·qt·系统架构
森G3 天前
75、服务器源码解析---------云视频服务项目
linux·服务器·网络·c++·qt
森G3 天前
77、线程池原理和实现------服务器源码解析----云视频服务项目
服务器·c++·qt
森G3 天前
71、打包发布---------打包发布
c++·qt
初圣魔门首席弟子3 天前
Node.js 详细介绍(知识库版)
windows·qt·node.js·知识库
C++ 老炮儿的技术栈3 天前
Qt工控实战:自研机器人TCP长连接客户端(粘包处理+心跳保活+自动重连完整源码解析)
qt·tcp/ip·机器人
郝学胜-神的一滴3 天前
CMake 019:程序生成与清理全解析
开发语言·c++·qt·程序人生·软件构建·cmake