yun 1 день тому
батько
коміт
407d81ed33

+ 18 - 0
View/die-bonder-ui/CameraMaterialGroupWnd/Group.cpp

@@ -399,3 +399,21 @@ void Group::GetGroupSelectedSlots(Group* group, int index) {
     m_pLastClickedGroup = group;
     m_stnLastClickedIndex = index;
 }
+
+void Group::setEnableControls(bool enable) {
+    ui->GroupButton->setEnabled(enable);
+    ui->DatacomboBox->setEnabled(enable);
+    if (enable == true) {
+        ui->GroupButton->setStyleSheet(
+            "QPushButton:hover {"
+            "   background-color: #45a049;"
+            "}"
+            "QPushButton:pressed {"
+            "   background-color: #3e8e41;"
+            "}"
+        );
+    }
+    else {
+        ui->GroupButton->setStyleSheet("background-color: lightgray;");
+    }
+}

+ 1 - 0
View/die-bonder-ui/CameraMaterialGroupWnd/Group.h

@@ -29,6 +29,7 @@ public:
     QString getBlueBorderStyle();
     QString getRedBorderStyle();
     void setDatacomboBox(int index);
+    void setEnableControls(bool enable);
 
 signals:
     void send_button_Signal();

+ 5 - 0
View/die-bonder-ui/OriginalWnd/ChartsAndCamerasWnd.cpp

@@ -231,6 +231,8 @@ void ChartsAndCamerasWnd::initFrom() {
         //connect(widget,&Group::send_button_Signal,this,&ChartsAndCamerasWnd::showAndHide);
         if (widget != nullptr) 
         {
+            connect(widget, &Group::sendUpdateGroupState,
+                this, &ChartsAndCamerasWnd::checkSettings);
             layout->addWidget(widget);
             widgets.append(widget);
         }
@@ -264,6 +266,7 @@ void ChartsAndCamerasWnd::initFrom() {
     container->setLayout(layout);
     ui->scrollArea->setWidget(container);
     ui->scrollArea->resize(508, 177);
+    checkSettings();
 
 }
 
@@ -303,10 +306,12 @@ void ChartsAndCamerasWnd::loadGroupSettings(int Id, int Index) {
         newPixmap = QPixmap(imagePath);
         
         ui->viewwidgetgroup->updateOperateWidget(newPixmap);
+        ui->viewwidgetgroup->setEnableControls(true);
 
     }else if (Index == 2) {
  
         updateMaterialWidget(materialWndType, Id);
+        ui->viewwidgetgroup->setEnableControls(false);
         
     }
 }

+ 5 - 1
View/die-bonder-ui/OriginalWnd/MainAndSecondaryCamerasWnd.cpp

@@ -242,6 +242,7 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index)
         newPixmap = QPixmap(imagePath);
         
         ui->viewwidgetgroup_R->updateOperateWidget(newPixmap);
+        ui->viewwidgetgroup_R->setEnableControls(true);
     }
 
     if (lastIndex == 1) 
@@ -250,15 +251,18 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index)
         Last_newPixmap = QPixmap(Last_imagePath);
         
         ui->viewwidgetgroup_L->updateOperateWidget(Last_newPixmap);
+        ui->viewwidgetgroup_L->setEnableControls(true);
     }
     else if (lastIndex == 2) 
     {
         updateMaterialWidget(last_left,Last_materialWndType, lastGroupId);
+        ui->viewwidgetgroup_L->setEnableControls(false);
     }
     
     if (Index == 2) 
     {
-        updateMaterialWidget(current_right,materialWndType, Id);   
+        updateMaterialWidget(current_right,materialWndType, Id); 
+        ui->viewwidgetgroup_R->setEnableControls(false);
     }
 
     QSettings settings2("YourOrganization", "YourApplication_lastWndType");

+ 5 - 3
View/die-bonder-ui/OriginalWnd/SingleCameraOperationWnd.cpp

@@ -27,9 +27,6 @@ SingleCameraOperationWnd::~SingleCameraOperationWnd()
 }
 
 void SingleCameraOperationWnd::initFrom() {
-    QTimer *timer = new QTimer(this);
-    connect(timer, &QTimer::timeout, this, &SingleCameraOperationWnd::checkSettings);
-    timer->start(100);
 
     // 设置右上部分
     QWidget *viewport = ui->scrollArea->viewport();
@@ -50,6 +47,8 @@ void SingleCameraOperationWnd::initFrom() {
         //connect(widget,&Group::send_button_Signal,this,&SingleCameraOperationWnd::showAndHideButton);
 		//connect(widget,&Group::send_ComboBox_singal,this,&SingleCameraOperationWnd::handleComBoxChange);
         if (widget != nullptr) {
+            connect(widget, &Group::sendUpdateGroupState,
+                this, &SingleCameraOperationWnd::checkSettings);
             layout->addWidget(widget);
             widgets.append(widget);
 			groupMap[num] = widget;
@@ -78,6 +77,7 @@ void SingleCameraOperationWnd::initFrom() {
     container->setLayout(layout);
     ui->scrollArea->setWidget(container);
     ui->scrollArea->resize(261, 700);
+    checkSettings();
 
 
 }
@@ -129,10 +129,12 @@ void SingleCameraOperationWnd::loadGroupSettings(int Id, int Index) {
         newPixmap = QPixmap(imagePath);
         QStringList test = { "1","2" };
         ui->viewwidgetgroup->updateOperateWidget(newPixmap);
+        ui->viewwidgetgroup->setEnableControls(true);
 
     }else if (Index == 2) {
  
         updateMaterialWidget(materialWndType, Id);
+        ui->viewwidgetgroup->setEnableControls(false);
         
     }
         

+ 20 - 0
View/die-bonder-ui/Src/RewriteControl/ControlOperationPage.cpp

@@ -7,6 +7,7 @@ ControlOperationPage::ControlOperationPage(QWidget* parent)
 {
     ui->setupUi(this);
 
+
     InitWnd();
 }
 
@@ -443,3 +444,22 @@ void ControlOperationPage::DeduplicationBox(QComboBox* pCom, const T& veTemp, in
     }
 }
 
+void ControlOperationPage::setEnableControls(bool enable) {
+    ui->LiveButton->setEnabled(enable);
+    ui->DataSources->setEnabled(enable);
+    if (enable == true) {
+        ui->LiveButton->setStyleSheet(
+            "QPushButton:hover {"
+            "   background-color: #45a049;"
+            "}"
+            "QPushButton:pressed {"
+            "   background-color: #3e8e41;"
+            "}"
+        );
+    }
+    else {
+        ui->LiveButton->setStyleSheet("background-color: lightgray;");
+    }
+    
+}
+

+ 2 - 0
View/die-bonder-ui/Src/RewriteControl/ControlOperationPage.h

@@ -49,6 +49,7 @@ public:
     /**更新硬件指针
      */
     void UpDateCameraBind(CameraBind* pCameraBind);
+    void setEnableControls(bool enable);
 private slots:
     void on_ZoomUpButton_clicked();
     void on_ZoomOutButton_clicked();
@@ -57,6 +58,7 @@ private slots:
     //void on_PenButton_clicked();
     void handleDoubleClick();
     void on_switchJoystickBut_clicked();
+    
 
 private slots:
     /**位置更新