feat/vtk-3d-view #7

Merged
gaozheng merged 301 commits from feat/vtk-3d-view into main 2026-06-27 18:43:52 +08:00
2 changed files with 6 additions and 1 deletions
Showing only changes of commit 529ffc023c - Show all commits

View File

@ -65,6 +65,10 @@ QString svgPathFor(Glyph t)
"<path d='M7 10l5 5 5-5'/><path d='M12 15V3'/>");
case Glyph::Collapse:
return QStringLiteral("<path d='m17 11-5-5-5 5'/><path d='m17 18-5-5-5 5'/>");
case Glyph::Fullscreen:
return QStringLiteral(
"<path d='M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3"
"M21 16v3a2 2 0 0 1-2 2h-3M8 21H5a2 2 0 0 1-2-2v-3'/>");
case Glyph::Workspace:
return QStringLiteral(
"<rect width='7' height='7' x='3' y='3' rx='1'/>"

View File

@ -25,7 +25,8 @@ enum class Glyph {
Filter, // 筛选(漏斗)
Upload, // 上传
Download, // 导出/下载
Collapse, // 折叠(双箭头)
Collapse, // 折叠(双箭头)
Fullscreen, // 全屏 / 最大化
// 顶部应用栏图标
Workspace, // 工作空间2x2 宫格)
Folder, // 项目(文件夹)