geopro/src/app/SlicePropertiesDialog.hpp

21 lines
741 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include <QDialog>
#include <QString>
#include "repo/I3dSceneRepository.hpp" // I3dSceneRepository::SliceSpec
namespace geopro::app {
// 切片属性对话框(收尾项 #6三维分析栏右键「数据详情」弹出只读展示切片的
// 位姿/参数(所属三维体/轴向/平面三点/色阶)。
// 不含采样分辨率/值域等统计:切面网格来自渲染时计算、仓储层不持久化(守 YAGNI
class SlicePropertiesDialog : public QDialog {
Q_OBJECT
public:
SlicePropertiesDialog(const QString& name,
const geopro::data::I3dSceneRepository::SliceSpec& spec,
QWidget* parent = nullptr);
};
} // namespace geopro::app