Преглед на файлове

"修改12个按钮样式"

Change-Id: I982cac1a1841470d2aa66490f039c4e098c1d390
gu_jiangdong преди 3 месеца
родител
ревизия
6f0e9d6d01
променени са 5 файла, в които са добавени 114 реда и са изтрити 73 реда
  1. 69 34
      OriginalWnd/treeviewmanager.cpp
  2. 3 1
      OriginalWnd/treeviewmanager.h
  3. 26 34
      config/menu_config.json
  4. 6 4
      project01.pro.user
  5. 10 0
      res.qrc

+ 69 - 34
OriginalWnd/treeviewmanager.cpp

@@ -5,9 +5,9 @@
 // 构造函数
 TreeViewManager::TreeViewManager(OriginalWnd* originalWnd, QWidget *widget2, QWidget *parent)
     : QWidget(parent),
-    m_originalWnd(originalWnd),
     widget2(widget2),
     treeViewDown(new QTreeView(widget2)),
+    m_originalWnd(originalWnd),
     navigationWidget(nullptr),
     buttonOpenFile(nullptr),
     buttonUp(nullptr),
@@ -740,10 +740,6 @@ void TreeViewManager::updateNavigationBar(const QModelIndex &index)
 }
 
 
-
-
-
-
 /**
  * @brief 加载并显示三级目录的按钮配置信息
  * @param thirdLevelObj 三级目录的 JSON 对象
@@ -773,9 +769,13 @@ void TreeViewManager::loadButtonConfigForThirdLevel(const QJsonObject &thirdLeve
         return;
     }
 
-
-    // 设置 widget_left 的固定大小
-    widgetLeft->setFixedSize(190, 988);
+    // 清空 widget_left 中由 loadButtonConfigForThirdLevel 创建的按钮
+    QList<QPushButton*> existingButtons = widgetLeft->findChildren<QPushButton*>();
+    for (QPushButton* button : existingButtons) {
+        if (button->objectName().startsWith("thirdLevelBtn_")) { // 仅删除特定按钮
+            button->deleteLater();
+        }
+    }
 
     // 使用绝对定位创建按钮
     for (int i = 0; i < buttonsArray.size() && i < 12; ++i) {
@@ -787,46 +787,81 @@ void TreeViewManager::loadButtonConfigForThirdLevel(const QJsonObject &thirdLeve
 
         // 创建按钮
         QPushButton *button = new QPushButton(widgetLeft);
-        button->setObjectName(buttonId);
-        button->setText(buttonText);
-        button->setIcon(QIcon(buttonIcon));
-        button->setIconSize(QSize(24, 24)); // 根据需要调整图标大小
+        button->setObjectName("thirdLevelBtn_" + buttonId); // 设置带前缀的对象名称
+
+        //设置按钮的样式,调整图标和文本的位置
         button->setStyleSheet(R"(
-            QPushButton {
-                position: absolute;
-                width: 158px;
-                height: 48px;
-                border-radius: 6px;
-                opacity: 1;
-                background: #CBD0FF;
-                text-align: center;
-            }
-            QPushButton:hover {
-                background: #A9B4FF; /* 鼠标悬停效果 */
-            }
-        )");
+                    QPushButton {
+                        position: absolute;
+                        border-radius: 6px;
+                        opacity: 1;
+                        background: #CBD0FF;
+                        border: none;
+                    }
+                    QPushButton:hover {
+                        background-color: #A9B4FF; /* 鼠标悬停效果 */
+                    }
+                )");
 
-        // 设置按钮的位置
+        // 设置按钮的位置和大小
         int x = 16;
         int y = 245 + i * (48 + 13); // 第一个按钮 y=245,后续每个按钮间隔13px
         button->setGeometry(x, y, 158, 48);
 
