treeviewmanager.cpp 60 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672
  1. #include "treeviewmanager.h"
  2. #include "OriginalWnd.h" // 包含 OriginalWnd 的定义
  3. // 构造函数
  4. TreeViewManager::TreeViewManager(OriginalWnd* originalWnd, QWidget *widget2, QWidget *parent)
  5. : QWidget(parent),
  6. m_originalWnd(originalWnd),
  7. widget2(widget2),
  8. treeViewDown(new QTreeView(widget2)),
  9. navigationWidget(nullptr),
  10. buttonOpenFile(nullptr),
  11. buttonUp(nullptr),
  12. buttonDown(nullptr),
  13. buttonLeft(nullptr),
  14. buttonRight(nullptr),
  15. restoring(false)
  16. {
  17. if (!widget2) {
  18. qWarning() << "TreeViewManager: widget2 未初始化";
  19. return;
  20. }
  21. // 初始化目录树模型
  22. downModel = new QStandardItemModel(this);
  23. treeViewDown->setModel(downModel);
  24. // 给 viewport() 安装事件过滤器,以便拦截其 Paint 事件
  25. treeViewDown->viewport()->installEventFilter(this);
  26. // 应用样式表
  27. applyCustomStyles();
  28. treeViewDown->setHeaderHidden(true); // 显示头部
  29. treeViewDown->setGeometry(16, 106, widget2->width()-16, widget2->height() - 106);
  30. treeViewDown->setEditTriggers(QAbstractItemView::NoEditTriggers);
  31. treeViewDown->show();
  32. //分割线
  33. QFrame *lineFrame = new QFrame(widget2);
  34. lineFrame->setGeometry(16, 89, 428, 2); // 高度设 2 像素
  35. lineFrame->setFrameShape(QFrame::HLine);
  36. lineFrame->setFrameShadow(QFrame::Plain);
  37. lineFrame->setLineWidth(2);
  38. lineFrame->setStyleSheet("color: #C7CAEB;");
  39. lineFrame->show();
  40. qDebug() << "widget2 geometry:" << widget2->geometry();
  41. qDebug() << "treeViewDown geometry:" << treeViewDown->geometry();
  42. // 加载 JSON 数据
  43. loadJsonFromFile(":/config/menu_config.json");
  44. // 创建按钮并设置布局
  45. setupButton();
  46. // 创建导航栏
  47. navigationWidget = new QWidget(widget2);
  48. navigationWidget->setGeometry(15, 15, 300, 74);
  49. navigationLayout = new QVBoxLayout(navigationWidget);
  50. navigationLayout->setContentsMargins(0, 0, 0, 0);
  51. navigationLayout->setSpacing(0);
  52. navigationWidget->show();
  53. // 更新导航栏位置
  54. updateNavigationWidgetGeometry();
  55. connect(treeViewDown, &QTreeView::clicked, this, [=](const QModelIndex &index) {
  56. QStandardItem *item = downModel->itemFromIndex(index);
  57. if (!item) return;
  58. QVariant data = item->data(Qt::UserRole);
  59. if (data.canConvert<QJsonObject>()) {
  60. QJsonObject fields = data.toJsonObject();
  61. displayThirdLevelFields(fields); // 显示三级目录字段
  62. }
  63. });
  64. // 连接点击信号
  65. connect(treeViewDown, &QTreeView::clicked, this, [=](const QModelIndex &index) {
  66. QStandardItem *item = downModel->itemFromIndex(index);
  67. if (!item) return;
  68. // 仅在非恢复状态下记录选中路径
  69. if (!restoring) {
  70. QStringList path = buildItemPath(item);
  71. addVisitedPath(path);
  72. }
  73. QVariant data = item->data(Qt::UserRole);
  74. if (data.canConvert<QJsonObject>()) {
  75. QJsonObject fields = data.toJsonObject();
  76. if (fields.contains("isThirdLevel") && fields["isThirdLevel"].toBool()) {
  77. qDebug() << "加载三级目录字段内容:" << fields;
  78. // 更新导航栏
  79. updateNavigationBar(index);
  80. // 显示三级目录字段内容
  81. displayThirdLevelFields(fields);
  82. treeViewDown->hide(); // 隐藏 treeViewDown
  83. return;
  84. }
  85. }
  86. // 即使是非三级目录,也更新导航栏
  87. updateNavigationBar(index);
  88. qDebug() << "更新导航栏,目录项:" << item->text();
  89. });
  90. // 连接 expanded 和 collapsed 信号
  91. connect(treeViewDown, &QTreeView::expanded, this, [=](const QModelIndex &index) {
  92. QStandardItem *item = downModel->itemFromIndex(index);
  93. if (!item) return;
  94. QStringList path = buildItemPath(item);
  95. addExpandedPath(path);
  96. });
  97. connect(treeViewDown, &QTreeView::collapsed, this, [=](const QModelIndex &index) {
  98. QStandardItem *item = downModel->itemFromIndex(index);
  99. if (!item) return;
  100. QStringList path = buildItemPath(item);
  101. removeExpandedPath(path);
  102. });
  103. // 加载并展开上次访问过的路径
  104. loadVisitedPaths();
  105. // 启动时加载第一个三级目录的按钮
  106. // 假设第一个三级目录是第一个子项的第一个子项的第一个子项
  107. QStandardItem *rootItem = downModel->invisibleRootItem();
  108. if (rootItem->rowCount() > 0) {
  109. QStandardItem *firstFirstLevel = rootItem->child(0);
  110. if (firstFirstLevel && firstFirstLevel->rowCount() > 0) {
  111. QStandardItem *firstSecondLevel = firstFirstLevel->child(0);
  112. if (firstSecondLevel && firstSecondLevel->rowCount() > 0) {
  113. QStandardItem *firstThirdLevel = firstSecondLevel->child(0);
  114. QVariant data = firstThirdLevel->data(Qt::UserRole);
  115. if (data.canConvert<QJsonObject>()) {
  116. QJsonObject thirdLevelObj = data.toJsonObject();
  117. if (thirdLevelObj.contains("isThirdLevel") && thirdLevelObj["isThirdLevel"].toBool()) {
  118. loadButtonConfigForThirdLevel(thirdLevelObj);
  119. }
  120. }
  121. }
  122. }
  123. }
  124. connect(buttonOpenFile, &QPushButton::clicked, this, &TreeViewManager::onButtonOpenFileClicked);
  125. connect(buttonUp, &QPushButton::clicked, this, &TreeViewManager::onButtonUpClicked);
  126. connect(buttonDown, &QPushButton::clicked, this, &TreeViewManager::onButtonDownClicked);
  127. connect(buttonLeft, &QPushButton::clicked, this, &TreeViewManager::onButtonLeftClicked);
  128. connect(buttonRight, &QPushButton::clicked, this, &TreeViewManager::onButtonRightClicked);
  129. }
  130. TreeViewManager::~TreeViewManager()
  131. {
  132. // 在析构时,保存当前状态(展开/选中)
  133. saveVisitedPaths();
  134. }
  135. /**
  136. * @brief 保存当前选中路径和展开路径到 QSettings
  137. */
  138. void TreeViewManager::saveVisitedPaths()
  139. {
  140. QSettings settings("RunCloudTech", "David");
  141. settings.beginGroup("TreeViewState");
  142. QStringList visitedList(visitedPaths.begin(), visitedPaths.end());
  143. QStringList expandedList(expandedPaths.begin(), expandedPaths.end());
  144. // 显式构造 QVariant
  145. QVariant visitedVar(visitedList);
  146. QVariant expandedVar(expandedList);
  147. // 保存到 QSettings
  148. settings.setValue("visitedPaths", visitedVar);
  149. settings.setValue("expandedPaths", expandedVar);
  150. settings.endGroup();
  151. qDebug() << "保存选中路径:" << visitedList;
  152. qDebug() << "保存展开路径:" << expandedList;
  153. }
  154. /**
  155. * @brief 从 QSettings 恢复选中路径和展开路径
  156. */
  157. void TreeViewManager::loadVisitedPaths()
  158. {
  159. QSettings settings("RunCloudTech", "David");
  160. settings.beginGroup("TreeViewState");
  161. // 读取保存的数据
  162. QStringList loadedVisited = settings.value("visitedPaths").toStringList();
  163. QStringList loadedExpanded = settings.value("expandedPaths").toStringList();
  164. settings.endGroup();
  165. qDebug() << "加载选中路径:" << loadedVisited;
  166. qDebug() << "加载展开路径:" << loadedExpanded;
  167. restoring = true; // 进入恢复模式
  168. // 恢复展开路径
  169. for (const QString &p : loadedExpanded) {
  170. QStringList path = p.split("/");
  171. QModelIndex idx = findItemByPath(path);
  172. if (idx.isValid()) {
  173. treeViewDown->expand(idx);
  174. expandedPaths.insert(p); // 重新插入
  175. }
  176. }
  177. // 恢复选中路径(选中最后一个路径)
  178. if (!loadedVisited.isEmpty()) {
  179. QString lastPathStr = loadedVisited.last();
  180. QStringList lastPath = lastPathStr.split("/");
  181. QModelIndex lastIdx = findItemByPath(lastPath);
  182. if (lastIdx.isValid()) {
  183. treeViewDown->setCurrentIndex(lastIdx);
  184. visitedPaths.insert(lastPathStr);
  185. }
  186. }
  187. restoring = false; // 退出恢复模式
  188. // ===== 在此处调用导航栏恢复 =====
  189. updateNavigationBar(QModelIndex()); // 让它自动从 QSettings 里读 navPath
  190. }
  191. /**
  192. * @brief 记录选中的路径
  193. * @param path 节点路径列表
  194. */
  195. void TreeViewManager::addVisitedPath(const QStringList &path)
  196. {
  197. QString joined = path.join("/");
  198. if (!visitedPaths.contains(joined)) {
  199. visitedPaths.insert(joined);
  200. qDebug() << "记录[选中]路径:" << joined;
  201. }
  202. }
  203. /**
  204. * @brief 记录展开的路径
  205. * @param path 节点路径列表
  206. */
  207. void TreeViewManager::addExpandedPath(const QStringList &path)
  208. {
  209. QString joined = path.join("/");
  210. if (!expandedPaths.contains(joined)) {
  211. expandedPaths.insert(joined);
  212. qDebug() << "记录[展开]路径:" << joined;
  213. }
  214. }
  215. /**
  216. * @brief 移除展开的路径
  217. * @param path 节点路径列表
  218. */
  219. void TreeViewManager::removeExpandedPath(const QStringList &path)
  220. {
  221. QString joinedPath = path.join("/");
  222. if (expandedPaths.contains(joinedPath)) {
  223. expandedPaths.remove(joinedPath);
  224. qDebug() << "移除展开路径:" << joinedPath;
  225. }
  226. }
  227. /**
  228. * @brief 构建节点的完整路径
  229. * @param item 当前节点
  230. * @return 节点路径列表
  231. */
  232. QStringList TreeViewManager::buildItemPath(QStandardItem *item)
  233. {
  234. QStringList path;
  235. QStandardItem *currentItem = item;
  236. while (currentItem) {
  237. path.prepend(currentItem->text());
  238. currentItem = currentItem->parent();
  239. }
  240. return path;
  241. }
  242. /**
  243. * @brief 根据路径查找对应的节点
  244. * @param path 节点路径列表
  245. * @return 节点的 QModelIndex
  246. */
  247. QModelIndex TreeViewManager::findItemByPath(const QStringList &path)
  248. {
  249. if (path.isEmpty()) return QModelIndex();
  250. QStandardItem *currentItem = downModel->invisibleRootItem();
  251. QModelIndex currentIndex;
  252. for (const QString &part : path) {
  253. bool found = false;
  254. for (int i = 0; i < currentItem->rowCount(); ++i) {
  255. QStandardItem *child = currentItem->child(i);
  256. if (child->text() == part) {
  257. currentIndex = downModel->indexFromItem(child);
  258. currentItem = child;
  259. found = true;
  260. break;
  261. }
  262. }
  263. if (!found) {
  264. qWarning() << "未找到路径部分:" << part;
  265. return QModelIndex();
  266. }
  267. }
  268. return currentIndex;
  269. }
  270. bool TreeViewManager::eventFilter(QObject *watched, QEvent *event)
  271. {
  272. // 只拦截 treeViewDown->viewport() 的 Paint 事件
  273. if (watched == treeViewDown->viewport() && event->type() == QEvent::Paint)
  274. {
  275. // 第1步:让 QTreeView 先进行默认绘制 (文字、图标等)
  276. // 这样可以把“树节点”都画出来
  277. bool handled = QWidget::eventFilter(watched, event);
  278. // 第2步:在同一个绘制周期里,使用 QPainter 叠加画“拐角线”
  279. QPainter painter(treeViewDown->viewport());
  280. if (!painter.isActive()) {
  281. qWarning() << "Painter not active";
  282. return handled;
  283. }
  284. painter.save();
  285. painter.setPen(QPen(Qt::gray, 1, Qt::DashLine)); // 灰色、1px 宽、虚线
  286. // 调用一个递归或遍历函数,把所有节点的父->子线、兄弟延续竖线都画上
  287. paintAllBranches(QModelIndex(), painter);
  288. painter.restore();
  289. // 返回 handled 或 true 均可,通常返回 handled 即可
  290. return handled;
  291. }
  292. // 其余事件交给父类默认处理
  293. return QWidget::eventFilter(watched, event);
  294. }
  295. void TreeViewManager::paintAllBranches(const QModelIndex &parentIndex, QPainter &painter)
  296. {
  297. int rowCount = downModel->rowCount(parentIndex);
  298. for(int i = 0; i < rowCount; ++i)
  299. {
  300. // 当前子节点
  301. QModelIndex childIndex = downModel->index(i, 0, parentIndex);
  302. if (!childIndex.isValid()) continue;
  303. // 1) 父->子拐角线
  304. drawParentChildLine(childIndex, painter);
  305. // 2) 兄弟延续竖线(如果本节点不是最后一个兄弟,就在拐点列画条向下的线)
  306. if (i < rowCount - 1) {
  307. drawSiblingLine(childIndex, painter);
  308. }
  309. // 3) 递归处理子节点
  310. paintAllBranches(childIndex, painter);
  311. }
  312. }
  313. /**
  314. * @brief 在“父节点 -> 子节点”间画一条“L”型拐角线,仅调整横向线段的长度
  315. */
  316. void TreeViewManager::drawParentChildLine(const QModelIndex &childIndex, QPainter &painter)
  317. {
  318. QModelIndex parentIndex = childIndex.parent();
  319. if (!parentIndex.isValid()) {
  320. // 说明是“顶层节点”
  321. // 定义一个固定的起点 (rootX, rootY)
  322. int indent = treeViewDown->indentation();
  323. int depth = 0; // 顶层节点深度为0
  324. int branchX = (depth + 1) * indent - indent / 2; // 计算 branchX 基于缩进和深度
  325. // 定义 rootY 为节点中心 Y
  326. QRect childRect = treeViewDown->visualRect(childIndex);
  327. if (!childRect.isValid())
  328. return;
  329. int rootY = childRect.center().y();
  330. // 定义横向偏移量
  331. const int hOffset = -20; // 根据需求调整
  332. // 绘制竖线: 从 (branchX, rootY) 到 (branchX, childRect.center().y())
  333. painter.drawLine(QPoint(branchX, rootY),
  334. QPoint(branchX, childRect.center().y()));
  335. // 计算新的横线终点
  336. int newX = childRect.left() + hOffset;
  337. // 绘制横线: 从 (branchX, childRect.center().y()) 到 (newX, childRect.center().y())
  338. painter.drawLine(QPoint(branchX, childRect.center().y()),
  339. QPoint(newX, childRect.center().y()));
  340. return;
  341. }
  342. QRect parentRect = treeViewDown->visualRect(parentIndex);
  343. QRect childRect = treeViewDown->visualRect(childIndex);
  344. if (!parentRect.isValid() || !childRect.isValid()) {
  345. // 父或子可能超出可视区域
  346. return;
  347. }
  348. int pMidY = parentRect.center().y();
  349. int cMidY = childRect.center().y();
  350. // 计算节点深度
  351. int depth = 0;
  352. QModelIndex p = parentIndex;
  353. while (p.isValid()) {
  354. depth++;
  355. p = p.parent();
  356. }
  357. int indent = treeViewDown->indentation();
  358. int branchX = depth * indent - indent / 2;
  359. // 确保 branchX 不超出视图范围
  360. branchX = std::max(branchX, 0);
  361. // 定义横向偏移量
  362. const int hOffset = -15; // 根据需求调整
  363. // 绘制竖线: 从 (branchX, pMidY) 到 (branchX, cMidY)
  364. painter.drawLine(QPoint(branchX, pMidY), QPoint(branchX, cMidY));
  365. // 计算新的横线终点
  366. int newX = childRect.left() + hOffset;
  367. // 绘制横线: 从 (branchX, cMidY) 到 (newX, cMidY)
  368. painter.drawLine(QPoint(branchX, cMidY), QPoint(newX, cMidY));
  369. }
  370. /**
  371. * @brief 若本节点下面还有兄弟,则在拐点列那里继续往下画竖线
  372. */
  373. void TreeViewManager::drawSiblingLine(const QModelIndex &childIndex, QPainter &painter)
  374. {
  375. QModelIndex parentIndex = childIndex.parent();
  376. if (!parentIndex.isValid()) {
  377. return; // 没有父节点
  378. }
  379. // 下一个兄弟
  380. int row = childIndex.row();
  381. int lastRow = downModel->rowCount(parentIndex) - 1;
  382. if (row >= lastRow) {
  383. return; // 说明是最后一个兄弟,不用画延伸线
  384. }
  385. QModelIndex nextSibling = downModel->index(row + 1, 0, parentIndex);
  386. QRect currRect = treeViewDown->visualRect(childIndex);
  387. QRect nextRect = treeViewDown->visualRect(nextSibling);
  388. if (!currRect.isValid() || !nextRect.isValid()) {
  389. return;
  390. }
  391. // 计算节点深度
  392. int depth = 0;
  393. QModelIndex p = parentIndex;
  394. while (p.isValid()) {
  395. depth++;
  396. p = p.parent();
  397. }
  398. int indent = treeViewDown->indentation();
  399. int branchX = depth * indent - indent / 2;
  400. // 确保 branchX 不超出视图范围
  401. branchX = std::max(branchX, 0);
  402. // 从当前节点底部向下延伸到下一个兄弟节点顶部
  403. int startY = currRect.bottom();
  404. int endY = nextRect.top();
  405. painter.drawLine(QPoint(branchX, startY), QPoint(branchX, endY));
  406. }
  407. void TreeViewManager::loadJsonFromFile(const QString &filePath)
  408. {
  409. QFile jsonFile(filePath);
  410. if (!jsonFile.exists()) {
  411. qWarning() << "JSON 文件不存在:" << filePath;
  412. return;
  413. }
  414. if (!jsonFile.open(QIODevice::ReadOnly)) {
  415. qWarning() << "无法打开 JSON 文件:" << filePath;
  416. return;
  417. }
  418. QByteArray fileData = jsonFile.readAll();
  419. jsonFile.close();
  420. QJsonDocument jsonDoc = QJsonDocument::fromJson(fileData);
  421. if (jsonDoc.isNull() || !jsonDoc.isObject()) {
  422. qWarning() << "JSON 文件格式错误:" << filePath;
  423. return;
  424. }
  425. // 存储加载的 JSON 文档
  426. m_jsonDoc = jsonDoc;
  427. // 直接传递解析好的 JSON 文档
  428. loadTreeData(jsonDoc);
  429. qDebug() << "JSON 数据加载完成";
  430. }
  431. void TreeViewManager::applyCustomStyles() {
  432. treeViewDown->setStyleSheet(R"(
  433. /* 设置分支图标 */
  434. QTreeView::branch:closed:has-children {
  435. border-image: none;
  436. image: url(:/images/home_add.png);
  437. }
  438. QTreeView::branch:open:has-children {
  439. border-image: none;
  440. image: url(:/images/home_minus.png);
  441. }
  442. /* 设置多选框 */
  443. QTreeView::indicator:unchecked {
  444. image: url(:/images/home_NotSelecte.png);
  445. }
  446. QTreeView::indicator:checked {
  447. image: url(:/images/home_selected.png);
  448. }
  449. /* 背景透明 */
  450. QTreeView {
  451. background: transparent;
  452. border: none;
  453. }
  454. )");
  455. }
  456. void TreeViewManager::loadTreeData(const QJsonDocument &doc)
  457. {
  458. if (!doc.isObject()) {
  459. qWarning() << "无效的 JSON 结构";
  460. return;
  461. }
  462. qDebug() << "加载的 JSON 数据:" << doc.toJson();
  463. buildTree(doc.object(), downModel->invisibleRootItem());
  464. }
  465. void TreeViewManager::buildTree(const QJsonObject &jsonObj, QStandardItem *parent)
  466. {
  467. for (auto it = jsonObj.begin(); it != jsonObj.end(); ++it) {
  468. if (it.key() == "isThirdLevel") {
  469. qDebug() << "跳过 'isThirdLevel' 字段:" << it.key();
  470. continue; // 跳过 "isThirdLevel" 字段
  471. }
  472. QStandardItem *item = new QStandardItem(it.key());
  473. item->setCheckable(true); // 添加多选框
  474. parent->appendRow(item);
  475. if (it.value().isObject()) {
  476. QJsonObject childObj = it.value().toObject();
  477. if (childObj.contains("isThirdLevel") && childObj["isThirdLevel"].toBool()) {
  478. // 是三级目录,存储整个对象到 UserRole
  479. item->setData(childObj, Qt::UserRole);
  480. qDebug() << "识别为三级目录:" << it.key();
  481. } else {
  482. // 递归处理子目录
  483. buildTree(childObj, item);
  484. }
  485. }
  486. }
  487. }
  488. // 更新导航栏位置和大小
  489. void TreeViewManager::updateNavigationWidgetGeometry()
  490. {
  491. // 设置导航栏的宽度和高度
  492. int navWidth = 300; // 固定宽度为 300 像素
  493. int navHeight = 74; // 固定高度为 74 像素
  494. // 设置导航栏的左上角位置
  495. int navLeft = 15; // 距离 widget2 左边 15 像素
  496. int navTop = 15; // 距离 widget2 顶部 15 像素
  497. // 设置导航栏的几何位置
  498. navigationWidget->setGeometry(navLeft, navTop, navWidth, navHeight);
  499. // 如果需要,刷新组件
  500. navigationWidget->update();
  501. qDebug() << "Updated navigationWidget geometry:"
  502. << navigationWidget->geometry();
  503. }
  504. void TreeViewManager::updateNavigationBar(const QModelIndex &index)
  505. {
  506. // 0) 如果当前 index 无效,尝试从 QSettings 读取“上次导航路径”并恢复
  507. if (!index.isValid()) {
  508. qWarning() << "updateNavigationBar(): 当前 index 无效,尝试从 QSettings 恢复上次导航";
  509. QSettings settings("RunCloudTech", "David");
  510. settings.beginGroup("TreeViewNav");
  511. QStringList lastNavPath = settings.value("lastNavPath").toStringList();
  512. settings.endGroup();
  513. if (!lastNavPath.isEmpty()) {
  514. // 找到对应的节点索引
  515. QModelIndex savedIndex = findItemByPath(lastNavPath);
  516. if (savedIndex.isValid()) {
  517. qDebug() << "成功从 QSettings 恢复导航路径:" << lastNavPath
  518. << ",对应项:" << downModel->itemFromIndex(savedIndex)->text();
  519. // 再次调用本函数,更新导航栏
  520. updateNavigationBar(savedIndex);
  521. } else {
  522. qWarning() << "QSettings 里存的路径无法找到对应节点,无法恢复。";
  523. }
  524. } else {
  525. qWarning() << "QSettings 里没有存任何导航路径,或为空。";
  526. }
  527. return;
  528. }
  529. QStandardItem *item = downModel->itemFromIndex(index);
  530. if (!item) {
  531. qWarning() << "导航栏更新失败:未找到对应项";
  532. return;
  533. }
  534. qDebug() << "导航栏更新,目录项:" << item->text();
  535. // 如果导航栏已有布局,先清理
  536. if (navigationWidget->layout()) {
  537. QLayoutItem *child;
  538. while ((child = navigationWidget->layout()->takeAt(0)) != nullptr) {
  539. if (child->widget()) {
  540. child->widget()->deleteLater();
  541. }
  542. delete child;
  543. }
  544. delete navigationWidget->layout();
  545. }
  546. // 构建路径列表,从当前项回溯到根节点
  547. QList<QStandardItem *> path;
  548. QStandardItem *temp = item;
  549. while (temp) {
  550. if (temp->text() != "isThirdLevel") { // 排除 "isThirdLevel" 标识
  551. path.prepend(temp); // 从根节点开始
  552. }
  553. temp = temp->parent();
  554. }
  555. qDebug() << "导航路径:" << [path]() {
  556. QStringList pathNames;
  557. for (QStandardItem *p : path) {
  558. pathNames.append(p->text());
  559. }
  560. return pathNames.join(" -> ");
  561. }();
  562. // 创建新的导航栏布局
  563. QVBoxLayout *newLayout = new QVBoxLayout;
  564. newLayout->setContentsMargins(0, 0, 0, 0);
  565. newLayout->setSpacing(0);
  566. // 确保始终显示三行
  567. for (int i = 0; i < 3; ++i) {
  568. QLabel *label = new QLabel;
  569. if (i < path.size()) {
  570. QString text = path[i]->text();
  571. if (i == 1) text = " " + text; // 一级目录缩进
  572. if (i == 2) text = " " + text; // 二级/三级目录缩进
  573. label->setText(text);
  574. } else {
  575. label->setText(""); // 填充空白行
  576. }
  577. // 设置字体和样式
  578. QFont font = label->font();
  579. font.setPointSize(12);
  580. label->setFont(font);
  581. label->setAlignment(Qt::AlignLeft | Qt::AlignVCenter);
  582. label->setFixedHeight(navigationWidget->height() / 3);
  583. newLayout->addWidget(label);
  584. }
  585. // 设置布局并更新导航栏
  586. navigationWidget->setLayout(newLayout);
  587. navigationWidget->update();
  588. qDebug() << "导航栏更新完成:" << path.size() << "项";
  589. //当前路径存到 QSettings,供下次启动恢复
  590. QStringList pathStrings;
  591. for (QStandardItem *p : path) {
  592. pathStrings << p->text();
  593. }
  594. QSettings settings("RunCloudTech", "David");
  595. settings.beginGroup("TreeViewNav");
  596. settings.setValue("lastNavPath", pathStrings);
  597. settings.endGroup();
  598. qDebug() << "已将当前导航路径写入 QSettings:" << pathStrings;
  599. }
  600. /**
  601. * @brief 加载并显示三级目录的按钮配置信息
  602. * @param thirdLevelObj 三级目录的 JSON 对象
  603. */
  604. void TreeViewManager::loadButtonConfigForThirdLevel(const QJsonObject &thirdLevelObj)
  605. {
  606. if (!m_originalWnd) {
  607. qWarning() << "OriginalWnd 指针为空,无法加载按钮配置";
  608. return;
  609. }
  610. if (!thirdLevelObj.contains("buttons")) {
  611. qWarning() << "三级目录配置中不包含 'buttons' 字段";
  612. return;
  613. }
  614. QJsonArray buttonsArray = thirdLevelObj.value("buttons").toArray();
  615. if (buttonsArray.size() != 12) {
  616. qWarning() << "按钮数量不是12个,实际数量:" << buttonsArray.size();
  617. // 根据需求选择是否继续处理
  618. }
  619. // 获取 widget_left
  620. QWidget* widgetLeft = m_originalWnd->getWidgetLeft();
  621. if (!widgetLeft) {
  622. qWarning() << "无法访问 widget_left";
  623. return;
  624. }
  625. // 设置 widget_left 的固定大小
  626. widgetLeft->setFixedSize(190, 988);
  627. // 使用绝对定位创建按钮
  628. for (int i = 0; i < buttonsArray.size() && i < 12; ++i) {
  629. QJsonObject buttonObj = buttonsArray[i].toObject();
  630. QString buttonId = buttonObj.value("id").toString();
  631. QString buttonIcon = buttonObj.value("icon").toString();
  632. QString buttonText = buttonObj.value("text").toString();
  633. bool isEnabled = buttonObj.value("enabled").toBool();
  634. // 创建按钮
  635. QPushButton *button = new QPushButton(widgetLeft);
  636. button->setObjectName(buttonId);
  637. button->setText(buttonText);
  638. button->setIcon(QIcon(buttonIcon));
  639. button->setIconSize(QSize(24, 24)); // 根据需要调整图标大小
  640. button->setStyleSheet(R"(
  641. QPushButton {
  642. position: absolute;
  643. width: 158px;
  644. height: 48px;
  645. border-radius: 6px;
  646. opacity: 1;
  647. background: #CBD0FF;
  648. text-align: center;
  649. }
  650. QPushButton:hover {
  651. background: #A9B4FF; /* 鼠标悬停效果 */
  652. }
  653. )");
  654. // 设置按钮的位置
  655. int x = 16;
  656. int y = 245 + i * (48 + 13); // 第一个按钮 y=245,后续每个按钮间隔13px
  657. button->setGeometry(x, y, 158, 48);
  658. // 设置按钮的可见性
  659. button->setVisible(isEnabled);
  660. // 如果按钮不启用,可以选择禁用它
  661. if (!isEnabled) {
  662. button->setEnabled(false);
  663. }
  664. button->show();
  665. qDebug() << "创建按钮:" << buttonId << ", 文本:" << buttonText << ", 图标:" << buttonIcon << ", 启用:" << isEnabled;
  666. }
  667. }
  668. void TreeViewManager::displayThirdLevelFields(const QJsonObject &fields)
  669. {
  670. if (fields.isEmpty()) {
  671. qWarning() << "字段数据为空,无法显示";
  672. return;
  673. }
  674. qDebug() << "显示的字段数据:" << fields;
  675. // 检查是否为三级目录
  676. if (!fields.contains("isThirdLevel") || !fields["isThirdLevel"].toBool()) {
  677. qWarning() << "不是三级目录,跳过按钮加载";
  678. return;
  679. }
  680. // 调用新函数加载按钮配置
  681. loadButtonConfigForThirdLevel(fields);
  682. // 1. 检查是否已存在字段窗口,防止重复创建
  683. foreach (QObject *child, widget2->children()) {
  684. QWidget *childWidget = qobject_cast<QWidget*>(child);
  685. if (childWidget && childWidget->windowTitle() == "字段展示") {
  686. qDebug() << "字段窗口已存在,关闭旧窗口";
  687. childWidget->close();
  688. }
  689. }
  690. // 2. 创建一个新的 “字段展示” 窗口
  691. QWidget *fieldWindow = new QWidget(widget2);
  692. fieldWindow->setWindowTitle("字段展示");
  693. fieldWindow->setGeometry(treeViewDown->geometry());
  694. // -- 2.1 创建一个滚动区域 QScrollArea
  695. QScrollArea *scrollArea = new QScrollArea(fieldWindow);
  696. scrollArea->setWidgetResizable(true); // 内容自适应大小
  697. scrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAsNeeded); // 保留水平滚动条
  698. qDebug() << "QScrollArea 已创建,水平滚动条策略设置为 ScrollBarAsNeeded";
  699. // -- 2.2 创建滚动容器 scrollWidget,并设置垂直布局
  700. QWidget *scrollWidget = new QWidget;
  701. scrollWidget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); // 宽度跟随父窗口
  702. QVBoxLayout *scrollLayout = new QVBoxLayout(scrollWidget);
  703. scrollLayout->setSpacing(18); // 字段的垂直间距
  704. scrollLayout->setContentsMargins(10, 10, 10, 10); // 减少边距
  705. qDebug() << "滚动容器和垂直布局已创建,垂直间距和边距已减少";
  706. // 3. 遍历 JSON 中的字段,生成控件
  707. for (auto it = fields.begin(); it != fields.end(); ++it) {
  708. QString fieldName = it.key();
  709. if (fieldName == "isThirdLevel") {
  710. continue; // 跳过 isThirdLevel 字段
  711. }
  712. QJsonObject fieldConfig = it.value().toObject();
  713. QString fieldType = fieldConfig["type"].toString();
  714. qDebug() << "处理字段:" << fieldName << "类型:" << fieldType;
  715. // 每个字段一行:Label在左,控件在右
  716. QHBoxLayout *fieldLayout = new QHBoxLayout;
  717. fieldLayout->setSpacing(5); // 减少每行的水平间距
  718. // (1)左侧:字段名 (最小宽度,固定高度24px,左对齐)
  719. QLabel *label = new QLabel(fieldName);
  720. label->setAlignment(Qt::AlignVCenter | Qt::AlignLeft);
  721. label->setFixedHeight(24); // 高度为24px
  722. label->setMinimumWidth(120); // 减少最小宽度,允许根据内容自动调整
  723. fieldLayout->addWidget(label);
  724. // 在中间插入弹性伸缩,使后面的控件靠右
  725. fieldLayout->addStretch(1);
  726. // (2)右侧:根据 fieldType 创建相应控件
  727. QWidget *rightWidget = new QWidget;
  728. QHBoxLayout *rightLayout = new QHBoxLayout(rightWidget);
  729. rightLayout->setContentsMargins(0, 0, 0, 0); // 移除右侧边距
  730. rightLayout->setSpacing(5); // 减少控件之间的间距
  731. if (fieldType == "input") {
  732. // 创建 QLineEdit 输入框
  733. QLineEdit *lineEdit = new QLineEdit(fieldConfig["value"].toString());
  734. lineEdit->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); // 水平方向扩展
  735. lineEdit->setFixedHeight(28); // 减少高度
  736. lineEdit->setAlignment(Qt::AlignLeft); // 输入框左对齐
  737. lineEdit->setStyleSheet(R"(
  738. QLineEdit {
  739. background: #FFFFFF;
  740. border: 1px solid #BABBDC;
  741. border-radius: 6px;
  742. padding: 2px 5px;
  743. }
  744. )");
  745. rightLayout->addWidget(lineEdit);
  746. qDebug() << "添加输入框:" << fieldName;
  747. } else if (fieldType == "radio") {
  748. // 创建一组 QRadioButton 单选框
  749. QHBoxLayout *radioLayout = new QHBoxLayout;
  750. radioLayout->setSpacing(5); // 减少单选按钮之间的间距
  751. QButtonGroup *radioGroup = new QButtonGroup(rightWidget);
  752. QString currentValue = fieldConfig["value"].toString();
  753. QJsonArray options = fieldConfig["options"].toArray();
  754. for (const QJsonValue &option : options) {
  755. QRadioButton *radioButton = new QRadioButton(option.toString());
  756. // 使用默认样式,无需自定义样式表
  757. if (option.toString() == currentValue) {
  758. radioButton->setChecked(true);
  759. }
  760. radioGroup->addButton(radioButton);
  761. radioLayout->addWidget(radioButton);
  762. qDebug() << "添加单选按钮:" << option.toString();
  763. }
  764. rightLayout->addLayout(radioLayout);
  765. } else if (fieldType == "checkbox") {
  766. // 创建 QCheckBox 复选框,并添加标签
  767. QCheckBox *checkBox = new QCheckBox;
  768. checkBox->setChecked(fieldConfig["value"].toBool());
  769. // 使用默认样式,无需自定义样式表
  770. // 创建标签,基于字段名称
  771. QLabel *checkBoxLabel = new QLabel(fieldName);
  772. checkBoxLabel->setAlignment(Qt::AlignVCenter | Qt::AlignLeft);
  773. checkBoxLabel->setStyleSheet("font-size: 14px;"); // 可选:调整字体大小
  774. QHBoxLayout *checkboxLayout = new QHBoxLayout;
  775. checkboxLayout->setSpacing(3); // 减少复选框和标签之间的间距
  776. checkboxLayout->setContentsMargins(0, 0, 0, 0);
  777. checkboxLayout->addWidget(checkBox);
  778. checkboxLayout->addWidget(checkBoxLabel);
  779. rightLayout->addLayout(checkboxLayout);
  780. qDebug() << "添加多选框和标签:" << fieldName;
  781. } else if (fieldType == "dropdown") {
  782. // 创建 QComboBox 下拉框
  783. QComboBox *comboBox = new QComboBox;
  784. comboBox->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); // 固定宽度
  785. comboBox->setFixedSize(120, 28); // 减少宽度和高度
  786. comboBox->setStyleSheet(R"(
  787. QComboBox {
  788. background: #FFFFFF;
  789. border: 1px solid #BABBDC;
  790. border-radius: 6px;
  791. padding: 2px 5px;
  792. }
  793. QComboBox::drop-down {
  794. width: 20px;
  795. }
  796. )");
  797. QJsonArray options = fieldConfig["options"].toArray();
  798. for (const QJsonValue &option : options) {
  799. comboBox->addItem(option.toString());
  800. }
  801. comboBox->setCurrentText(fieldConfig["value"].toString());
  802. rightLayout->addWidget(comboBox);
  803. qDebug() << "添加下拉框:" << fieldName;
  804. } else if (fieldType == "time") {
  805. // 创建 QTimeEdit 时间选择框
  806. QTimeEdit *timeEdit = new QTimeEdit;
  807. timeEdit->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); // 固定宽度
  808. timeEdit->setFixedSize(120, 28); // 减少宽度和高度
  809. timeEdit->setStyleSheet(R"(
  810. QTimeEdit {
  811. background: #FFFFFF;
  812. border: 1px solid #BABBDC;
  813. border-radius: 6px;
  814. padding: 2px 5px;
  815. }
  816. )");
  817. timeEdit->setDisplayFormat("HH:mm:ss");
  818. timeEdit->setTime(QTime::fromString(fieldConfig["value"].toString(), "HH:mm:ss"));
  819. rightLayout->addWidget(timeEdit);
  820. qDebug() << "添加时间选择框:" << fieldName;
  821. } else if (fieldType == "switch") {
  822. // 创建 QCheckBox 开关控件,并添加文字标签“开”和“关”
  823. QWidget *switchContainer = new QWidget;
  824. QHBoxLayout *switchLayout = new QHBoxLayout(switchContainer);
  825. switchLayout->setSpacing(5); // 减少开关和标签之间的间距
  826. switchLayout->setContentsMargins(0, 0, 0, 0);
  827. QCheckBox *switchBox = new QCheckBox;
  828. switchBox->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
  829. switchBox->setFixedSize(30, 30); // 调整开关大小
  830. switchBox->setStyleSheet(R"(
  831. QCheckBox::indicator {
  832. width: 30px;
  833. height: 30px;
  834. }
  835. QCheckBox::indicator:unchecked {
  836. background-color: #BABBDC;
  837. border-radius: 6px;
  838. }
  839. QCheckBox::indicator:checked {
  840. background-color: #4CAF50;
  841. border-radius: 6px;
  842. }
  843. )");
  844. // 设置初始状态
  845. QString switchValue = fieldConfig["value"].toString();
  846. if (switchValue == "on") {
  847. switchBox->setChecked(true);
  848. } else {
  849. switchBox->setChecked(false);
  850. }
  851. // 添加文字标签
  852. QLabel *switchLabel = new QLabel(switchBox->isChecked() ? "开" : "关");
  853. switchLabel->setAlignment(Qt::AlignVCenter | Qt::AlignLeft);
  854. switchLabel->setStyleSheet("font-size: 14px;"); // 可选:调整字体大小
  855. // 连接开关状态改变信号以更新标签文字
  856. connect(switchBox, &QCheckBox::stateChanged, [switchLabel](int state){
  857. if (state == Qt::Checked) {
  858. switchLabel->setText("开");
  859. } else {
  860. switchLabel->setText("关");
  861. }
  862. });
  863. switchLayout->addWidget(switchBox);
  864. switchLayout->addWidget(switchLabel);
  865. rightLayout->addWidget(switchContainer);
  866. qDebug() << "添加开关控件和标签:" << fieldName;
  867. } else if (fieldType == "combined") {
  868. // 组合控件(包含 QLineEdit 和两个 QToolButton)
  869. QJsonObject combinedValue = fieldConfig["value"].toObject();
  870. // 确保必要的字段存在
  871. if (!combinedValue.contains("inputValue") ||
  872. !combinedValue.contains("moduleButton") ||
  873. !combinedValue.contains("axisButton")) {
  874. qWarning() << "组合控件的 value 字段不完整:" << fieldName;
  875. continue;
  876. }
  877. QLineEdit *comboInput = new QLineEdit(combinedValue["inputValue"].toString());
  878. comboInput->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); // 水平方向扩展
  879. comboInput->setFixedHeight(28); // 减少高度
  880. comboInput->setStyleSheet(R"(
  881. QLineEdit {
  882. background: #FFFFFF;
  883. border: 1px solid #BABBDC;
  884. border-radius: 5px;
  885. padding: 2px 5px;
  886. }
  887. )");
  888. qDebug() << "添加组合控件的输入框:" << fieldName;
  889. // 创建一个容器 widget 来包含组合控件
  890. QWidget *combinedWidget = new QWidget;
  891. QHBoxLayout *combinedLayout = new QHBoxLayout(combinedWidget);
  892. combinedLayout->setSpacing(5); // 减少控件之间的间距
  893. combinedLayout->setContentsMargins(0, 0, 0, 0);
  894. // “模组” QToolButton
  895. QToolButton *moduleButton = new QToolButton(combinedWidget); // 设置父级
  896. moduleButton->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
  897. moduleButton->setFixedSize(80, 28); // 调整按钮大小
  898. moduleButton->setStyleSheet(R"(
  899. QToolButton {
  900. background: #FFFFFF;
  901. border: 1px solid #BABBDC;
  902. border-radius: 5px;
  903. padding: 0px; /* 移除默认内边距 */
  904. text-align: center; /* 使文本居中 */
  905. }
  906. QToolButton::menu-indicator {
  907. image: none;
  908. }
  909. QToolButton::checked {
  910. background: #4CAF50; /* 高亮颜色 */
  911. }
  912. /* 强制文本居中 */
  913. QToolButton::hover {
  914. qproperty-textAlignment: 'AlignCenter';
  915. }
  916. )");
  917. moduleButton->setText("模组");
  918. moduleButton->setCheckable(true);
  919. moduleButton->setPopupMode(QToolButton::InstantPopup);
  920. // “轴向” QToolButton
  921. QToolButton *axisButton = new QToolButton(combinedWidget); // 设置父级
  922. axisButton->setObjectName("axisButton"); // 为轴向按钮设置对象名以便查找
  923. axisButton->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
  924. axisButton->setFixedSize(80, 28); // 调整按钮大小
  925. axisButton->setStyleSheet(R"(
  926. QToolButton {
  927. background: #FFFFFF;
  928. border: 1px solid #BABBDC;
  929. border-radius: 5px;
  930. padding: 0px; /* 移除默认内边距 */
  931. text-align: center; /* 使文本居中 */
  932. }
  933. QToolButton::menu-indicator {
  934. image: none;
  935. }
  936. QToolButton::checked {
  937. background: #4CAF50; /* 高亮颜色 */
  938. }
  939. /* 强制文本居中 */
  940. QToolButton::hover {
  941. qproperty-textAlignment: 'AlignCenter';
  942. }
  943. )");
  944. axisButton->setText("轴向");
  945. axisButton->setCheckable(true);
  946. axisButton->setPopupMode(QToolButton::InstantPopup);
  947. axisButton->setEnabled(false); // 初始时禁用轴向按钮
  948. // 创建 QMenu 用于“轴向”按钮,并设置样式表
  949. QMenu *axisMenu = new QMenu(axisButton);
  950. axisMenu->setStyleSheet(R"(
  951. QMenu {
  952. background-color: white;
  953. color: black;
  954. border: 1px solid #BABBDC;
  955. }
  956. QMenu::item:selected {
  957. background-color: #4CAF50; /* 选中时背景颜色 */
  958. color: white; /* 选中时字体颜色 */
  959. }
  960. )");
  961. QJsonObject axisMap = fieldConfig["axisMap"].toObject();
  962. // 初始化轴向菜单内容为空,等待选择模组后填充
  963. axisButton->setMenu(axisMenu);
  964. qDebug() << "初始化轴向菜单为空:" << fieldName;
  965. // 连接“轴向”按钮的菜单触发事件来更新“轴向”菜单
  966. connect(axisMenu, &QMenu::triggered, this, [axisButton](QAction *action){
  967. axisButton->setText(action->text());
  968. axisButton->setChecked(true);
  969. qDebug() << "轴向选择:" << action->text();
  970. });
  971. // “模组” QMenu
  972. QMenu *moduleMenu = new QMenu(moduleButton);
  973. moduleMenu->setStyleSheet(R"(
  974. QMenu {
  975. background-color: white;
  976. color: black;
  977. border: 1px solid #BABBDC;
  978. }
  979. QMenu::item:selected {
  980. background-color: #4CAF50; /* 选中时背景颜色 */
  981. color: white; /* 选中时字体颜色 */
  982. }
  983. )");
  984. QJsonArray moduleOptions = fieldConfig["moduleOptions"].toArray();
  985. for (const QJsonValue &mod : moduleOptions) {
  986. QAction *action = moduleMenu->addAction(mod.toString());
  987. // 使用按值捕获,避免悬空指针
  988. connect(action, &QAction::triggered, this, [moduleButton, action, fieldConfig, combinedWidget, comboInput, fieldName, axisButton, axisMenu, axisMap]() {
  989. moduleButton->setText(action->text());
  990. moduleButton->setChecked(true);
  991. qDebug() << "模组选择:" << action->text();
  992. // 更改背景颜色为高亮色
  993. moduleButton->setStyleSheet("background: #4CAF50;");
  994. axisButton->setStyleSheet("background: #4CAF50;");
  995. qDebug() << "组合控件颜色已切换为高亮颜色";
  996. // 启用轴向按钮
  997. axisButton->setEnabled(true);
  998. // 动态填充轴向菜单
  999. axisMenu->clear(); // 清空现有菜单项
  1000. if (axisMap.contains(action->text())) {
  1001. QJsonArray axes = axisMap[action->text()].toArray();
  1002. for (const QJsonValue &axis : axes) {
  1003. //QAction *axisAction = axisMenu->addAction(axis.toString());
  1004. axisMenu->addAction(axis.toString());
  1005. }
  1006. qDebug() << "轴向菜单已根据模组选择动态填充";
  1007. } else {
  1008. qDebug() << "没有找到对应模组的轴向选项";
  1009. }
  1010. // 启动定时器
  1011. int timeoutSec = fieldConfig["timeout"].toInt(1); // 默认180秒(3分钟)
  1012. QTimer *timer = new QTimer(combinedWidget);
  1013. timer->setSingleShot(true);
  1014. connect(timer, &QTimer::timeout, combinedWidget, [comboInput, moduleButton, axisButton]() {
  1015. // 恢复背景颜色为默认
  1016. moduleButton->setStyleSheet("background: #FFFFFF;");
  1017. axisButton->setStyleSheet("background: #FFFFFF;");
  1018. qDebug() << "组合控件颜色已切换为默认(超时)";
  1019. });
  1020. timer->start(timeoutSec * 30); // 修正为 timeoutSec * 1000 毫秒 (3分钟)
  1021. qDebug() << "启动定时器," << timeoutSec << "秒后更改组合控件颜色";
  1022. });
  1023. }
  1024. moduleButton->setMenu(moduleMenu);
  1025. qDebug() << "添加组合控件的模组按钮:" << fieldName;
  1026. // 创建一个容器 widget 来包含组合控件
  1027. combinedLayout->addWidget(comboInput);
  1028. combinedLayout->addWidget(moduleButton);
  1029. combinedLayout->addWidget(axisButton);
  1030. combinedLayout->addStretch(); // 保证组合控件紧凑排列
  1031. rightLayout->addWidget(combinedWidget);
  1032. qDebug() << "组合控件已添加到布局:" << fieldName;
  1033. } else {
  1034. qWarning() << "未知字段类型:" << fieldType;
  1035. }
  1036. // 将 rightWidget 加到 fieldLayout 的右侧
  1037. fieldLayout->addWidget(rightWidget);
  1038. qDebug() << "将 rightWidget 添加到 fieldLayout";
  1039. // 将 fieldLayout 添加到 scrollLayout
  1040. scrollLayout->addLayout(fieldLayout);
  1041. qDebug() << "添加字段布局:" << fieldName;
  1042. }
  1043. // 4. 补一个弹性伸缩,让底部也有一定空隙
  1044. scrollLayout->addStretch();
  1045. qDebug() << "添加弹性伸缩以填充底部空隙";
  1046. // 5. 将 scrollWidget 设置给 scrollArea
  1047. scrollArea->setWidget(scrollWidget);
  1048. qDebug() << "滚动容器已设置到 QScrollArea";
  1049. // 6. 最后将 scrollArea 放到 fieldWindow 的主布局中
  1050. QVBoxLayout *mainLayout = new QVBoxLayout(fieldWindow);
  1051. mainLayout->setContentsMargins(0, 0, 0, 0);
  1052. mainLayout->addWidget(scrollArea);
  1053. qDebug() << "主布局已设置到 fieldWindow";
  1054. // 7. 显示窗口
  1055. fieldWindow->show();
  1056. qDebug() << "三级目录字段窗口已打开";
  1057. }
  1058. void TreeViewManager::setupButton()
  1059. {
  1060. buttonOpenFile = new QPushButton(widget2);
  1061. buttonUp = new QPushButton(widget2);
  1062. buttonDown = new QPushButton(widget2);
  1063. buttonLeft = new QPushButton(widget2);
  1064. buttonRight = new QPushButton(widget2);
  1065. // 设置 buttonOpenFile 的位置
  1066. buttonOpenFile->setParent(widget2); // 明确设置 widget2 为父级
  1067. buttonOpenFile->setMaximumSize(76, 30);
  1068. buttonOpenFile->setIcon(QIcon(":/images/home_openFile.png"));
  1069. buttonOpenFile->setText("");
  1070. buttonOpenFile->setGeometry(328, 16, 76, 30);
  1071. // 设置按钮位置大小
  1072. buttonUp->setParent(widget2);
  1073. buttonUp->setMaximumSize(36, 30);
  1074. buttonUp->setIcon(QIcon(":/images/home_up.png"));
  1075. buttonUp->setText("");
  1076. buttonUp->setGeometry(408, 16, 36, 30); // 位置示例
  1077. buttonDown->setParent(widget2);
  1078. buttonDown->setMaximumSize(36, 30);
  1079. buttonDown->setIcon(QIcon(":/images/home_down.png"));
  1080. buttonDown->setText("");
  1081. buttonDown->setGeometry(408, 50, 36, 30); // 位置示例
  1082. buttonLeft->setParent(widget2);
  1083. buttonLeft->setMaximumSize(36, 30);
  1084. buttonLeft->setIcon(QIcon(":/images/home_left.png"));
  1085. buttonLeft->setText("");
  1086. buttonLeft->setGeometry(328, 50, 36, 30); // 位置示例
  1087. buttonRight->setParent(widget2);
  1088. buttonRight->setMaximumSize(36, 30);
  1089. buttonRight->setIcon(QIcon(":/images/home_right.png"));
  1090. buttonRight->setText("");
  1091. buttonRight->setGeometry(368, 50, 36, 30); // 位置示例
  1092. // 显示所有按钮
  1093. buttonOpenFile->show();
  1094. buttonUp->show();
  1095. buttonDown->show();
  1096. buttonLeft->show();
  1097. buttonRight->show();
  1098. }
  1099. void TreeViewManager::onButtonOpenFileClicked()
  1100. {
  1101. foreach (QObject *child, widget2->children()) {
  1102. QWidget *childWidget = qobject_cast<QWidget *>(child);
  1103. if (childWidget && childWidget->windowTitle() == "字段展示") {
  1104. qDebug() << "关闭字段窗口:" << childWidget;
  1105. childWidget->close();
  1106. }
  1107. }
  1108. treeViewDown->show(); // 显示 treeViewDown
  1109. treeViewDown->collapseAll(); // 收起所有节点
  1110. treeViewDown->clearSelection();
  1111. // 展开一级目录
  1112. QStandardItem *rootItem = downModel->invisibleRootItem();
  1113. if (rootItem) {
  1114. for (int i = 0; i < rootItem->rowCount(); ++i) {
  1115. QStandardItem *childItem = rootItem->child(i);
  1116. if (childItem) {
  1117. treeViewDown->expand(downModel->indexFromItem(childItem));
  1118. qDebug() << "展开一级目录:" << childItem->text();
  1119. }
  1120. }
  1121. }
  1122. // 重置导航栏
  1123. updateNavigationBar(QModelIndex());
  1124. qDebug() << "成功返回到一级菜单";
  1125. }
  1126. void TreeViewManager::onButtonUpClicked()
  1127. {
  1128. qDebug() << "TreeViewManager: 向上遍历所有目录";
  1129. // 获取当前选中项索引
  1130. QModelIndex currentIndex = treeViewDown->currentIndex();
  1131. if (!currentIndex.isValid()) {
  1132. qDebug() << "当前无有效索引,从最后一个根节点开始遍历";
  1133. // 从最后一个根节点开始
  1134. int lastRootRow = downModel->rowCount() - 1;
  1135. if (lastRootRow >= 0) {
  1136. currentIndex = downModel->index(lastRootRow, 0);
  1137. treeViewDown->setCurrentIndex(currentIndex);
  1138. updateNavigationBar(currentIndex);
  1139. qDebug() << "当前目录:" << downModel->itemFromIndex(currentIndex)->text();
  1140. }
  1141. return;
  1142. }
  1143. QStandardItem *currentItem = downModel->itemFromIndex(currentIndex);
  1144. if (!currentItem) {
  1145. qWarning() << "无法获取当前目录项";
  1146. return;
  1147. }
  1148. // 检查当前节点是否有上一个同级节点
  1149. QModelIndex previousSiblingIndex = currentIndex.siblingAtRow(currentIndex.row() - 1);
  1150. if (previousSiblingIndex.isValid()) {
  1151. // 如果有上一个同级节点,则进入该节点的最后一个子节点
  1152. qDebug() << "当前目录有上一个同级节点:" << downModel->itemFromIndex(previousSiblingIndex)->text();
  1153. QModelIndex lastChildIndex = getLastChildIndex(previousSiblingIndex);
  1154. if (lastChildIndex.isValid()) {
  1155. treeViewDown->setCurrentIndex(lastChildIndex);
  1156. updateNavigationBar(lastChildIndex);
  1157. qDebug() << "进入上一个同级节点的最后一个子节点:" << downModel->itemFromIndex(lastChildIndex)->text();
  1158. } else {
  1159. treeViewDown->setCurrentIndex(previousSiblingIndex);
  1160. updateNavigationBar(previousSiblingIndex);
  1161. qDebug() << "进入上一个同级节点:" << downModel->itemFromIndex(previousSiblingIndex)->text();
  1162. }
  1163. return;
  1164. }
  1165. // 如果没有上一个同级节点,返回到父节点
  1166. QModelIndex parentIndex = currentIndex.parent();
  1167. if (parentIndex.isValid()) {
  1168. treeViewDown->setCurrentIndex(parentIndex);
  1169. updateNavigationBar(parentIndex);
  1170. qDebug() << "返回到父节点:" << downModel->itemFromIndex(parentIndex)->text();
  1171. return;
  1172. }
  1173. // 如果没有父节点,说明已经到达最顶部
  1174. qDebug() << "已经到达根目录顶部,无法继续向上遍历";
  1175. }
  1176. // 获取最后一个子节点的索引
  1177. QModelIndex TreeViewManager::getLastChildIndex(const QModelIndex &parentIndex)
  1178. {
  1179. if (!parentIndex.isValid() || downModel->rowCount(parentIndex) == 0) {
  1180. return QModelIndex(); // 无效索引
  1181. }
  1182. // 获取最后一个子节点的索引
  1183. int lastRow = downModel->rowCount(parentIndex) - 1;
  1184. QModelIndex lastChildIndex = downModel->index(lastRow, 0, parentIndex);
  1185. // 如果最后一个子节点还有子节点,递归查找其最后一个子节点
  1186. QModelIndex lastGrandChildIndex = getLastChildIndex(lastChildIndex);
  1187. return lastGrandChildIndex.isValid() ? lastGrandChildIndex : lastChildIndex;
  1188. }
  1189. void TreeViewManager::onButtonDownClicked()
  1190. {
  1191. qDebug() << "TreeViewManager: 向下遍历所有目录";
  1192. // 获取当前选中项索引
  1193. QModelIndex currentIndex = treeViewDown->currentIndex();
  1194. if (!currentIndex.isValid()) {
  1195. qDebug() << "当前无有效索引,从第一个根节点开始遍历";
  1196. currentIndex = downModel->index(0, 0); // 从第一个根节点开始
  1197. treeViewDown->setCurrentIndex(currentIndex);
  1198. updateNavigationBar(currentIndex); // 更新导航栏
  1199. qDebug() << "当前目录:" << downModel->itemFromIndex(currentIndex)->text();
  1200. return;
  1201. }
  1202. QStandardItem *currentItem = downModel->itemFromIndex(currentIndex);
  1203. if (!currentItem) {
  1204. qWarning() << "无法获取当前目录项";
  1205. return;
  1206. }
  1207. // 如果当前项有子节点,则进入子节点
  1208. if (currentItem->hasChildren()) {
  1209. qDebug() << "当前目录有子目录,进入第一个子目录:" << currentItem->text();
  1210. treeViewDown->expand(currentIndex); // 展开当前目录
  1211. QModelIndex childIndex = downModel->index(0, 0, currentIndex); // 获取第一个子节点
  1212. if (childIndex.isValid()) {
  1213. treeViewDown->setCurrentIndex(childIndex); // 进入第一个子节点
  1214. updateNavigationBar(childIndex); // 更新导航栏
  1215. qDebug() << "进入子目录:" << downModel->itemFromIndex(childIndex)->text();
  1216. return;
  1217. } else {
  1218. qWarning() << "当前目录有子节点但无法获取";
  1219. }
  1220. }
  1221. // 当前目录没有子节点,寻找同级的下一个节点
  1222. QModelIndex nextSiblingIndex = currentIndex.siblingAtRow(currentIndex.row() + 1);
  1223. while (!nextSiblingIndex.isValid()) {
  1224. // 如果没有下一个同级节点,向上查找父节点的下一个同级节点
  1225. QModelIndex parentIndex = currentIndex.parent();
  1226. if (!parentIndex.isValid()) {
  1227. qDebug() << "已到达最底层目录,从第一个根节点重新开始遍历";
  1228. nextSiblingIndex = downModel->index(0, 0); // 回到根目录的第一个节点
  1229. break;
  1230. }
  1231. nextSiblingIndex = parentIndex.siblingAtRow(parentIndex.row() + 1); // 获取父节点的下一个同级节点
  1232. currentIndex = parentIndex; // 更新当前索引为父节点
  1233. }
  1234. // 进入下一个节点(同级或回到根节点的第一个节点)
  1235. if (nextSiblingIndex.isValid()) {
  1236. treeViewDown->setCurrentIndex(nextSiblingIndex);
  1237. updateNavigationBar(nextSiblingIndex); // 更新导航栏
  1238. qDebug() << "进入同级或上层同级目录:" << downModel->itemFromIndex(nextSiblingIndex)->text();
  1239. } else {
  1240. qWarning() << "无法找到下一个目录节点";
  1241. }
  1242. }
  1243. // 获取下一个有效索引
  1244. QModelIndex TreeViewManager::getNextIndex(const QModelIndex &currentIndex)
  1245. {
  1246. // 尝试获取当前项的下一个兄弟项
  1247. QModelIndex nextIndex = currentIndex.sibling(currentIndex.row() + 1, 0);
  1248. if (nextIndex.isValid()) {
  1249. return nextIndex;
  1250. }
  1251. // 如果没有兄弟项,向上找到父节点的下一个兄弟项
  1252. QModelIndex parentIndex = currentIndex.parent();
  1253. while (parentIndex.isValid()) {
  1254. QModelIndex nextParentSibling = parentIndex.sibling(parentIndex.row() + 1, 0);
  1255. if (nextParentSibling.isValid()) {
  1256. return nextParentSibling;
  1257. }
  1258. parentIndex = parentIndex.parent(); // 再往上层找
  1259. }
  1260. // 如果没有兄弟项或父节点兄弟项,返回无效索引
  1261. return QModelIndex();
  1262. }
  1263. void TreeViewManager::onButtonLeftClicked()
  1264. {
  1265. qDebug() << "TreeViewManager: 返回上一级目录";
  1266. // 检查是否是三级目录字段展示窗口
  1267. bool isFieldWindowClosed = false;
  1268. foreach (QObject *child, widget2->children()) {
  1269. QWidget *childWidget = qobject_cast<QWidget *>(child);
  1270. if (childWidget && childWidget->windowTitle() == "字段展示") {
  1271. qDebug() << "关闭三级目录窗口并返回到三级目录";
  1272. childWidget->close(); // 关闭字段展示窗口
  1273. isFieldWindowClosed = true;
  1274. }
  1275. }
  1276. if (isFieldWindowClosed) {
  1277. // 重新显示 treeViewDown 并恢复到对应的三级目录索引
  1278. treeViewDown->show();
  1279. QModelIndex currentIndex = treeViewDown->currentIndex();
  1280. if (currentIndex.isValid()) {
  1281. updateNavigationBar(currentIndex); // 更新导航栏
  1282. qDebug() << "返回到三级目录索引:" << downModel->itemFromIndex(currentIndex)->text();
  1283. } else {
  1284. qWarning() << "当前索引无效,无法更新导航栏";
  1285. }
  1286. // **继续执行向上遍历的逻辑**
  1287. QModelIndex parentIndex = currentIndex.parent();
  1288. if (parentIndex.isValid()) {
  1289. treeViewDown->setCurrentIndex(parentIndex);
  1290. treeViewDown->expand(parentIndex); // 确保父节点展开
  1291. updateNavigationBar(parentIndex); // 更新导航栏
  1292. QStandardItem *parentItem = downModel->itemFromIndex(parentIndex);
  1293. if (parentItem) {
  1294. qDebug() << "返回上一级目录:" << parentItem->text();
  1295. } else {
  1296. qWarning() << "未找到父目录项";
  1297. }
  1298. } else {
  1299. qWarning() << "当前节点没有父节点";
  1300. }
  1301. return; // 确保退出此方法,避免执行以下逻辑
  1302. }
  1303. // 获取当前选中项的索引
  1304. QModelIndex currentIndex = treeViewDown->currentIndex();
  1305. if (!currentIndex.isValid()) {
  1306. qDebug() << "当前无有效索引,无法返回";
  1307. return;
  1308. }
  1309. // 获取父节点索引
  1310. QModelIndex parentIndex = currentIndex.parent();
  1311. if (parentIndex.isValid()) {
  1312. // 如果有父节点,返回到父节点
  1313. treeViewDown->setCurrentIndex(parentIndex);
  1314. treeViewDown->expand(parentIndex); // 展开父节点
  1315. updateNavigationBar(parentIndex); // 更新导航栏
  1316. QStandardItem *parentItem = downModel->itemFromIndex(parentIndex);
  1317. if (parentItem) {
  1318. qDebug() << "返回上一级目录:" << parentItem->text();
  1319. } else {
  1320. qWarning() << "未找到父目录项";
  1321. }
  1322. } else {
  1323. // 如果没有父节点,返回到一级目录的第一行
  1324. QModelIndex firstIndex = downModel->index(0, 0);
  1325. if (firstIndex.isValid()) {
  1326. treeViewDown->setCurrentIndex(firstIndex);
  1327. treeViewDown->expand(firstIndex); // 展开一级目录
  1328. updateNavigationBar(firstIndex); // 更新导航栏
  1329. QStandardItem *firstItem = downModel->itemFromIndex(firstIndex);
  1330. if (firstItem) {
  1331. qDebug() << "返回到一级目录的第一行:" << firstItem->text();
  1332. } else {
  1333. qWarning() << "未找到一级目录的第一行";
  1334. }
  1335. } else {
  1336. qWarning() << "无法找到任何一级目录";
  1337. }
  1338. }
  1339. }
  1340. void TreeViewManager::onButtonRightClicked()
  1341. {
  1342. qDebug() << "TreeViewManager: 进入下一级目录";
  1343. // 获取当前选中项索引
  1344. QModelIndex currentIndex = treeViewDown->currentIndex();
  1345. if (!currentIndex.isValid()) {
  1346. qDebug() << "当前无有效索引,自动从第一个根节点开始";
  1347. currentIndex = downModel->index(0, 0); // 从根节点第一个开始
  1348. }
  1349. QStandardItem *currentItem = downModel->itemFromIndex(currentIndex);
  1350. if (!currentItem) {
  1351. qWarning() << "无法获取当前目录项";
  1352. return;
  1353. }
  1354. // 检查当前项是否有子节点
  1355. if (currentItem->hasChildren()) {
  1356. qDebug() << "当前目录有子目录,展开并进入第一个子目录:" << currentItem->text();
  1357. // 展开当前项并进入第一个子项
  1358. treeViewDown->expand(currentIndex);
  1359. QModelIndex childIndex = downModel->index(0, 0, currentIndex); // 使用 QAbstractItemModel::index()
  1360. if (childIndex.isValid()) {
  1361. treeViewDown->setCurrentIndex(childIndex);
  1362. updateNavigationBar(childIndex); // 更新导航栏
  1363. qDebug() << "进入子目录:" << downModel->itemFromIndex(childIndex)->text();
  1364. return;
  1365. } else {
  1366. qWarning() << "展开失败:未找到子节点";
  1367. return;
  1368. }
  1369. }
  1370. // 当前目录没有子节点,寻找同级的下一个节点
  1371. QModelIndex nextSiblingIndex = currentIndex.siblingAtRow(currentIndex.row() + 1);
  1372. while (!nextSiblingIndex.isValid()) {
  1373. // 如果没有下一个同级节点,向上查找父节点的下一个同级节点
  1374. QModelIndex parentIndex = currentIndex.parent();
  1375. if (!parentIndex.isValid()) {
  1376. qDebug() << "已到达最底层目录,没有更多的下一级节点";
  1377. return; // 已经遍历完所有节点
  1378. }
  1379. nextSiblingIndex = parentIndex.siblingAtRow(parentIndex.row() + 1);
  1380. currentIndex = parentIndex;
  1381. }
  1382. // 进入下一个同级节点
  1383. treeViewDown->setCurrentIndex(nextSiblingIndex);
  1384. updateNavigationBar(nextSiblingIndex); // 更新导航栏
  1385. qDebug() << "进入同级目录:" << downModel->itemFromIndex(nextSiblingIndex)->text();
  1386. }