背景
上一篇新建了目录,这一篇读取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);
};
编译测试没问题先提交