-        // 设置按钮的可见性
-        button->setVisible(isEnabled);
+        // 设置按钮的可见性,根据 "enabled" 字段显示或隐藏按钮
+        button->setVisible(isEnabled); // 如果 isEnabled 为 false,则隐藏按钮
+
+        // 创建图标标签
+        QLabel *iconLabel = new QLabel(button);
+        iconLabel->setPixmap(QIcon(buttonIcon).pixmap(16, 16));
+        iconLabel->setGeometry(10, 16, 16, 16); // 图标距离左边10px,顶部16px
+        iconLabel->setFixedSize(16, 16);
+        iconLabel->setStyleSheet("background-color: transparent;");
+        iconLabel->setVisible(isEnabled); // 根据按钮的可见性设置图标的可见性
+
+        // 创建文本标签
+        QLabel *textLabel = new QLabel(buttonText, button);
+        textLabel->setGeometry(34, 0, 90, 48); // 文本距离左边34px,占用剩余空间
+        textLabel->setWordWrap(true); // 允许换行
+        textLabel->setAlignment(Qt::AlignLeft | Qt::AlignVCenter);
+        //textLabel->setStyleSheet("background-color: transparent;");
+        textLabel->setStyleSheet(R"(
+            QLabel {
+             background: transparent;
+             font-family: "思源黑体";
+             font-size: 14px;
+             font-weight: 500;
+            color: #4E51CE;
+                    }
+            )");
 
-        // 如果按钮不启用,可以选择禁用它
-        if (!isEnabled) {
-            button->setEnabled(false);
-        }
+        textLabel->setVisible(isEnabled); // 根据按钮的可见性设置文本的可见性
+
+        // 创建 F1-F12 标签
+        QString fLabelText = QString("F%1").arg(i + 1); // F1, F2, ..., F12
+        QLabel *fLabel = new QLabel(fLabelText, button);
+        fLabel->setFixedSize(21, 16); // 设置大小为21x16
+        fLabel->setAlignment(Qt::AlignCenter);
+        fLabel->setStyleSheet(R"(
+            QLabel {
+                background-color: transparent;
+                color: #2A7ED8;
+                font-size: 12px;
+                font-weight: bold;
+            }
+        )");
 
-        button->show();
+        // 设置标签的位置
+        int fX = 134;
+        int fY = 2;
+        fLabel->setGeometry(fX, fY, 14, 16);
+        fLabel->setVisible(isEnabled); // 根据按钮的可见性设置标签的可见性
 
         qDebug() << "创建按钮:" << buttonId << ", 文本:" << buttonText << ", 图标:" << buttonIcon << ", 启用:" << isEnabled;
     }
 }
 
 
