|
@@ -25,7 +25,7 @@ MainAndSecondaryCamerasWnd::MainAndSecondaryCamerasWnd(QWidget *parent)
|
|
|
settings.endGroup();
|
|
|
|
|
|
initFrom();
|
|
|
- isShow = true;
|
|
|
+ isShow_R = true;
|
|
|
isShow_L = true;
|
|
|
}
|
|
|
|
|
@@ -260,7 +260,7 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
|
int Last_materialWndType = settings.value("MaterialWndType").toInt();
|
|
|
QStringList Last_textList = settings.value("TextList").toStringList();
|
|
|
settings.endGroup();
|
|
|
- QString lastRightImage = settings.value("LastRightImage").toString();
|
|
|
+ // QString lastRightImage = settings.value("LastRightImage").toString();
|
|
|
|
|
|
QSize size_left = ui->LeftOperatewidget->size();
|
|
|
QSize size_right = ui->RightOperatewidget->size();
|
|
@@ -269,10 +269,10 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
|
QPixmap Last_newPixmap;
|
|
|
|
|
|
if (Index == 1) {
|
|
|
- isShow = true;
|
|
|
-
|
|
|
- //newPixmap = QPixmap(imagePath1);
|
|
|
+ isShow_R = true;
|
|
|
clearLayout(1);
|
|
|
+ clearLayout(0);
|
|
|
+ qDebug()<<imagePath1;
|
|
|
newPixmap = QPixmap(imagePath1);
|
|
|
QPixmap scaledPixmap = newPixmap.scaled(size_right, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
Right_currentMode = ModeImage;
|
|
@@ -283,9 +283,11 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
|
double percentage = Right_scaleFactor * 100;
|
|
|
QString percentageStr = QString::number((int)percentage);
|
|
|
ui->Rightlabel_Percentage->setText(QString("%1%").arg(percentageStr));
|
|
|
+ applyScale(1);
|
|
|
+ // imageWidget(imagePath1,current_right,size_right);
|
|
|
|
|
|
if (lastIndex == 1) {
|
|
|
- clearLayout(0);
|
|
|
+ isShow_L = true;
|
|
|
Last_newPixmap = QPixmap(Last_imagePath1);
|
|
|
QPixmap scaledPixmap = Last_newPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
Left_currentMode = ModeImage;
|
|
@@ -296,53 +298,42 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
|
double percentage = Left_scaleFactor * 100;
|
|
|
QString percentageStr = QString::number((int)percentage);
|
|
|
ui->Leftlabel_Percentage->setText(QString("%1%").arg(percentageStr));
|
|
|
- isShow_L = true;
|
|
|
+ // imageWidget(Last_imagePath1,last_left,size_left);
|
|
|
+
|
|
|
} else if (lastIndex == 2) {
|
|
|
isShow_L = false;
|
|
|
- clearLayout(0);
|
|
|
+ // clearLayout(0);
|
|
|
if (Last_materialWndType == 1) {
|
|
|
- ui->LeftOperatewidget->clearPixmap();
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(ui->LeftOperatewidget);
|
|
|
- waferMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
|
|
|
-
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(waferMap.value(lastGroupId)->view);
|
|
|
- ui->LeftOperatewidget->setLayout(layout);
|
|
|
- Left_currentMode = ModeView;
|
|
|
- Left_currentView = waferMap.value(lastGroupId)->view;
|
|
|
- Left_scaleFactor = 1.0;
|
|
|
- applyScale(0);
|
|
|
+
|
|
|
+ KindsofWidget(last_left,lastGroupId,wafer_kind);
|
|
|
+
|
|
|
} else if (Last_materialWndType == 2) {
|
|
|
- ui->LeftOperatewidget->clearPixmap();
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(ui->LeftOperatewidget);
|
|
|
- waffleMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
|
|
|
-
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(waffleMap.value(lastGroupId)->view);
|
|
|
- ui->LeftOperatewidget->setLayout(layout);
|
|
|
- Left_currentMode = ModeView;
|
|
|
- Left_currentView = waffleMap.value(lastGroupId)->view;
|
|
|
- Left_scaleFactor = 1.0;
|
|
|
- applyScale(0);
|
|
|
+
|
|
|
+ KindsofWidget(last_left,lastGroupId,waffle_kind);
|
|
|
+
|
|
|
} else if (Last_materialWndType == 3) {
|
|
|
- ui->LeftOperatewidget->clearPixmap();
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(ui->LeftOperatewidget);
|
|
|
- materialBoxMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(materialBoxMap.value(lastGroupId)->view);
|
|
|
- ui->LeftOperatewidget->setLayout(layout);
|
|
|
- Left_currentMode = ModeView;
|
|
|
- Left_currentView = materialBoxMap.value(lastGroupId)->view;
|
|
|
- Left_scaleFactor = 1.0;
|
|
|
- applyScale(0);
|
|
|
+
|
|
|
+ KindsofWidget(last_left,lastGroupId,materialbox_kind);
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
} else if (Index == 2) {
|
|
|
- isShow = false;
|
|
|
+ isShow_R = false;
|
|
|
clearLayout(1);
|
|
|
clearLayout(0);
|
|
|
|
|
|
if (lastIndex == 1) {
|
|
|
+ // clearLayout(0);
|
|
|
+ Last_newPixmap = QPixmap(Last_imagePath1);
|
|
|
+ QPixmap scaledPixmap = Last_newPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
+ Left_currentMode = ModeImage;
|
|
|
+ Left_currentPixmap = scaledPixmap;
|
|
|
+ Left_scaleFactor = 1.0;
|
|
|
+ Left_previousScaleFactor = 1.0;
|
|
|
+ ui->LeftOperatewidget->setPixmap(scaledPixmap);
|
|
|
+ double percentage = Left_scaleFactor * 100;
|
|
|
+ QString percentageStr = QString::number((int)percentage);
|
|
|
+ ui->Leftlabel_Percentage->setText(QString("%1%").arg(percentageStr));
|
|
|
isShow_L = true;
|
|
|
}
|
|
|
|
|
@@ -361,54 +352,24 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
|
ui->Leftlabel_Percentage->setText(QString("%1%").arg(percentageStr));
|
|
|
} else if (lastIndex == 2) {
|
|
|
isShow_L = false;
|
|
|
+ // clearLayout(0);
|
|
|
if (Last_materialWndType == 1) {
|
|
|
- ui->LeftOperatewidget->clearPixmap();
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(ui->LeftOperatewidget);
|
|
|
- waferMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
|
|
|
-
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(waferMap.value(lastGroupId)->view);
|
|
|
- ui->LeftOperatewidget->setLayout(layout);
|
|
|
- Left_currentMode = ModeView;
|
|
|
- Left_currentView = waferMap.value(lastGroupId)->view;
|
|
|
- Left_scaleFactor = 1.0;
|
|
|
- applyScale(0);
|
|
|
+
|
|
|
+ KindsofWidget(last_left,lastGroupId,wafer_kind);
|
|
|
+
|
|
|
} else if (Last_materialWndType == 2) {
|
|
|
- ui->LeftOperatewidget->clearPixmap();
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(ui->LeftOperatewidget);
|
|
|
- waffleMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
|
|
|
-
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(waffleMap.value(lastGroupId)->view);
|
|
|
- ui->LeftOperatewidget->setLayout(layout);
|
|
|
- Left_currentMode = ModeView;
|
|
|
- Left_currentView = waffleMap.value(lastGroupId)->view;
|
|
|
- Left_scaleFactor = 1.0;
|
|
|
- applyScale(0);
|
|
|
+
|
|
|
+ KindsofWidget(last_left,lastGroupId,waffle_kind);
|
|
|
+
|
|
|
} else if (Last_materialWndType == 3) {
|
|
|
- ui->LeftOperatewidget->clearPixmap();
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(ui->LeftOperatewidget);
|
|
|
- materialBoxMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(materialBoxMap.value(lastGroupId)->view);
|
|
|
- ui->LeftOperatewidget->setLayout(layout);
|
|
|
- Left_currentMode = ModeView;
|
|
|
- Left_currentView = materialBoxMap.value(lastGroupId)->view;
|
|
|
- Left_scaleFactor = 1.0;
|
|
|
- applyScale(0);
|
|
|
+
|
|
|
+ KindsofWidget(last_left,lastGroupId,materialbox_kind);
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
- ui->RightOperatewidget->clearPixmap();
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(ui->RightOperatewidget);
|
|
|
- waferMap.value(Id)->initFrom(ui->RightOperatewidget);
|
|
|
-
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(waferMap.value(Id)->view);
|
|
|
- ui->RightOperatewidget->setLayout(layout);
|
|
|
- Right_currentMode = ModeView;
|
|
|
- Right_currentView = waferMap.value(Id)->view;
|
|
|
- Right_scaleFactor = 1.0;
|
|
|
- applyScale(1);
|
|
|
+
|
|
|
+ KindsofWidget(current_right,Id,wafer_kind);
|
|
|
+
|
|
|
} else if (materialWndType == 2) {
|
|
|
if (lastIndex == 1) {
|
|
|
Last_newPixmap = QPixmap(Last_imagePath1);
|
|
@@ -424,53 +385,22 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
|
} else if (lastIndex == 2) {
|
|
|
isShow_L = false;
|
|
|
if (Last_materialWndType == 1) {
|
|
|
- ui->LeftOperatewidget->clearPixmap();
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(ui->LeftOperatewidget);
|
|
|
- waferMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
|
|
|
-
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(waferMap.value(lastGroupId)->view);
|
|
|
- ui->LeftOperatewidget->setLayout(layout);
|
|
|
- Left_currentMode = ModeView;
|
|
|
- Left_currentView = waferMap.value(lastGroupId)->view;
|
|
|
- Left_scaleFactor = 1.0;
|
|
|
- applyScale(0);
|
|
|
+
|
|
|
+ KindsofWidget(last_left,lastGroupId,wafer_kind);
|
|
|
+
|
|
|
} else if (Last_materialWndType == 2) {
|
|
|
- ui->LeftOperatewidget->clearPixmap();
|
|
|
- ui->LeftOperatewidget->clearPixmap();
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(ui->LeftOperatewidget);
|
|
|
- waffleMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
|
|
|
-
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(waffleMap.value(lastGroupId)->view);
|
|
|
- ui->LeftOperatewidget->setLayout(layout);
|
|
|
- Left_currentMode = ModeView;
|
|
|
- Left_currentView = waffleMap.value(lastGroupId)->view;
|
|
|
- Left_scaleFactor = 1.0;
|
|
|
- applyScale(0);
|
|
|
+
|
|
|
+ KindsofWidget(last_left,lastGroupId,waffle_kind);
|
|
|
+
|
|
|
} else if (Last_materialWndType == 3) {
|
|
|
- ui->LeftOperatewidget->clearPixmap();
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(ui->LeftOperatewidget);
|
|
|
- materialBoxMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(materialBoxMap.value(lastGroupId)->view);
|
|
|
- ui->LeftOperatewidget->setLayout(layout);
|
|
|
- Left_currentMode = ModeView;
|
|
|
- Left_currentView = materialBoxMap.value(lastGroupId)->view;
|
|
|
- Left_scaleFactor = 1.0;
|
|
|
- applyScale(0);
|
|
|
+
|
|
|
+ KindsofWidget(last_left,lastGroupId,materialbox_kind);
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
- ui->RightOperatewidget->clearPixmap();
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(ui->RightOperatewidget);
|
|
|
- waffleMap.value(Id)->initFrom(ui->RightOperatewidget);
|
|
|
-
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(waffleMap.value(Id)->view);
|
|
|
- ui->RightOperatewidget->setLayout(layout);
|
|
|
- Right_currentMode = ModeView;
|
|
|
- Right_currentView = waffleMap.value(Id)->view;
|
|
|
- Right_scaleFactor = 1.0;
|
|
|
+
|
|
|
+ KindsofWidget(current_right,Id,waffle_kind);
|
|
|
+
|
|
|
} else if (materialWndType == 3) {
|
|
|
if (lastIndex == 1) {
|
|
|
Last_newPixmap = QPixmap(Last_imagePath1);
|
|
@@ -486,53 +416,20 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
|
} else if (lastIndex == 2) {
|
|
|
isShow_L = false;
|
|
|
if (Last_materialWndType == 1) {
|
|
|
- ui->LeftOperatewidget->clearPixmap();
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(ui->LeftOperatewidget);
|
|
|
- waferMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
|
|
|
-
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(waferMap.value(lastGroupId)->view);
|
|
|
- ui->LeftOperatewidget->setLayout(layout);
|
|
|
- Left_currentMode = ModeView;
|
|
|
- Left_currentView = waferMap.value(lastGroupId)->view;
|
|
|
- Left_scaleFactor = 1.0;
|
|
|
- applyScale(0);
|
|
|
+
|
|
|
+ KindsofWidget(last_left,lastGroupId,wafer_kind);
|
|
|
+
|
|
|
} else if (Last_materialWndType == 2) {
|
|
|
- ui->LeftOperatewidget->clearPixmap();
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(ui->LeftOperatewidget);
|
|
|
- waffleMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
|
|
|
-
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(waffleMap.value(lastGroupId)->view);
|
|
|
- ui->LeftOperatewidget->setLayout(layout);
|
|
|
- Left_currentMode = ModeView;
|
|
|
- Left_currentView = waffleMap.value(lastGroupId)->view;
|
|
|
- Left_scaleFactor = 1.0;
|
|
|
- applyScale(0);
|
|
|
+
|
|
|
+ KindsofWidget(last_left,lastGroupId,waffle_kind);
|
|
|
+
|
|
|
} else if (Last_materialWndType == 3) {
|
|
|
- ui->LeftOperatewidget->clearPixmap();
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(ui->LeftOperatewidget);
|
|
|
- materialBoxMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(materialBoxMap.value(lastGroupId)->view);
|
|
|
- ui->LeftOperatewidget->setLayout(layout);
|
|
|
- Left_currentMode = ModeView;
|
|
|
- Left_currentView = materialBoxMap.value(lastGroupId)->view;
|
|
|
- Left_scaleFactor = 1.0;
|
|
|
- applyScale(0);
|
|
|
+
|
|
|
+ KindsofWidget(last_left,lastGroupId,materialbox_kind);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- ui->RightOperatewidget->clearPixmap();
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(ui->RightOperatewidget);
|
|
|
- materialBoxMap.value(Id)->initFrom(ui->RightOperatewidget);
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(materialBoxMap.value(Id)->view);
|
|
|
- ui->RightOperatewidget->setLayout(layout);
|
|
|
- Left_currentMode = ModeView;
|
|
|
- Left_currentView = materialBoxMap.value(Id)->view;
|
|
|
- Left_scaleFactor = 1.0;
|
|
|
- applyScale(0);
|
|
|
+ KindsofWidget(current_right,Id,materialbox_kind);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -597,57 +494,100 @@ void MainAndSecondaryCamerasWnd::clearLayout(int flag) {
|
|
|
delete layout; // 删除布局本身
|
|
|
}
|
|
|
}
|
|
|
+//相机
|
|
|
+void MainAndSecondaryCamerasWnd::imageWidget(QString path,int flag,QSize size){
|
|
|
+ QPixmap newPixmap;
|
|
|
+ QPixmap Last_newPixmap;
|
|
|
+ if(flag == 0){
|
|
|
+ isShow_L = true;
|
|
|
+ Last_newPixmap = QPixmap(path);
|
|
|
+ QPixmap scaledPixmap = Last_newPixmap.scaled(size, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
+ Left_currentMode = ModeImage;
|
|
|
+ Left_currentPixmap = scaledPixmap;
|
|
|
+ Left_scaleFactor = 1.0;
|
|
|
+ Left_previousScaleFactor = 1.0;
|
|
|
+ ui->LeftOperatewidget->setPixmap(scaledPixmap);
|
|
|
+ double percentage = Left_scaleFactor * 100;
|
|
|
+ QString percentageStr = QString::number((int)percentage);
|
|
|
+ ui->Leftlabel_Percentage->setText(QString("%1%").arg(percentageStr));
|
|
|
+ applyScale(0);
|
|
|
+ }else if(flag == 1){
|
|
|
+ isShow_R = true;
|
|
|
+ qDebug()<<path;
|
|
|
+ newPixmap = QPixmap(":/images/test_image/image_1.png");
|
|
|
+ QPixmap scaledPixmap = newPixmap.scaled(size, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
+ Right_currentMode = ModeImage;
|
|
|
+ Right_currentPixmap = scaledPixmap;
|
|
|
+ Right_scaleFactor = 1.0;
|
|
|
+ Right_previousScaleFactor = 1.0;
|
|
|
+ ui->RightOperatewidget->setPixmap(scaledPixmap);
|
|
|
+ double percentage = Right_scaleFactor * 100;
|
|
|
+ QString percentageStr = QString::number((int)percentage);
|
|
|
+ ui->Rightlabel_Percentage->setText(QString("%1%").arg(percentageStr));
|
|
|
+ applyScale(1);
|
|
|
|
|
|
-// 圆晶
|
|
|
-void MainAndSecondaryCamerasWnd::WaferWidget(int flag) {
|
|
|
- // QWidget *operatewidget = ui->LeftOperatewidget;
|
|
|
-
|
|
|
- // if (flag == 1) {
|
|
|
- // operatewidget = ui->RightOperatewidget;
|
|
|
- // }
|
|
|
-
|
|
|
- // QGridLayout *layout = new QGridLayout(operatewidget);
|
|
|
- // wafer = new Wafer(1, operatewidget);
|
|
|
- // wafer->initFrom(operatewidget);
|
|
|
-
|
|
|
- // layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- // layout->addWidget(wafer->globalWidget);
|
|
|
- // operatewidget->setLayout(layout);
|
|
|
- // operatewidget->setFixedSize(476, 476);
|
|
|
+ }else{
|
|
|
+ qDebug()<<"parameter has problem";
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-// 华夫盒
|
|
|
-void MainAndSecondaryCamerasWnd::WaffleWidget(int flag) {
|
|
|
- QWidget *operatewidget = ui->LeftOperatewidget;
|
|
|
+// 圆晶
|
|
|
+void MainAndSecondaryCamerasWnd::KindsofWidget(int flag,int groupId,kinds kind) {
|
|
|
+ if(flag == 0){
|
|
|
|
|
|
- if (flag == 1) {
|
|
|
- operatewidget = ui->RightOperatewidget;
|
|
|
- }
|
|
|
+ ui->LeftOperatewidget->clearPixmap();
|
|
|
+ QVBoxLayout *layout = new QVBoxLayout(ui->LeftOperatewidget);
|
|
|
+ layout->setContentsMargins(0, 0, 0, 0);
|
|
|
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(operatewidget);
|
|
|
- waffle = new Waffle(1, operatewidget);
|
|
|
+ if(kind == wafer_kind){
|
|
|
+ waferMap.value(groupId)->initFrom(ui->LeftOperatewidget);
|
|
|
+ layout->addWidget(waferMap.value(groupId)->view);
|
|
|
+ Left_currentView = waferMap.value(groupId)->view;
|
|
|
+ }else if(kind == waffle_kind){
|
|
|
+ waffleMap.value(groupId)->initFrom(ui->LeftOperatewidget);
|
|
|
+ layout->addWidget(waffleMap.value(groupId)->view);
|
|
|
+ Left_currentView = waffleMap.value(groupId)->view;
|
|
|
+ }else if(kind == materialbox_kind){
|
|
|
+ materialBoxMap.value(groupId)->initFrom(ui->LeftOperatewidget);
|
|
|
+ layout->addWidget(materialBoxMap.value(groupId)->view);
|
|
|
+ Left_currentView = materialBoxMap.value(groupId)->view;
|
|
|
+ }else{
|
|
|
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(waffle);
|
|
|
- operatewidget->setLayout(layout);
|
|
|
- operatewidget->setFixedSize(476, 476);
|
|
|
-}
|
|
|
-
|
|
|
-// 料盒
|
|
|
-void MainAndSecondaryCamerasWnd::MaterialBoxWidget(int flag) {
|
|
|
- QWidget *operatewidget = ui->LeftOperatewidget;
|
|
|
+ }
|
|
|
|
|
|
- if (flag == 1) {
|
|
|
- operatewidget = ui->RightOperatewidget;
|
|
|
- }
|
|
|
+ ui->LeftOperatewidget->setLayout(layout);
|
|
|
+ Left_currentMode = ModeView;
|
|
|
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(operatewidget);
|
|
|
- materialbox = new MaterialBox(1, operatewidget);
|
|
|
+ Left_scaleFactor = 1.0;
|
|
|
+ applyScale(0);
|
|
|
+ }else if(flag == 1){
|
|
|
+ ui->RightOperatewidget->clearPixmap();
|
|
|
+ QVBoxLayout *layout = new QVBoxLayout(ui->RightOperatewidget);
|
|
|
+ layout->setContentsMargins(0, 0, 0, 0);
|
|
|
+
|
|
|
+ if(kind == wafer_kind){
|
|
|
+ waferMap.value(groupId)->initFrom(ui->RightOperatewidget);
|
|
|
+ layout->addWidget(waferMap.value(groupId)->view);
|
|
|
+ Right_currentView = waferMap.value(groupId)->view;
|
|
|
+ }else if(kind == waffle_kind){
|
|
|
+ waffleMap.value(groupId)->initFrom(ui->RightOperatewidget);
|
|
|
+ layout->addWidget(waffleMap.value(groupId)->view);
|
|
|
+ Right_currentView = waffleMap.value(groupId)->view;
|
|
|
+ }else if(kind == materialbox_kind){
|
|
|
+ materialBoxMap.value(groupId)->initFrom(ui->RightOperatewidget);
|
|
|
+ layout->addWidget(materialBoxMap.value(groupId)->view);
|
|
|
+ Right_currentView = materialBoxMap.value(groupId)->view;
|
|
|
+ }else{
|
|
|
+
|
|
|
+ }
|
|
|
+ ui->RightOperatewidget->setLayout(layout);
|
|
|
+ Right_currentMode = ModeView;
|
|
|
+ Right_scaleFactor = 1.0;
|
|
|
+ applyScale(1);
|
|
|
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(materialbox);
|
|
|
- operatewidget->setLayout(layout);
|
|
|
- operatewidget->setFixedSize(476, 476);
|
|
|
+ }else{
|
|
|
+ qDebug()<<"parameter has problem";
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// 更新缩放比例
|
|
@@ -797,10 +737,10 @@ void MainAndSecondaryCamerasWnd::CheckIs()
|
|
|
|
|
|
if (groupId == lastGroupId) {
|
|
|
if (lastIndex == 1 ) {
|
|
|
- if(isShow == true){
|
|
|
- isShow = false;
|
|
|
+ if(isShow_R == true){
|
|
|
+ isShow_R = false;
|
|
|
} else {
|
|
|
- isShow = true;
|
|
|
+ isShow_R = true;
|
|
|
}
|
|
|
}
|
|
|
if (lastLastIndex == 1 && groupId == lastLastGroupId) {
|
|
@@ -838,7 +778,7 @@ void MainAndSecondaryCamerasWnd::showAndHide(){
|
|
|
ui->RedLightprogressBar_2,ui->GreenLightprogressBar_5,
|
|
|
ui->BlueLightprogressBar_2,ui->DotLightprogressBar_2
|
|
|
};
|
|
|
- if(isShow == true){
|
|
|
+ if(isShow_R == true){
|
|
|
for (QLineEdit* lineEdit : lineEdits) {
|
|
|
lineEdit->show();
|
|
|
}
|
|
@@ -928,3 +868,5 @@ void MainAndSecondaryCamerasWnd::showAndHide_L(){
|
|
|
// ui->GreenLightlabel_5->hide();
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+
|