Browse Source

添加灯光和窗口绑定

Change-Id: I4efa7277d73c46bfe76d8b56ad964778d2532bed
li_xingqi* 1 month ago
parent
commit
66184766bb

+ 151 - 40
CameraMaterialGroupWnd/Group.cpp

@@ -11,72 +11,76 @@ Group* Group::currentlySelectedGroup = nullptr;
 Group* Group::previouslySelectedBlueGroup = nullptr;
 Group* Group::lastClickedGroup = nullptr;
 int Group::lastClickedIndex = 0;
+int Group::lastSavedIndex = 1;
+
 Group::Group(int Id, const QString& imagePath1, int MaterialWindowType, const QStringList& textList, QWidget* parent)
-    : QWidget(parent), ui(new Ui::Group),currentGroupId(Id) {
+    : QWidget(parent), ui(new Ui::Group), groupId(Id)
+{
     ui->setupUi(this);
 
     QPixmap pixmap1(imagePath1);
     ui->Imagewidget_left->setPixmap(pixmap1);
 
     ui->DatacomboBox->addItems(textList);
-    ui->GroupButton->setStyleSheet(   // 设置样式表
-                           "QPushButton:hover {"
-                           "   background-color: #45a049;"  // 悬停时的背景颜色
-                           "}"
-                           "QPushButton:pressed {"
-                           "   background-color: #3e8e41;"  // 点击时的背景颜色
-                           "}"
-                           );
+    ui->GroupButton->setStyleSheet(
+        "QPushButton:hover {"
+        "   background-color: #45a049;"
+        "}"
+        "QPushButton:pressed {"
+        "   background-color: #3e8e41;"
+        "}"
+        );
     ui->Imagewidget_left->setProperty("groupId", Id);
     ui->Imagewidget_right->setProperty("groupId", Id);
 
-    if (MaterialWindowType == 1) { // 判断物料窗口类型,转到处理函数
+    if (MaterialWindowType == 1) {
         wafer = new Wafer(0, ui->Imagewidget_right);
         WaferWidget();
     } else if (MaterialWindowType == 2) {
-		waffle = new Waffle(0, ui->Imagewidget_right);
+        waffle = new Waffle(0, ui->Imagewidget_right);
         WaffleWidget();
     } else if (MaterialWindowType == 3) {
-		materialbox = new MaterialBox(0, ui->Imagewidget_right);
+        materialbox = new MaterialBox(0, ui->Imagewidget_right);
         MaterialBoxWidget();
     }
 
-    // 存储参数到 QSettings
     saveGroupSettings(Id, imagePath1, MaterialWindowType, textList);
-    connect(ui->GroupButton,&QPushButton::clicked,this,&Group::onclickbutton);
-    connect(ui->DatacomboBox, QOverload<int>::of(&QComboBox::currentIndexChanged),
-            this, &Group::on_DatacomboBox_currentIndexChanged);
+    connect(ui->GroupButton, &QPushButton::clicked, this, &Group::onclickbutton);
     initForm();
-	connect(this, &Group::groupSelected, this, &Group::onGroupSelected);
+
+    connect(this, &Group::groupSelected, this, &Group::onGroupSelected);
 }
 
-Group::~Group() {
+Group::~Group()
+{
     delete ui;
 }
 
-void Group::initForm() {
+void Group::initForm()
+{
     ui->Imagewidget_left->installEventFilter(this);
     ui->Imagewidget_right->installEventFilter(this);
 }
 
-bool Group::eventFilter(QObject *obj, QEvent *event) {
+bool Group::eventFilter(QObject *obj, QEvent *event)
+{
     if (event->type() == QEvent::MouseButtonDblClick) {
         QMouseEvent* mouseEvent = static_cast<QMouseEvent*>(event);
         if (mouseEvent->button() == Qt::LeftButton) {
             int groupId = obj->property("groupId").toInt();
             QSettings settings("YourCompany", "YourApplication_");
             settings.setValue("GroupId", groupId);
-			int index = 0;
+            int index = 0;
             if (obj == this->ui->Imagewidget_left) {
-				index = 1;
+                index = 1;
                 settings.setValue("Index", 1);
-				check_selected(1);
+                check_selected(1);
             } else if (obj == this->ui->Imagewidget_right) {
-				index = 2;
+                index = 2;
                 settings.setValue("Index", 2);
-				check_selected(2);
+                check_selected(2);
             }
-			emit groupSelected(this, index);
+            emit groupSelected(this, index);
             return true;
         }
     }
@@ -91,7 +95,9 @@ void Group::check_selected(int index)
         ui->rightBackground->setStyleSheet("border: 2px solid red;");
     }
 }
-void Group::saveGroupSettings(int Id, const QString& imagePath1, int materialWndType, const QStringList& textList) {
+
+void Group::saveGroupSettings(int Id, const QString& imagePath1, int materialWndType, const QStringList& textList)
+{
     QSettings settings("YourOrganization", "YourApplication");
     settings.beginGroup(QString::number(Id));
     settings.setValue("ImagePath1", imagePath1);
@@ -100,8 +106,8 @@ void Group::saveGroupSettings(int Id, const QString& imagePath1, int materialWnd
     settings.endGroup();
 }
 
-// 圆晶
-void Group::WaferWidget() {
+void Group::WaferWidget()
+{
     QVBoxLayout *layout2 = new QVBoxLayout(ui->Imagewidget_right);
     wafer->paintInitFrom(ui->Imagewidget_right);
 
@@ -114,22 +120,18 @@ void Group::WaferWidget() {
     layout2->addWidget(pixmapLabel);
 }
 
-// 华夫盒
-void Group::WaffleWidget() {
+void Group::WaffleWidget()
+{
     QVBoxLayout *layout2 = new QVBoxLayout(ui->Imagewidget_right);
-    waffle = new Waffle(0, ui->Imagewidget_right);
-
     ui->Imagewidget_right->setLayout(layout2);
     ui->Imagewidget_right->setFixedSize(110, 110);
     layout2->setContentsMargins(0, 0, 0, 0);
     layout2->addWidget(waffle);
 }
 
-// 料盒
-void Group::MaterialBoxWidget() {
+void Group::MaterialBoxWidget()
+{
     QVBoxLayout *layout2 = new QVBoxLayout(ui->Imagewidget_right);
-    materialbox = new MaterialBox(0, ui->Imagewidget_right);
-
     ui->Imagewidget_right->setLayout(layout2);
     ui->Imagewidget_right->setFixedSize(110, 110);
     layout2->setContentsMargins(0, 0, 0, 0);
@@ -137,6 +139,9 @@ void Group::MaterialBoxWidget() {
 }
 
 void Group::onclickbutton(){
+    QSettings settings("YourCompany", "YourApplication_Button");
+    settings.setValue("GroupId_button", groupId);
+
     emit send_button_Signal();
 }
 
@@ -151,7 +156,7 @@ void Group::on_DatacomboBox_currentIndexChanged(int index){
 void Group::onGroupSelected(Group* group, int index)
 {
     QSettings settings("OrganizationName__", "ApplicationName__");
-    int lastSavedIndex = settings.value("lastIndex", 1).toInt();
+    int currentLastSavedIndex = settings.value("lastIndex", 1).toInt();
 
     // 清除当前红色边框
     if (currentlySelectedGroup != nullptr) {
@@ -165,10 +170,10 @@ void Group::onGroupSelected(Group* group, int index)
         previouslySelectedBlueGroup->ui->rightBackground->setStyleSheet("");
     }
 
-    if (lastSavedIndex == 1 || lastSavedIndex == 3) {
+    if (currentLastSavedIndex == 1 || currentLastSavedIndex == 3) {
         // 仅当前选中设为红色,蓝色边框清空
         previouslySelectedBlueGroup = nullptr;
-    } else if (lastSavedIndex == 2) {
+    } else if (currentLastSavedIndex == 2) {
         // 当前选中设为红色,上一个选中设为蓝色
         if (lastClickedGroup != nullptr) {
             QString blueBorderStyle = "border: 2px solid blue;";
@@ -201,3 +206,109 @@ void Group::onGroupSelected(Group* group, int index)
     lastClickedIndex = index;
 }
 
+void Group::showEvent(QShowEvent *event) {
+    QWidget::showEvent(event);
+    loadBorderSettings();
+}
+
+void Group::hideEvent(QHideEvent *event) {
+    QWidget::hideEvent(event);
+    saveBorderSettings();  // 保存边框颜色信息
+}
+
+void Group::saveBorderSettings()
+{
+    QSettings settings("YourOrganization", "YourApplication");
+    settings.beginGroup(QString::number(groupId));
+
+    QString leftStyle = ui->leftBackground->styleSheet();
+    if (leftStyle.contains("blue", Qt::CaseInsensitive)) {
+        leftStyle = ""; // 清除样式
+        // 记录该边框信息
+        recordBorderInfo(groupId, "Left");
+    }
+    settings.setValue("LeftBorderStyle", leftStyle);
+
+    QString rightStyle = ui->rightBackground->styleSheet();
+    if (rightStyle.contains("blue", Qt::CaseInsensitive)) {
+        rightStyle = ""; // 清除样式
+        // 记录该边框信息
+        recordBorderInfo(groupId, "Right");
+    }
+    settings.setValue("RightBorderStyle", rightStyle);
+
+    settings.setValue("LastClickedIndex", lastClickedIndex);
+    settings.setValue("LastSavedIndex", lastSavedIndex);
+
+    if (currentlySelectedGroup == this) {
+        settings.setValue("IsCurrentlySelected", true);
+    } else {
+        settings.setValue("IsCurrentlySelected", false);
+    }
+
+    settings.endGroup();
+}
+
+void Group::recordBorderInfo(int groupId, const QString& side)
+{
+    QSettings settings("YourOrganization", "YourApplication");
+    settings.beginGroup("ModifiedBorders");
+    QString key = QString("%1_%2").arg(groupId).arg(side);
+    settings.setValue(key, true);
+    settings.endGroup();
+}
+
+void Group::loadBorderSettings()
+{
+    QSettings settings("YourOrganization", "YourApplication");
+    settings.beginGroup(QString::number(groupId));
+
+    QString leftStyle = settings.value("LeftBorderStyle", "").toString();
+    QString rightStyle = settings.value("RightBorderStyle", "").toString();
+    lastClickedIndex = settings.value("LastClickedIndex", 0).toInt();
+    lastSavedIndex = settings.value("LastSavedIndex", 1).toInt();
+    bool isCurrentlySelected = settings.value("IsCurrentlySelected", false).toBool();
+
+
+    QSettings settings2("OrganizationName__", "ApplicationName__");
+    int Index = settings2.value("lastIndex", 1).toInt();
+
+    if (Index == 2) {
+        QSettings borderInfoSettings("YourOrganization", "YourApplication");
+        borderInfoSettings.beginGroup("ModifiedBorders");
+        QString leftKey = QString("%1_Left").arg(groupId);
+        QString rightKey = QString("%1_Right").arg(groupId);
+
+        // 检查左边框是否需要还原
+        if (borderInfoSettings.contains(leftKey)) {
+            leftStyle = getBlueBorderStyle();
+            borderInfoSettings.remove(leftKey); // 移除记录,避免下次重复处理
+        }
+        // 检查右边框是否需要还原
+        if (borderInfoSettings.contains(rightKey)) {
+            rightStyle = getBlueBorderStyle();
+            borderInfoSettings.remove(rightKey);
+        }
+        borderInfoSettings.endGroup();
+    }
+
+    ui->leftBackground->setStyleSheet(leftStyle);
+    ui->rightBackground->setStyleSheet(rightStyle);
+
+    if (isCurrentlySelected) {
+        currentlySelectedGroup = this;
+        if (leftStyle.contains("red")) {
+            lastClickedIndex = 1;
+        } else if (rightStyle.contains("red")) {
+            lastClickedIndex = 2;
+        }
+    }
+
+    settings.endGroup();
+}
+
+QString Group::getBlueBorderStyle()
+{
+    static const QString blueBorderStyle = "border: 2px solid blue;";
+    return blueBorderStyle;
+}

+ 9 - 4
CameraMaterialGroupWnd/Group.h

@@ -23,19 +23,23 @@ public:
     void initForm();
     bool eventFilter(QObject *obj, QEvent *event);
     void saveGroupSettings(int Id, const QString& imagePath1, int materialWndType, const QStringList& textList);
-	void saveBorderSettings();  // 新增:保存边框颜色信息
+    void saveBorderSettings();  // 新增:保存边框颜色信息
     void loadBorderSettings();  // 新增:加载边框颜色信息
+    void recordBorderInfo(int groupId, const QString& side);
+    QString getBlueBorderStyle();
     void setDatacomboBox(int index);
 
 signals:
     void send_button_Signal();
     void send_ComboBox_singal(int groupId,int index);
-	void groupSelected(Group* group, int index);
+    void groupSelected(Group* group, int index);
 public slots:
     void onclickbutton();
     void on_DatacomboBox_currentIndexChanged(int index);
-	void onGroupSelected(Group* group, int index);
+    void onGroupSelected(Group* group, int index);
 protected:
+    void showEvent(QShowEvent *event) override;
+    void hideEvent(QHideEvent *event) override;
     void check_selected(int index);
     void WaferWidget(); // 圆晶
     void WaffleWidget(); // 华夫盒
@@ -47,10 +51,11 @@ private:
     Wafer *wafer; // 声明Wafer指针
     Waffle *waffle; // 声明Waffle指针
     MaterialBox *materialbox; // 声明materialbox指针
-	static Group* currentlySelectedGroup; // 当前选中(红色边框)的实例
+    static Group* currentlySelectedGroup; // 当前选中(红色边框)的实例
     static Group* previouslySelectedBlueGroup; // 上一次选中且边框为蓝色的实例
     static Group* lastClickedGroup; // 上一次点击的实例
     static int lastClickedIndex; // 上一次点击的索引
+    static int lastSavedIndex; // 上次保存的索引
     int groupId;  // 新增:记录当前 Group 的 ID
 };
 

+ 136 - 13
OriginalWnd/MainAndSecondaryCamerasWnd.cpp

@@ -20,10 +20,13 @@ MainAndSecondaryCamerasWnd::MainAndSecondaryCamerasWnd(QWidget *parent)
     lasttextList = settings.value("LasttextList").toStringList();
     lastLastRightPixmap = settings.value("LastLastRightPixmap").value<QPixmap>();
     lastLasttextList = settings.value("LastLasttextList").toStringList();
+    lastLastIndex = settings.value("LastLastIndex", 0).toInt();
+    lastLastGroupId = settings.value("LastLastGroupId", 0).toInt();
     settings.endGroup();
 
     initFrom();
     isShow = true;
+    isShow_L = true;
 }
 
 MainAndSecondaryCamerasWnd::~MainAndSecondaryCamerasWnd()
@@ -43,16 +46,27 @@ void MainAndSecondaryCamerasWnd::initFrom()
 
     initSliders();
     initLineEdits();
-    initProgressBar();
     // 连接 QSlider 的 valueChanged 信号到 QProgressBar 的 setValue 槽
     connect(ui->RedLightverticalSlider_2, &QSlider::valueChanged, ui->RedLightprogressBar_2, &QProgressBar::setValue);
     connect(ui->BlueLightverticalSlider, &QSlider::valueChanged, ui->BlueLightprogressBar_2, &QProgressBar::setValue);
     connect(ui->GreenLightverticalSlider_5, &QSlider::valueChanged, ui->GreenLightprogressBar_5, &QProgressBar::setValue);
     connect(ui->DotLightverticalSlider_2, &QSlider::valueChanged, ui->DotLightprogressBar_2, &QProgressBar::setValue);
+
+    connect(ui->RedLightverticalSlider_L, &QSlider::valueChanged, ui->RedLightprogressBar_L, &QProgressBar::setValue);
+    connect(ui->BlueLightverticalSlider_L, &QSlider::valueChanged, ui->BlueLightprogressBar_L, &QProgressBar::setValue);
+    connect(ui->GreenLightverticalSlider_L, &QSlider::valueChanged, ui->GreenLightprogressBar_L, &QProgressBar::setValue);
+    connect(ui->DotLightverticalSlider_L, &QSlider::valueChanged, ui->DotLightprogressBar_L, &QProgressBar::setValue);
+
     connectSliderAndLineEdit(ui->RedLightverticalSlider_2, ui->RedLightlineEdit_2);
     connectSliderAndLineEdit(ui->GreenLightverticalSlider_5, ui->GreenLightlineEdit_5);
     connectSliderAndLineEdit(ui->BlueLightverticalSlider, ui->BlueLightlineEdit_2);
     connectSliderAndLineEdit(ui->DotLightverticalSlider_2, ui->DotLightlineEdit_2);
+
+    connectSliderAndLineEdit(ui->RedLightverticalSlider_L, ui->RedLightlineEdit_L);
+    connectSliderAndLineEdit(ui->GreenLightverticalSlider_L, ui->GreenLightlineEdit_L);
+    connectSliderAndLineEdit(ui->BlueLightverticalSlider_L, ui->BlueLightlineEdit_L);
+    connectSliderAndLineEdit(ui->DotLightverticalSlider_L, ui->DotLightlineEdit_L);
+
     connect(ui->LeftOperatewidget,&ImageWidget::sendDoubleClicksignal,this,&MainAndSecondaryCamerasWnd::handleDoubleClick);
     connect(ui->RightOperatewidget,&ImageWidget::sendDoubleClicksignal,this,&MainAndSecondaryCamerasWnd::handleDoubleClick);
     QWidget *viewport = ui->scrollArea->viewport();
@@ -70,7 +84,7 @@ void MainAndSecondaryCamerasWnd::initFrom()
         int num = numbers[i];
         CameraImageHandler* manager = new CameraImageHandler(num);
         Group* widget = manager->getGroup();
-        connect(widget,&Group::send_button_Signal,this,&MainAndSecondaryCamerasWnd::showAndHide);
+        connect(widget,&Group::send_button_Signal,this,&MainAndSecondaryCamerasWnd::CheckIs);
         if (widget != nullptr) {
             mainLayout->addWidget(widget);
             widgets.append(widget);
@@ -106,10 +120,12 @@ void MainAndSecondaryCamerasWnd::initFrom()
 
 void MainAndSecondaryCamerasWnd::initSliders() {
     QList<QSlider*> sliders = {
-    ui->RedLightverticalSlider_2, ui->GreenLightverticalSlider_5,
-    ui->BlueLightverticalSlider, ui->DotLightverticalSlider_2
+        ui->RedLightverticalSlider_2, ui->GreenLightverticalSlider_5,
+        ui->BlueLightverticalSlider, ui->DotLightverticalSlider_2,
+        ui->RedLightverticalSlider_L, ui->GreenLightverticalSlider_L,
+        ui->BlueLightverticalSlider_L, ui->DotLightverticalSlider_L
     };
-    QList<int> initialValues = { 22, 11, 0, 0};
+    QList<int> initialValues = {22, 11, 0, 0, 22, 11, 0, 0};
 
     for (int i = 0; i < sliders.size(); ++i) {
         sliders[i]->setMinimum(0);
@@ -118,10 +134,12 @@ void MainAndSecondaryCamerasWnd::initSliders() {
     }
 }
 void MainAndSecondaryCamerasWnd::initProgressBar(){
-    QList<int> initialValues = {22, 11, 1, 1};
+    QList<int> initialValues = {22, 11, 0, 0, 22, 11, 0, 0};
     QList<QProgressBar*> progressBar = {
         ui->RedLightprogressBar_2,ui->GreenLightprogressBar_5,
-        ui->BlueLightprogressBar_2,ui->DotLightprogressBar_2
+        ui->BlueLightprogressBar_2,ui->DotLightprogressBar_2,
+        ui->RedLightprogressBar_L,ui->GreenLightprogressBar_L,
+        ui->BlueLightprogressBar_L,ui->DotLightprogressBar_L
     };
     for (int i = 0; i < progressBar.size(); ++i) {
         progressBar[i]->setMinimum(0);
@@ -152,7 +170,9 @@ void MainAndSecondaryCamerasWnd::handleDoubleClick(){
 void MainAndSecondaryCamerasWnd::initLineEdits() {
     QList<QLineEdit*> lineEdits = {
         ui->RedLightlineEdit_2, ui->GreenLightlineEdit_5,
-        ui->BlueLightlineEdit_2, ui->DotLightlineEdit_2
+        ui->BlueLightlineEdit_2, ui->DotLightlineEdit_2,
+        ui->RedLightlineEdit_L, ui->GreenLightlineEdit_L,
+        ui->BlueLightlineEdit_L, ui->DotLightlineEdit_L
     };
 
     for (QLineEdit* lineEdit : lineEdits) {
@@ -217,12 +237,16 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
     QPixmap newPixmap;
 
     if (Index == 1) {
+        isShow = true;
+
         newPixmap = QPixmap(imagePath1);
         clearLayout(1);
 
         if (lastIndex == 1) {
             clearLayout(0);
+            isShow_L = true;
         } else if (lastIndex == 2) {
+            isShow_L = false;
             clearLayout(0);
             if (lastGroupId == 1) {
                 WaferWidget(0);
@@ -233,11 +257,17 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
             }
         }
     } else if (Index == 2) {
+        isShow = false;
         clearLayout(1);
         clearLayout(0);
 
+        if (lastIndex == 1) {
+            isShow_L = true;
+        }
+
         if (materialWndType == 1) {
             if (lastIndex == 2) {
+                isShow_L = false;
                 if (lastGroupId == 1) {
                     WaferWidget(0);
                 } else if (lastGroupId == 2) {
@@ -249,6 +279,7 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
             WaferWidget(1);
         } else if (materialWndType == 2) {
             if (lastIndex == 2) {
+                isShow_L = false;
                 if (lastGroupId == 1) {
                     WaferWidget(0);
                 } else if (lastGroupId == 2) {
@@ -260,6 +291,7 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
             WaffleWidget(1);
         } else if (materialWndType == 3) {
             if (lastIndex == 2) {
+                isShow_L = false;
                 if (lastGroupId == 1) {
                     WaferWidget(0);
                 } else if (lastGroupId == 2) {
@@ -272,6 +304,9 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
         }
     }
 
+    showAndHide();
+    showAndHide_L();
+
     QSettings settings2("YourOrganization", "YourApplication_lastWndType");
     settings2.setValue("LastWndType", lastIndex);
     settings2.setValue("LastGroup", lastGroupId);
@@ -301,6 +336,8 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
     settings.setValue("LasttextList", lasttextList);
     settings.setValue("LastLastRightPixmap", lastLastRightPixmap);
     settings.setValue("LastLasttextList", lastLasttextList);
+    settings.setValue("LastLastIndex", lastLastIndex);
+    settings.setValue("LastLastGroupId", lastLastGroupId);
     settings.endGroup();
 
     if (isUpdatingSettings) {
@@ -308,6 +345,8 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
         lastLasttextList = lasttextList;
         lastRightPixmap = scaledPixmap_right;
         lasttextList = textList;
+        lastLastIndex = lastIndex;
+        lastLastGroupId = lastGroupId;
     }
 }
 
@@ -509,6 +548,7 @@ void MainAndSecondaryCamerasWnd::wheelEvent(QWheelEvent *event)
         QString percentageStr = QString::number((int)percentage);
         ui->Rightlabel_Percentage->setText(QString("%1%").arg(percentageStr));
     }
+
     if (ui->scrollArea->rect().contains(ui->scrollArea->mapFromGlobal(event->globalPos()))) {
         // 获取 QScrollArea 的横向滚动条
         QScrollBar *scrollBar = ui->scrollArea->horizontalScrollBar();
@@ -519,6 +559,7 @@ void MainAndSecondaryCamerasWnd::wheelEvent(QWheelEvent *event)
             scrollBar->setValue(scrollBar->value() + 50);
         }
     }
+
     QMainWindow::wheelEvent(event);
 }
 
@@ -535,12 +576,42 @@ void MainAndSecondaryCamerasWnd::hideEvent(QHideEvent *event) {
     QMainWindow::hideEvent(event);
 }
 
-void MainAndSecondaryCamerasWnd::showAndHide(){
-    if(isShow == true){
-        isShow = false;
-    }else{
-        isShow = true;
+void MainAndSecondaryCamerasWnd::CheckIs()
+{
+    QSettings settings("YourCompany", "YourApplication_Button");
+    int groupId = settings.value("GroupId_button", 0).toInt();
+
+    if (groupId == lastGroupId) {
+        if (lastIndex == 1 ) {
+            if(isShow == true){
+                isShow = false;
+            } else {
+                isShow = true;
+            }
+        }
+        if (lastLastIndex == 1 && groupId == lastLastGroupId) {
+            if(isShow_L == true){
+                isShow_L = false;
+            } else {
+                isShow_L = true;
+            }
+        }
+        showAndHide();
+        showAndHide_L();
+
+    } else if (groupId == lastLastGroupId) {
+        if (lastLastIndex == 1) {
+            if(isShow_L == true){
+                isShow_L = false;
+            } else {
+                isShow_L = true;
+            }
+        }
+        showAndHide_L();
     }
+}
+
+void MainAndSecondaryCamerasWnd::showAndHide(){
     QList<QLineEdit*> lineEdits = {
         ui->RedLightlineEdit_2, ui->GreenLightlineEdit_5,
         ui->BlueLightlineEdit_2, ui->DotLightlineEdit_2
@@ -591,3 +662,55 @@ void MainAndSecondaryCamerasWnd::showAndHide(){
         ui->GreenLightlabel_5->hide();
     }
 }
+
+void MainAndSecondaryCamerasWnd::showAndHide_L(){
+    QList<QLineEdit*> lineEdits = {
+        ui->RedLightlineEdit_L, ui->GreenLightlineEdit_L,
+        ui->BlueLightlineEdit_L, ui->DotLightlineEdit_L
+    };
+    QList<QSlider*> sliders = {
+        ui->RedLightverticalSlider_L, ui->GreenLightverticalSlider_L,
+        ui->BlueLightverticalSlider_L, ui->DotLightverticalSlider_L
+    };
+    QList<QProgressBar*> progressBar = {
+        ui->RedLightprogressBar_L,ui->GreenLightprogressBar_L,
+        ui->BlueLightprogressBar_L,ui->DotLightprogressBar_L
+    };
+    if(isShow_L == true){
+        for (QLineEdit* lineEdit : lineEdits) {
+            lineEdit->show();
+        }
+        for (int i = 0; i < sliders.size(); ++i) {
+            sliders[i]->show();
+        }
+        for (int i = 0; i < progressBar.size(); ++i) {
+            progressBar[i]->show();
+        }
+        ui->BlueLight_L->show();
+        ui->RedLight_L->show();
+        ui->DotLight_L->show();
+        ui->GreenLight_L->show();/*
+        ui->BlueLightlabel_2->show();
+        ui->RedLightlabel_2->show();
+        ui->DotLightlabel_2->show();
+        ui->GreenLightlabel_5->show();*/
+    }else{
+        for (QLineEdit* lineEdit : lineEdits) {
+            lineEdit->hide();
+        }
+        for (int i = 0; i < sliders.size(); ++i) {
+            sliders[i]->hide();
+        }
+        for (int i = 0; i < progressBar.size(); ++i) {
+            progressBar[i]->hide();
+        }
+        ui->BlueLight_L->hide();
+        ui->RedLight_L->hide();
+        ui->DotLight_L->hide();
+        ui->GreenLight_L->hide();
+        // ui->BlueLightlabel_2->hide();
+        // ui->RedLightlabel_2->hide();
+        // ui->DotLightlabel_2->hide();
+        // ui->GreenLightlabel_5->hide();
+    }
+}

+ 7 - 0
OriginalWnd/MainAndSecondaryCamerasWnd.h

@@ -25,9 +25,13 @@ public:
     void initLineEdits();
     void initSliders();
     void initProgressBar();
+
 public slots: // 确保这里声明了槽函数
     void handleDoubleClick();
     void showAndHide();
+    void showAndHide_L();
+    void CheckIs();
+
 protected:
     void wheelEvent(QWheelEvent *event)override;
     void loadSettings();
@@ -63,6 +67,8 @@ private:
     qreal Right_scaleFactor;
     int lastGroupId = -1;
     int lastIndex = -1;
+    int lastLastGroupId = -1;
+    int lastLastIndex = -1;
     QPixmap lastRightPixmap;
     QStringList lasttextList;
     QPixmap lastLastRightPixmap;  // 用于存储上一次的 lastRightPixmap
@@ -73,6 +79,7 @@ private:
     Waffle *waffle; // 声明Waffle指针
     MaterialBox *materialbox; // 声明materialbox指针
     bool isShow;
+    bool isShow_L;
 };
 
 #endif // MAINANDSECONDARYCAMERASWND_H

+ 280 - 4
OriginalWnd/MainAndSecondaryCamerasWnd.ui

@@ -526,7 +526,7 @@
       </rect>
      </property>
      <property name="value">
-      <number>24</number>
+      <number>22</number>
      </property>
      <property name="orientation">
       <enum>Qt::Vertical</enum>
@@ -594,7 +594,7 @@
       </rect>
      </property>
      <property name="value">
-      <number>24</number>
+      <number>11</number>
      </property>
      <property name="orientation">
       <enum>Qt::Vertical</enum>
@@ -662,7 +662,7 @@
       </rect>
      </property>
      <property name="value">
-      <number>24</number>
+      <number>0</number>
      </property>
      <property name="orientation">
       <enum>Qt::Vertical</enum>
@@ -730,7 +730,279 @@
       </rect>
      </property>
      <property name="value">
-      <number>24</number>
+      <number>0</number>
+     </property>
+     <property name="orientation">
+      <enum>Qt::Vertical</enum>
+     </property>
+     <property name="format">
+      <string/>
+     </property>
+    </widget>
+   </widget>
+   <widget class="QWidget" name="GreenLight_L" native="true">
+    <property name="geometry">
+     <rect>
+      <x>109</x>
+      <y>845</y>
+      <width>61</width>
+      <height>114</height>
+     </rect>
+    </property>
+    <widget class="QSlider" name="GreenLightverticalSlider_L">
+     <property name="geometry">
+      <rect>
+       <x>10</x>
+       <y>12</y>
+       <width>18</width>
+       <height>56</height>
+      </rect>
+     </property>
+     <property name="orientation">
+      <enum>Qt::Vertical</enum>
+     </property>
+    </widget>
+    <widget class="QLineEdit" name="GreenLightlineEdit_L">
+     <property name="geometry">
+      <rect>
+       <x>10</x>
+       <y>78</y>
+       <width>40</width>
+       <height>24</height>
+      </rect>
+     </property>
+     <property name="text">
+      <string>11</string>
+     </property>
+    </widget>
+    <widget class="QLabel" name="GreenLightlabel_L">
+     <property name="geometry">
+      <rect>
+       <x>36</x>
+       <y>22</y>
+       <width>12</width>
+       <height>34</height>
+      </rect>
+     </property>
+     <property name="text">
+      <string/>
+     </property>
+    </widget>
+    <widget class="QProgressBar" name="GreenLightprogressBar_L">
+     <property name="geometry">
+      <rect>
+       <x>32</x>
+       <y>15</y>
+       <width>18</width>
+       <height>51</height>
+      </rect>
+     </property>
+     <property name="value">
+      <number>11</number>
+     </property>
+     <property name="orientation">
+      <enum>Qt::Vertical</enum>
+     </property>
+     <property name="format">
+      <string/>
+     </property>
+    </widget>
+   </widget>
+   <widget class="QWidget" name="BlueLight_L" native="true">
+    <property name="geometry">
+     <rect>
+      <x>198</x>
+      <y>845</y>
+      <width>61</width>
+      <height>114</height>
+     </rect>
+    </property>
+    <widget class="QSlider" name="BlueLightverticalSlider_L">
+     <property name="geometry">
+      <rect>
+       <x>10</x>
+       <y>12</y>
+       <width>18</width>
+       <height>56</height>
+      </rect>
+     </property>
+     <property name="orientation">
+      <enum>Qt::Vertical</enum>
+     </property>
+    </widget>
+    <widget class="QLineEdit" name="BlueLightlineEdit_L">
+     <property name="geometry">
+      <rect>
+       <x>10</x>
+       <y>78</y>
+       <width>40</width>
+       <height>24</height>
+      </rect>
+     </property>
+     <property name="text">
+      <string>0</string>
+     </property>
+    </widget>
+    <widget class="QLabel" name="BlueLightlabel_L">
+     <property name="geometry">
+      <rect>
+       <x>32</x>
+       <y>22</y>
+       <width>19</width>
+       <height>34</height>
+      </rect>
+     </property>
+     <property name="text">
+      <string/>
+     </property>
+    </widget>
+    <widget class="QProgressBar" name="BlueLightprogressBar_L">
+     <property name="geometry">
+      <rect>
+       <x>32</x>
+       <y>15</y>
+       <width>18</width>
+       <height>51</height>
+      </rect>
+     </property>
+     <property name="value">
+      <number>0</number>
+     </property>
+     <property name="orientation">
+      <enum>Qt::Vertical</enum>
+     </property>
+     <property name="format">
+      <string/>
+     </property>
+    </widget>
+   </widget>
+   <widget class="QWidget" name="RedLight_L" native="true">
+    <property name="geometry">
+     <rect>
+      <x>20</x>
+      <y>845</y>
+      <width>61</width>
+      <height>114</height>
+     </rect>
+    </property>
+    <widget class="QSlider" name="RedLightverticalSlider_L">
+     <property name="geometry">
+      <rect>
+       <x>10</x>
+       <y>12</y>
+       <width>18</width>
+       <height>56</height>
+      </rect>
+     </property>
+     <property name="orientation">
+      <enum>Qt::Vertical</enum>
+     </property>
+    </widget>
+    <widget class="QLineEdit" name="RedLightlineEdit_L">
+     <property name="geometry">
+      <rect>
+       <x>10</x>
+       <y>78</y>
+       <width>40</width>
+       <height>24</height>
+      </rect>
+     </property>
+     <property name="text">
+      <string>22</string>
+     </property>
+    </widget>
+    <widget class="QLabel" name="RedLightlabel_L">
+     <property name="geometry">
+      <rect>
+       <x>39</x>
+       <y>22</y>
+       <width>10</width>
+       <height>34</height>
+      </rect>
+     </property>
+     <property name="text">
+      <string/>
+     </property>
+    </widget>
+    <widget class="QProgressBar" name="RedLightprogressBar_L">
+     <property name="geometry">
+      <rect>
+       <x>32</x>
+       <y>15</y>
+       <width>18</width>
+       <height>51</height>
+      </rect>
+     </property>
+     <property name="value">
+      <number>22</number>
+     </property>
+     <property name="orientation">
+      <enum>Qt::Vertical</enum>
+     </property>
+     <property name="format">
+      <string/>
+     </property>
+    </widget>
+   </widget>
+   <widget class="QWidget" name="DotLight_L" native="true">
+    <property name="geometry">
+     <rect>
+      <x>287</x>
+      <y>845</y>
+      <width>61</width>
+      <height>114</height>
+     </rect>
+    </property>
+    <widget class="QSlider" name="DotLightverticalSlider_L">
+     <property name="geometry">
+      <rect>
+       <x>10</x>
+       <y>12</y>
+       <width>18</width>
+       <height>56</height>
+      </rect>
+     </property>
+     <property name="orientation">
+      <enum>Qt::Vertical</enum>
+     </property>
+    </widget>
+    <widget class="QLineEdit" name="DotLightlineEdit_L">
+     <property name="geometry">
+      <rect>
+       <x>10</x>
+       <y>78</y>
+       <width>40</width>
+       <height>24</height>
+      </rect>
+     </property>
+     <property name="text">
+      <string>0</string>
+     </property>
+    </widget>
+    <widget class="QLabel" name="DotLightlabel_L">
+     <property name="geometry">
+      <rect>
+       <x>32</x>
+       <y>22</y>
+       <width>19</width>
+       <height>34</height>
+      </rect>
+     </property>
+     <property name="text">
+      <string/>
+     </property>
+    </widget>
+    <widget class="QProgressBar" name="DotLightprogressBar_L">
+     <property name="geometry">
+      <rect>
+       <x>32</x>
+       <y>15</y>
+       <width>18</width>
+       <height>51</height>
+      </rect>
+     </property>
+     <property name="value">
+      <number>0</number>
      </property>
      <property name="orientation">
       <enum>Qt::Vertical</enum>
@@ -756,6 +1028,10 @@
    <zorder>GreenLight</zorder>
    <zorder>BlueLight</zorder>
    <zorder>DotLight</zorder>
+   <zorder>GreenLight_L</zorder>
+   <zorder>BlueLight_L</zorder>
+   <zorder>RedLight_L</zorder>
+   <zorder>DotLight_L</zorder>
   </widget>
  </widget>
  <customwidgets>

+ 271 - 0
SBTdie-bonder-ui.pro.user

@@ -0,0 +1,271 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE QtCreatorProject>
+<!-- Written by QtCreator 14.0.2, 2025-02-18T09:21:08. -->
+<qtcreator>
+ <data>
+  <variable>EnvironmentId</variable>
+  <value type="QByteArray">{18ca618c-d623-4564-b8b0-9ee73c53f748}</value>
+ </data>
+ <data>
+  <variable>ProjectExplorer.Project.ActiveTarget</variable>
+  <value type="qlonglong">0</value>
+ </data>
+ <data>
+  <variable>ProjectExplorer.Project.EditorSettings</variable>
+  <valuemap type="QVariantMap">
+   <value type="bool" key="EditorConfiguration.AutoIndent">true</value>
+   <value type="bool" key="EditorConfiguration.AutoSpacesForTabs">false</value>
+   <value type="bool" key="EditorConfiguration.CamelCaseNavigation">true</value>
+   <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.0">
+    <value type="QString" key="language">Cpp</value>
+    <valuemap type="QVariantMap" key="value">
+     <value type="QByteArray" key="CurrentPreferences">CppGlobal</value>
+    </valuemap>
+   </valuemap>
+   <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.1">
+    <value type="QString" key="language">QmlJS</value>
+    <valuemap type="QVariantMap" key="value">
+     <value type="QByteArray" key="CurrentPreferences">QmlJSGlobal</value>
+    </valuemap>
+   </valuemap>
+   <value type="qlonglong" key="EditorConfiguration.CodeStyle.Count">2</value>
+   <value type="QByteArray" key="EditorConfiguration.Codec">UTF-8</value>
+   <value type="bool" key="EditorConfiguration.ConstrainTooltips">false</value>
+   <value type="int" key="EditorConfiguration.IndentSize">4</value>
+   <value type="bool" key="EditorConfiguration.KeyboardTooltips">false</value>
+   <value type="int" key="EditorConfiguration.MarginColumn">80</value>
+   <value type="bool" key="EditorConfiguration.MouseHiding">true</value>
+   <value type="bool" key="EditorConfiguration.MouseNavigation">true</value>
+   <value type="int" key="EditorConfiguration.PaddingMode">1</value>
+   <value type="int" key="EditorConfiguration.PreferAfterWhitespaceComments">0</value>
+   <value type="bool" key="EditorConfiguration.PreferSingleLineComments">false</value>
+   <value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value>
+   <value type="bool" key="EditorConfiguration.ShowMargin">false</value>
+   <value type="int" key="EditorConfiguration.SmartBackspaceBehavior">2</value>
+   <value type="bool" key="EditorConfiguration.SmartSelectionChanging">true</value>
+   <value type="bool" key="EditorConfiguration.SpacesForTabs">true</value>
+   <value type="int" key="EditorConfiguration.TabKeyBehavior">0</value>
+   <value type="int" key="EditorConfiguration.TabSize">8</value>
+   <value type="bool" key="EditorConfiguration.UseGlobal">true</value>
+   <value type="bool" key="EditorConfiguration.UseIndenter">false</value>
+   <value type="int" key="EditorConfiguration.Utf8BomBehavior">1</value>
+   <value type="bool" key="EditorConfiguration.addFinalNewLine">true</value>
+   <value type="bool" key="EditorConfiguration.cleanIndentation">true</value>
+   <value type="bool" key="EditorConfiguration.cleanWhitespace">true</value>
+   <value type="QString" key="EditorConfiguration.ignoreFileTypes">*.md, *.MD, Makefile</value>
+   <value type="bool" key="EditorConfiguration.inEntireDocument">false</value>
+   <value type="bool" key="EditorConfiguration.skipTrailingWhitespace">true</value>
+   <value type="bool" key="EditorConfiguration.tintMarginArea">true</value>
+  </valuemap>
+ </data>
+ <data>
+  <variable>ProjectExplorer.Project.PluginSettings</variable>
+  <valuemap type="QVariantMap">
+   <valuemap type="QVariantMap" key="AutoTest.ActiveFrameworks">
+    <value type="bool" key="AutoTest.Framework.Boost">true</value>
+    <value type="bool" key="AutoTest.Framework.CTest">false</value>
+    <value type="bool" key="AutoTest.Framework.Catch">true</value>
+    <value type="bool" key="AutoTest.Framework.GTest">true</value>
+    <value type="bool" key="AutoTest.Framework.QtQuickTest">true</value>
+    <value type="bool" key="AutoTest.Framework.QtTest">true</value>
+   </valuemap>
+   <value type="bool" key="AutoTest.ApplyFilter">false</value>
+   <valuemap type="QVariantMap" key="AutoTest.CheckStates"/>
+   <valuelist type="QVariantList" key="AutoTest.PathFilters"/>
+   <value type="int" key="AutoTest.RunAfterBuild">0</value>
+   <value type="bool" key="AutoTest.UseGlobal">true</value>
+   <valuemap type="QVariantMap" key="ClangTools">
+    <value type="bool" key="ClangTools.AnalyzeOpenFiles">true</value>
+    <value type="bool" key="ClangTools.BuildBeforeAnalysis">true</value>
+    <value type="QString" key="ClangTools.DiagnosticConfig">Builtin.DefaultTidyAndClazy</value>
+    <value type="int" key="ClangTools.ParallelJobs">6</value>
+    <value type="bool" key="ClangTools.PreferConfigFile">true</value>
+    <valuelist type="QVariantList" key="ClangTools.SelectedDirs"/>
+    <valuelist type="QVariantList" key="ClangTools.SelectedFiles"/>
+    <valuelist type="QVariantList" key="ClangTools.SuppressedDiagnostics"/>
+    <value type="bool" key="ClangTools.UseGlobalSettings">true</value>
+   </valuemap>
+  </valuemap>
+ </data>
+ <data>
+  <variable>ProjectExplorer.Project.Target.0</variable>
+  <valuemap type="QVariantMap">
+   <value type="QString" key="DeviceType">Desktop</value>
+   <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop Qt 5.15.2 MinGW 64-bit</value>
+   <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop Qt 5.15.2 MinGW 64-bit</value>
+   <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">qt.qt5.5152.win64_mingw81_kit</value>
+   <value type="qlonglong" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
+   <value type="qlonglong" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
+   <value type="qlonglong" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
+   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
+    <value type="int" key="EnableQmlDebugging">0</value>
+    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:\new2\die-bonder-ui\build\Desktop_Qt_5_15_2_MinGW_64_bit-Debug</value>
+    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory.shadowDir">D:/new2/die-bonder-ui/build/Desktop_Qt_5_15_2_MinGW_64_bit-Debug</value>
+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
+     <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>
+      <valuelist type="QVariantList" key="QtProjectManager.QMakeBuildStep.SelectedAbis"/>
+     </valuemap>
+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
+     </valuemap>
+     <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">构建</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">构建</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
+    </valuemap>
+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
+      <value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
+     </valuemap>
+     <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">清除</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">清除</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
+    </valuemap>
+    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
+    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
+    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Debug</value>
+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
+    <value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">2</value>
+   </valuemap>
+   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.1">
+    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:\new2\die-bonder-ui\build\Desktop_Qt_5_15_2_MinGW_64_bit-Release</value>
+    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory.shadowDir">D:/new2/die-bonder-ui/build/Desktop_Qt_5_15_2_MinGW_64_bit-Release</value>
+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
+     <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>
+      <valuelist type="QVariantList" key="QtProjectManager.QMakeBuildStep.SelectedAbis"/>
+     </valuemap>
+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
+     </valuemap>
+     <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">构建</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">构建</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
+    </valuemap>
+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
+      <value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
+     </valuemap>
+     <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">清除</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">清除</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
+    </valuemap>
+    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
+    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
+    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release</value>
+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
+    <value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">0</value>
+    <value type="int" key="QtQuickCompiler">0</value>
+   </valuemap>
+   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.2">
+    <value type="int" key="EnableQmlDebugging">0</value>
+    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:\new2\die-bonder-ui\build\Desktop_Qt_5_15_2_MinGW_64_bit-Profile</value>
+    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory.shadowDir">D:/new2/die-bonder-ui/build/Desktop_Qt_5_15_2_MinGW_64_bit-Profile</value>
+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
+     <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>
+      <valuelist type="QVariantList" key="QtProjectManager.QMakeBuildStep.SelectedAbis"/>
+     </valuemap>
+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
+     </valuemap>
+     <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">构建</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">构建</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
+    </valuemap>
+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
+      <value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
+     </valuemap>
+     <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">清除</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">清除</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
+    </valuemap>
+    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
+    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
+    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Profile</value>
+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
+    <value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">0</value>
+    <value type="int" key="QtQuickCompiler">0</value>
+    <value type="int" key="SeparateDebugInfo">0</value>
+   </valuemap>
+   <value type="qlonglong" key="ProjectExplorer.Target.BuildConfigurationCount">3</value>
+   <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
+     <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">部署</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">部署</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
+    </valuemap>
+    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
+    <valuemap type="QVariantMap" key="ProjectExplorer.DeployConfiguration.CustomData"/>
+    <value type="bool" key="ProjectExplorer.DeployConfiguration.CustomDataEnabled">false</value>
+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
+   </valuemap>
+   <value type="qlonglong" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
+   <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
+    <value type="bool" key="Analyzer.Perf.Settings.UseGlobalSettings">true</value>
+    <value type="bool" key="Analyzer.QmlProfiler.Settings.UseGlobalSettings">true</value>
+    <value type="int" key="Analyzer.Valgrind.Callgrind.CostFormat">0</value>
+    <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
+    <value type="QList&lt;int&gt;" key="Analyzer.Valgrind.VisibleErrorKinds"></value>
+    <valuelist type="QVariantList" key="CustomOutputParsers"/>
+    <value type="int" key="PE.EnvironmentAspect.Base">2</value>
+    <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
+    <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">Qt4ProjectManager.Qt4RunConfiguration:D:/new2/die-bonder-ui/SBTdie-bonder-ui.pro</value>
+    <value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey">D:/new2/die-bonder-ui/SBTdie-bonder-ui.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">D:/new2/die-bonder-ui/build/Desktop_Qt_5_15_2_MinGW_64_bit-Debug</value>
+   </valuemap>
+   <value type="qlonglong" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
+  </valuemap>
+ </data>
+ <data>
+  <variable>ProjectExplorer.Project.TargetCount</variable>
+  <value type="qlonglong">1</value>
+ </data>
+ <data>
+  <variable>ProjectExplorer.Project.Updater.FileVersion</variable>
+  <value type="int">22</value>
+ </data>
+ <data>
+  <variable>Version</variable>
+  <value type="int">22</value>
+ </data>
+</qtcreator>

+ 17 - 4
light.qss

@@ -288,6 +288,10 @@ MainAndSecondaryCamerasWnd QWidget#RedLight,
 MainAndSecondaryCamerasWnd QWidget#GreenLight,
 MainAndSecondaryCamerasWnd QWidget#BlueLight,
 MainAndSecondaryCamerasWnd QWidget#DotLight,
+MainAndSecondaryCamerasWnd QWidget#RedLight_L,
+MainAndSecondaryCamerasWnd QWidget#GreenLight_L,
+MainAndSecondaryCamerasWnd QWidget#BlueLight_L,
+MainAndSecondaryCamerasWnd QWidget#DotLight_L,
 ChartsAndCamerasWnd QWidget#RedLight,
 ChartsAndCamerasWnd QWidget#GreenLight,
 ChartsAndCamerasWnd QWidget#BlueLight,
@@ -321,31 +325,40 @@ QProgressBar {
 }
 
 QProgressBar#RedLightprogressBar::chunk,
-QProgressBar#RedLightprogressBar_2::chunk
+QProgressBar#RedLightprogressBar_2::chunk,
+QProgressBar#RedLightprogressBar_L::chunk
 {
     border-radius: 3px;
     background-color: red;
+    height: 1px;
+
 }
 
 QProgressBar#GreenLightprogressBar::chunk,
-QProgressBar#GreenLightprogressBar_5::chunk
+QProgressBar#GreenLightprogressBar_5::chunk,
+QProgressBar#GreenLightprogressBar_L::chunk
 {
     border-radius: 3px;
     background-color: Green;
+    height: 1px;
 }
 
 QProgressBar#BlueLightprogressBar::chunk,
-QProgressBar#BlueLightprogressBar_2::chunk
+QProgressBar#BlueLightprogressBar_2::chunk,
+QProgressBar#BlueLightprogressBar_L::chunk
 {
     border-radius: 3px;
     background-color: Blue;
+    height: 1px;
 }
 
 QProgressBar#DotLightprogressBar::chunk,
-QProgressBar#DotLightprogressBar_2::chunk
+QProgressBar#DotLightprogressBar_2::chunk,
+QProgressBar#DotLightprogressBar_L::chunk
 {
     border-radius: 3px;
     background-color: yellow;
+    height: 1px;
 }
 
 /* 工具栏 */