-
 void TreeViewManager::displayThirdLevelFields(const QJsonObject &fields)
 {
     if (fields.isEmpty()) {

+ 3 - 1
OriginalWnd/treeviewmanager.h

@@ -91,6 +91,8 @@ private:
 
     QTreeView *treeViewDown;                     // 完整目录树
 
+    OriginalWnd *m_originalWnd; // 声明指向 OriginalWnd 的指针
+
     QStandardItemModel *downModel;               // 树状结构模型
 
     QWidget *navigationWidget;                   // 动态导航栏窗口
@@ -105,7 +107,7 @@ private:
     QPushButton *buttonLeft;     // 进入下一级目录
     QPushButton *buttonRight;    // 返回上一级目录
 
-    OriginalWnd *m_originalWnd; // 声明指向 OriginalWnd 的指针
+
     QJsonDocument m_jsonDoc;    // 存储已加载的 JSON 文档
 
     // 用于存储选中路径和展开路径

+ 26 - 34
config/menu_config.json

@@ -82,24 +82,16 @@
         "buttons": [
           { "id": "pb_one", "icon": ":/images/pb_arrow.png", "text": "Run 1 die", "enabled": true },
           { "id": "pb_two", "icon": ":/images/pb_book.png", "text": "Run 1 strip", "enabled": true },
-          { "id": "pb_three", "icon": ":/images/pb_Extensions.png", "text": "Learn pick
-              Z touch height", "enabled": false },
-          { "id": "pb_four", "icon": ":/images/pb_key.png", "text": "Complete
-              all strips", "enabled": true },
+          { "id": "pb_three", "icon": ":/images/pb_Extensions.png", "text": "Learn pick Z touch", "enabled": false },
+          { "id": "pb_four", "icon": ":/images/pb_key.png", "text": "Complete all strips", "enabled": true },
           { "id": "pb_five", "icon": ":/images/pb_mouse.png", "text": "Align die", "enabled": true },
           { "id": "pb_six", "icon": ":/images/pb_play.png", "text": "Pick die", "enabled": false },
-          { "id": "pb_seven", "icon": ":/images/pb_remove.png", "text": "Epoxy and
-              die corrections..", "enabled": true },
-          { "id": "pb_eight", "icon": ":/images/pb_Target.png", "text": "Remove die
-              from bond head", "enabled": true },
-          { "id": "pb_nine", "icon": ":/images/pb_three.png", "text": "Advanced
-              process modes...", "enabled": false },
-          { "id": "pb_ten", "icon": ":/images/pb_two.png", "text": "Move BA
-              to pick", "enabled": true },
-          { "id": "pb_eleven", "icon": ":/images/pb_arrow.png", "text": "Move BH
-              to pick", "enabled": true },
-          { "id": "pb_twelve", "icon": ":/images/pb_book.png", "text": "Toggle
-              soft keys", "enabled": true }
+          { "id": "pb_seven", "icon": ":/images/pb_remove.png", "text": "Epoxy and die ", "enabled": false },
+          { "id": "pb_eight", "icon": ":/images/pb_Target.png", "text": "Remove die from head", "enabled": true },
+          { "id": "pb_nine", "icon": ":/images/pb_three.png", "text": "Advanced process modes", "enabled": false },
+          { "id": "pb_ten", "icon": ":/images/pb_two.png", "text": "Move BA to pick", "enabled": true },
+          { "id": "pb_eleven", "icon": ":/images/pb_arrow.png", "text": "Move BH to pick", "enabled": false },
+          { "id": "pb_twelve", "icon": ":/images/pb_book.png", "text": "Toggle soft keys", "enabled": true }
         ]
       },
       "三级目录2": {
@@ -153,17 +145,17 @@
           "options": ["下拉框1", "下拉框2", "下拉框3"]
         },
         "buttons": [
-          { "id": "pb_one", "icon": ":/images/pb_arrow.png", "text": "按钮一", "enabled": true },
+          { "id": "pb_one", "icon": ":/images/pb_arrow.png", "text": "按钮一", "enabled": false },
           { "id": "pb_two", "icon": ":/images/pb_book.png", "text": "按钮二", "enabled": true },
           { "id": "pb_three", "icon": ":/images/pb_Extensions.png", "text": "按钮三", "enabled": false },
           { "id": "pb_four", "icon": ":/images/pb_key.png", "text": "按钮四", "enabled": true },
-          { "id": "pb_five", "icon": ":/images/pb_mouse.png", "text": "按钮五", "enabled": true },
+          { "id": "pb_five", "icon": ":/images/pb_mouse.png", "text": "按钮五", "enabled": false },
           { "id": "pb_six", "icon": ":/images/pb_play.png", "text": "按钮六", "enabled": false },
-          { "id": "pb_seven", "icon": ":/images/pb_remove.png", "text": "按钮七", "enabled": true },
+          { "id": "pb_seven", "icon": ":/images/pb_remove.png", "text": "按钮七", "enabled": false },
           { "id": "pb_eight", "icon": ":/images/pb_Target.png", "text": "按钮八", "enabled": true },
           { "id": "pb_nine", "icon": ":/images/pb_three.png", "text": "按钮九", "enabled": false },
           { "id": "pb_ten", "icon": ":/images/pb_two.png", "text": "按钮十", "enabled": true },
-          { "id": "pb_eleven", "icon": ":/images/pb_arrow.png", "text": "按钮十一", "enabled": true },
+          { "id": "pb_eleven", "icon": ":/images/pb_arrow.png", "text": "按钮十一", "enabled": false },
           { "id": "pb_twelve", "icon": ":/images/pb_book.png", "text": "按钮十二", "enabled": true }
         ]
       }
@@ -220,17 +212,17 @@
           "options": ["下拉框1", "下拉框2", "下拉框3"]
         },
         "buttons": [
-          { "id": "pb_one", "icon": ":/images/pb_arrow.png", "text": "按钮一", "enabled": true },
+          { "id": "pb_one", "icon": ":/images/pb_arrow.png", "text": "按钮一", "enabled": false },
           { "id": "pb_two", "icon": ":/images/pb_book.png", "text": "按钮二", "enabled": true },
           { "id": "pb_three", "icon": ":/images/pb_Extensions.png", "text": "按钮三", "enabled": false },
-          { "id": "pb_four", "icon": ":/images/pb_key.png", "text": "按钮四", "enabled": true },
-          { "id": "pb_five", "icon": ":/images/pb_mouse.png", "text": "按钮五", "enabled": true },
+          { "id": "pb_four", "icon": ":/images/pb_key.png", "text": "按钮四", "enabled": false },
+          { "id": "pb_five", "icon": ":/images/pb_mouse.png", "text": "按钮五", "enabled": false },
           { "id": "pb_six", "icon": ":/images/pb_play.png", "text": "按钮六", "enabled": false },
           { "id": "pb_seven", "icon": ":/images/pb_remove.png", "text": "按钮七", "enabled": true },
           { "id": "pb_eight", "icon": ":/images/pb_Target.png", "text": "按钮八", "enabled": true },
           { "id": "pb_nine", "icon": ":/images/pb_three.png", "text": "按钮九", "enabled": false },
           { "id": "pb_ten", "icon": ":/images/pb_two.png", "text": "按钮十", "enabled": true },
-          { "id": "pb_eleven", "icon": ":/images/pb_arrow.png", "text": "按钮十一", "enabled": true },
+          { "id": "pb_eleven", "icon": ":/images/pb_arrow.png", "text": "按钮十一", "enabled": false },
           { "id": "pb_twelve", "icon": ":/images/pb_book.png", "text": "按钮十二", "enabled": true }
         ]
       },
@@ -286,12 +278,12 @@
         },
         "buttons": [
           { "id": "pb_one", "icon": ":/images/pb_arrow.png", "text": "按钮一", "enabled": true },
-          { "id": "pb_two", "icon": ":/images/pb_book.png", "text": "按钮二", "enabled": true },
+          { "id": "pb_two", "icon": ":/images/pb_book.png", "text": "按钮二", "enabled": false },
           { "id": "pb_three", "icon": ":/images/pb_Extensions.png", "text": "按钮三", "enabled": false },
           { "id": "pb_four", "icon": ":/images/pb_key.png", "text": "按钮四", "enabled": true },
-          { "id": "pb_five", "icon": ":/images/pb_mouse.png", "text": "按钮五", "enabled": true },
+          { "id": "pb_five", "icon": ":/images/pb_mouse.png", "text": "按钮五", "enabled": false },
           { "id": "pb_six", "icon": ":/images/pb_play.png", "text": "按钮六", "enabled": false },
-          { "id": "pb_seven", "icon": ":/images/pb_remove.png", "text": "按钮七", "enabled": true },
+          { "id": "pb_seven", "icon": ":/images/pb_remove.png", "text": "按钮七", "enabled": false },
           { "id": "pb_eight", "icon": ":/images/pb_Target.png", "text": "按钮八", "enabled": true },
           { "id": "pb_nine", "icon": ":/images/pb_three.png", "text": "按钮九", "enabled": false },
           { "id": "pb_ten", "icon": ":/images/pb_two.png", "text": "按钮十", "enabled": true },
@@ -382,17 +374,17 @@
           "timeout": 180
         },
         "buttons": [
-          { "id": "pb_one", "icon": ":/images/pb_arrow.png", "text": "按钮一", "enabled": true },
+          { "id": "pb_one", "icon": ":/images/pb_arrow.png", "text": "按钮一", "enabled": false },
           { "id": "pb_two", "icon": ":/images/pb_book.png", "text": "按钮二", "enabled": true },
           { "id": "pb_three", "icon": ":/images/pb_Extensions.png", "text": "按钮三", "enabled": false },
           { "id": "pb_four", "icon": ":/images/pb_key.png", "text": "按钮四", "enabled": true },
-          { "id": "pb_five", "icon": ":/images/pb_mouse.png", "text": "按钮五", "enabled": true },
+          { "id": "pb_five", "icon": ":/images/pb_mouse.png", "text": "按钮五", "enabled": false },
           { "id": "pb_six", "icon": ":/images/pb_play.png", "text": "按钮六", "enabled": false },
-          { "id": "pb_seven", "icon": ":/images/pb_remove.png", "text": "按钮七", "enabled": true },
+          { "id": "pb_seven", "icon": ":/images/pb_remove.png", "text": "按钮七", "enabled": false },
           { "id": "pb_eight", "icon": ":/images/pb_Target.png", "text": "按钮八", "enabled": true },
           { "id": "pb_nine", "icon": ":/images/pb_three.png", "text": "按钮九", "enabled": false },
           { "id": "pb_ten", "icon": ":/images/pb_two.png", "text": "按钮十", "enabled": true },
-          { "id": "pb_eleven", "icon": ":/images/pb_arrow.png", "text": "按钮十一", "enabled": true },
+          { "id": "pb_eleven", "icon": ":/images/pb_arrow.png", "text": "按钮十一", "enabled": false },
           { "id": "pb_twelve", "icon": ":/images/pb_book.png", "text": "按钮十二", "enabled": true }
         ]
       },
@@ -447,13 +439,13 @@
           "options": ["下拉框1", "下拉框2", "下拉框3"]
         },
         "buttons": [
-          { "id": "pb_one", "icon": ":/images/pb_arrow.png", "text": "按钮一", "enabled": true },
+          { "id": "pb_one", "icon": ":/images/pb_arrow.png", "text": "按钮一", "enabled": false },
           { "id": "pb_two", "icon": ":/images/pb_book.png", "text": "按钮二", "enabled": true },
           { "id": "pb_three", "icon": ":/images/pb_Extensions.png", "text": "按钮三", "enabled": false },
-          { "id": "pb_four", "icon": ":/images/pb_key.png", "text": "按钮四", "enabled": true },
+          { "id": "pb_four", "icon": ":/images/pb_key.png", "text": "按钮四", "enabled": false },
           { "id": "pb_five", "icon": ":/images/pb_mouse.png", "text": "按钮五", "enabled": true },
           { "id": "pb_six", "icon": ":/images/pb_play.png", "text": "按钮六", "enabled": false },
-          { "id": "pb_seven", "icon": ":/images/pb_remove.png", "text": "按钮七", "enabled": true },
+          { "id": "pb_seven", "icon": ":/images/pb_remove.png", "text": "按钮七", "enabled": false },
           { "id": "pb_eight", "icon": ":/images/pb_Target.png", "text": "按钮八", "enabled": true },
           { "id": "pb_nine", "icon": ":/images/pb_three.png", "text": "按钮九", "enabled": false },
           { "id": "pb_ten", "icon": ":/images/pb_two.png", "text": "按钮十", "enabled": true },

+ 6 - 4
project01.pro.user

@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE QtCreatorProject>
-<!-- Written by QtCreator 15.0.0, 2024-12-27T10:53:32. -->
+<!-- Written by QtCreator 15.0.0, 2024-12-27T14:35:02. -->
 <qtcreator>
  <data>
   <variable>EnvironmentId</variable>
@@ -106,7 +106,7 @@
      <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
       <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
       <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
-      <value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
+      <value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">true</value>
       <valuelist type="QVariantList" key="QtProjectManager.QMakeBuildStep.SelectedAbis"/>
      </valuemap>
      <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
@@ -246,11 +246,13 @@
     <value type="bool" key="PE.EnvironmentAspect.PrintOnRun">false</value>
     <value type="QString" key="PerfRecordArgsId">-e cpu-cycles --call-graph &quot;dwarf,4096&quot; -F 250</value>
     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
-    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.CustomExecutableRunConfiguration</value>
-    <value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey"></value>
+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4RunConfiguration:</value>
+    <value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey">C:/Users/David/Desktop/dev/die-bonder-ui/project01.pro</value>
     <value type="bool" key="ProjectExplorer.RunConfiguration.Customized">false</value>
     <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
+    <value type="bool" key="RunConfiguration.UseLibrarySearchPath">true</value>
     <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
+    <value type="QString" key="RunConfiguration.WorkingDirectory.default">C:/Users/David/Desktop/22/die-bonder-ui/build/Desktop_Qt_5_15_2_MinGW_32_bit-Debug</value>
    </valuemap>
    <value type="qlonglong" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
   </valuemap>

+ 10 - 0
res.qrc

@@ -65,5 +65,15 @@
         <file>images/light/pen.png</file>
         <file>images/home_NotSelecte.png</file>
         <file>images/home_selected.png</file>
+        <file>images/pb_arrow.png</file>
+        <file>images/pb_book.png</file>
+        <file>images/pb_Extensions.png</file>
+        <file>images/pb_key.png</file>
+        <file>images/pb_mouse.png</file>
+        <file>images/pb_play.png</file>
+        <file>images/pb_remove.png</file>
+        <file>images/pb_Target.png</file>
+        <file>images/pb_three.png</file>
+        <file>images/pb_two.png</file>
     </qresource>
 </RCC>