|
@@ -46,6 +46,7 @@ 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);
|
|
@@ -89,6 +90,9 @@ void MainAndSecondaryCamerasWnd::initFrom()
|
|
|
mainLayout->addWidget(widget);
|
|
|
widgets.append(widget);
|
|
|
}
|
|
|
+ if(manager->getWafer()) {
|
|
|
+ waferMap.insert(num, manager->getWafer());
|
|
|
+ }
|
|
|
|
|
|
delete manager;
|
|
|
}
|
|
@@ -153,18 +157,33 @@ void MainAndSecondaryCamerasWnd::handleDoubleClick(){
|
|
|
QPoint leftWidgetLocalPos = ui->LeftOperatewidget->mapFromGlobal(globalMousePos);
|
|
|
QPoint rightWidgetLocalPos = ui->RightOperatewidget->mapFromGlobal(globalMousePos);
|
|
|
if (ui->LeftOperatewidget->rect().contains(leftWidgetLocalPos)){
|
|
|
- QPixmap scaledImage = Left_currentPixmap.scaled(Left_currentPixmap.width(), Left_currentPixmap.height(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
- ui->LeftOperatewidget->setPixmap(scaledImage); // 这里传递缩放后的图片
|
|
|
+ if (Left_currentMode == ModeImage) {
|
|
|
+ QPixmap scaledImage = Left_currentPixmap.scaled(Left_currentPixmap.width(), Left_currentPixmap.height(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
+ ui->LeftOperatewidget->setPixmap(scaledImage); // 这里传递缩放后的图片
|
|
|
+ } else if (Left_currentMode == ModeView && Left_currentView) {
|
|
|
+ QTransform transform;
|
|
|
+ transform.scale(1, 1);
|
|
|
+ Left_currentView->setTransform(transform);
|
|
|
+ }
|
|
|
Left_scaleFactor = 1.0;
|
|
|
+ Left_previousScaleFactor = 1.0;
|
|
|
ui->Leftlabel_Percentage->setText("100%");
|
|
|
}
|
|
|
if(ui->RightOperatewidget->rect().contains(rightWidgetLocalPos)){
|
|
|
- QPixmap scaledImage = Right_currentPixmap.scaled(Right_currentPixmap.width(), Right_currentPixmap.height(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
- ui->RightOperatewidget->setPixmap(scaledImage); // 这里传递缩放后的图片
|
|
|
+ if (Right_currentMode == ModeImage) {
|
|
|
+ QPixmap scaledImage = Right_currentPixmap.scaled(Right_currentPixmap.width(), Right_currentPixmap.height(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
+ ui->RightOperatewidget->setPixmap(scaledImage); // 这里传递缩放后的图片
|
|
|
+ } else if (Right_currentMode == ModeView && Right_currentView) {
|
|
|
+ QTransform transform;
|
|
|
+ transform.scale(1, 1);
|
|
|
+ Right_currentView->setTransform(transform);
|
|
|
+ }
|
|
|
Right_scaleFactor = 1.0;
|
|
|
+ Right_previousScaleFactor = 1.0;
|
|
|
ui->Rightlabel_Percentage->setText("100%");
|
|
|
}
|
|
|
|
|
|
+
|
|
|
}
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::initLineEdits() {
|
|
@@ -229,30 +248,67 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
|
int materialWndType = settings.value("MaterialWndType").toInt();
|
|
|
QStringList textList = settings.value("TextList").toStringList();
|
|
|
settings.endGroup();
|
|
|
+ QSettings Last_settings("YourOrganization", "YourApplication");
|
|
|
+ settings.beginGroup(QString::number(lastGroupId));
|
|
|
+ QString Last_imagePath1 = settings.value("ImagePath1").toString();
|
|
|
+ int Last_materialWndType = settings.value("MaterialWndType").toInt();
|
|
|
+ QStringList Last_textList = settings.value("TextList").toStringList();
|
|
|
+ settings.endGroup();
|
|
|
QString lastRightImage = settings.value("LastRightImage").toString();
|
|
|
|
|
|
QSize size_left = ui->LeftOperatewidget->size();
|
|
|
QSize size_right = ui->RightOperatewidget->size();
|
|
|
|
|
|
QPixmap newPixmap;
|
|
|
+ QPixmap Last_newPixmap;
|
|
|
|
|
|
if (Index == 1) {
|
|
|
isShow = true;
|
|
|
|
|
|
- newPixmap = QPixmap(imagePath1);
|
|
|
+ //newPixmap = QPixmap(imagePath1);
|
|
|
clearLayout(1);
|
|
|
+ newPixmap = QPixmap(imagePath1);
|
|
|
+ QPixmap scaledPixmap = newPixmap.scaled(size_right, 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));
|
|
|
|
|
|
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;
|
|
|
} else if (lastIndex == 2) {
|
|
|
isShow_L = false;
|
|
|
clearLayout(0);
|
|
|
- if (lastGroupId == 1) {
|
|
|
- WaferWidget(0);
|
|
|
- } else if (lastGroupId == 2) {
|
|
|
+ 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);
|
|
|
+ } else if (Last_materialWndType == 2) {
|
|
|
WaffleWidget(0);
|
|
|
- } else if (lastGroupId == 3) {
|
|
|
+ } else if (Last_materialWndType == 3) {
|
|
|
MaterialBoxWidget(0);
|
|
|
}
|
|
|
}
|
|
@@ -266,41 +322,117 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
|
}
|
|
|
|
|
|
if (materialWndType == 1) {
|
|
|
- if (lastIndex == 2) {
|
|
|
- isShow_L = false;
|
|
|
- if (lastGroupId == 1) {
|
|
|
- WaferWidget(0);
|
|
|
- } else if (lastGroupId == 2) {
|
|
|
+
|
|
|
+ if (lastIndex == 1) {
|
|
|
+ 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));
|
|
|
+ } 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);
|
|
|
+ } else if (Last_materialWndType == 2) {
|
|
|
WaffleWidget(0);
|
|
|
- } else if (lastGroupId == 3) {
|
|
|
+ } else if (Last_materialWndType == 3) {
|
|
|
MaterialBoxWidget(0);
|
|
|
}
|
|
|
}
|
|
|
- WaferWidget(1);
|
|
|
+ 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);
|
|
|
} else if (materialWndType == 2) {
|
|
|
- if (lastIndex == 2) {
|
|
|
- isShow_L = false;
|
|
|
- if (lastGroupId == 1) {
|
|
|
- WaferWidget(0);
|
|
|
- } else if (lastGroupId == 2) {
|
|
|
+ if (lastIndex == 1) {
|
|
|
+ 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));
|
|
|
+ } 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);
|
|
|
+ } else if (Last_materialWndType == 2) {
|
|
|
WaffleWidget(0);
|
|
|
- } else if (lastGroupId == 3) {
|
|
|
+ } else if (Last_materialWndType == 3) {
|
|
|
MaterialBoxWidget(0);
|
|
|
}
|
|
|
}
|
|
|
- WaffleWidget(1);
|
|
|
+
|
|
|
+ WaffleWidget(1);
|
|
|
} else if (materialWndType == 3) {
|
|
|
- if (lastIndex == 2) {
|
|
|
- isShow_L = false;
|
|
|
- if (lastGroupId == 1) {
|
|
|
- WaferWidget(0);
|
|
|
- } else if (lastGroupId == 2) {
|
|
|
+ if (lastIndex == 1) {
|
|
|
+ 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));
|
|
|
+ } 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);
|
|
|
+ } else if (Last_materialWndType == 2) {
|
|
|
WaffleWidget(0);
|
|
|
- } else if (lastGroupId == 3) {
|
|
|
+ } else if (Last_materialWndType == 3) {
|
|
|
MaterialBoxWidget(0);
|
|
|
}
|
|
|
}
|
|
|
- MaterialBoxWidget(1);
|
|
|
+
|
|
|
+ MaterialBoxWidget(1);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -318,27 +450,27 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
|
ui->LeftOperatewidget->setPixmap(scaledPixmap_left);
|
|
|
|
|
|
// 更新当前图片的成员变量
|
|
|
- Left_currentPixmap = scaledPixmap_left;
|
|
|
- Left_scaleFactor = 1.0;
|
|
|
- Right_currentPixmap = scaledPixmap_right;
|
|
|
- Right_scaleFactor = 1.0;
|
|
|
- ui->Leftlabel_Percentage->setText("100%");
|
|
|
- ui->Rightlabel_Percentage->setText("100%");
|
|
|
-
|
|
|
- ui->LeftDataSources->clear();
|
|
|
- ui->LeftDataSources->addItems(lasttextList);
|
|
|
- ui->RightDataSources->clear();
|
|
|
- ui->RightDataSources->addItems(textList);
|
|
|
+ // Left_currentPixmap = scaledPixmap_left;
|
|
|
+ // Left_scaleFactor = 1.0;
|
|
|
+ // Right_currentPixmap = scaledPixmap_right;
|
|
|
+ // Right_scaleFactor = 1.0;
|
|
|
+ // ui->Leftlabel_Percentage->setText("100%");
|
|
|
+ // ui->Rightlabel_Percentage->setText("100%");
|
|
|
+
|
|
|
+ // ui->LeftDataSources->clear();
|
|
|
+ // ui->LeftDataSources->addItems(lasttextList);
|
|
|
+ // ui->RightDataSources->clear();
|
|
|
+ // ui->RightDataSources->addItems(textList);
|
|
|
|
|
|
// 保存到 QSettings
|
|
|
- settings.beginGroup("LastSettings");
|
|
|
- settings.setValue("LastRightPixmap", lastRightPixmap);
|
|
|
- settings.setValue("LasttextList", lasttextList);
|
|
|
- settings.setValue("LastLastRightPixmap", lastLastRightPixmap);
|
|
|
- settings.setValue("LastLasttextList", lastLasttextList);
|
|
|
- settings.setValue("LastLastIndex", lastLastIndex);
|
|
|
- settings.setValue("LastLastGroupId", lastLastGroupId);
|
|
|
- settings.endGroup();
|
|
|
+ // settings.beginGroup("LastSettings");
|
|
|
+ // settings.setValue("LastRightPixmap", lastRightPixmap);
|
|
|
+ // settings.setValue("LasttextList", lasttextList);
|
|
|
+ // settings.setValue("LastLastRightPixmap", lastLastRightPixmap);
|
|
|
+ // settings.setValue("LastLasttextList", lastLasttextList);
|
|
|
+ // settings.setValue("LastLastIndex", lastLastIndex);
|
|
|
+ // settings.setValue("LastLastGroupId", lastLastGroupId);
|
|
|
+ // settings.endGroup();
|
|
|
|
|
|
if (isUpdatingSettings) {
|
|
|
lastLastRightPixmap = lastRightPixmap;
|
|
@@ -418,137 +550,119 @@ void MainAndSecondaryCamerasWnd::MaterialBoxWidget(int flag) {
|
|
|
operatewidget->setFixedSize(476, 476);
|
|
|
}
|
|
|
|
|
|
-void MainAndSecondaryCamerasWnd::on_LeftZoomUpButton_clicked()
|
|
|
-{
|
|
|
- Left_scaleFactor *= 1.1;
|
|
|
+// 更新缩放比例
|
|
|
+void MainAndSecondaryCamerasWnd::updateScale(double newScaleFactor, int flag) {
|
|
|
+ if (flag == 0) {
|
|
|
+ if (newScaleFactor >= 1.0) {
|
|
|
+ Left_scaleFactor = newScaleFactor;
|
|
|
+ } else {
|
|
|
+ Left_scaleFactor = 1.0; // 最小缩放比例为 1.0
|
|
|
+ }
|
|
|
+ } else if (flag == 1) {
|
|
|
+ if (newScaleFactor >= 1.0) {
|
|
|
+ Right_scaleFactor = newScaleFactor;
|
|
|
+ } else {
|
|
|
+ Right_scaleFactor = 1.0; // 最小缩放比例为 1.0
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- int newWidth = Left_currentPixmap.width() * Left_scaleFactor;
|
|
|
- int newHeight = Left_currentPixmap.height() * Left_scaleFactor;
|
|
|
+ applyScale(flag); // 应用缩放
|
|
|
+}
|
|
|
|
|
|
- QPixmap scaledImage = Left_currentPixmap.scaled(newWidth, newHeight, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
+// 应用缩放
|
|
|
+void MainAndSecondaryCamerasWnd::applyScale(int flag) {
|
|
|
+ if (flag == 0) {
|
|
|
+ if (Left_currentMode == ModeImage) {
|
|
|
+ // 图片模式:缩放图片
|
|
|
+ int newWidth = Left_currentPixmap.width() * Left_scaleFactor;
|
|
|
+ int newHeight = Left_currentPixmap.height() * Left_scaleFactor;
|
|
|
+
|
|
|
+ QPixmap scaledImage = Left_currentPixmap.scaled(newWidth, newHeight, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
+ ui->LeftOperatewidget->setPixmapAndPoint(scaledImage, Left_previousScaleFactor, Left_scaleFactor, mousePos);
|
|
|
+ Left_previousScaleFactor = Left_scaleFactor;
|
|
|
+ } else if (Left_currentMode == ModeView && Left_currentView) {
|
|
|
+ // View 模式:缩放 view
|
|
|
+ QTransform transform;
|
|
|
+ transform.scale(Left_scaleFactor, Left_scaleFactor);
|
|
|
+ Left_currentView->setTransform(transform);
|
|
|
+ }
|
|
|
|
|
|
- ui->LeftOperatewidget->setPixmap(scaledImage);
|
|
|
+ // 更新百分比显示
|
|
|
+ double percentage = Left_scaleFactor * 100;
|
|
|
+ QString percentageStr = QString::number((int)percentage);
|
|
|
+ ui->Leftlabel_Percentage->setText(QString("%1%").arg(percentageStr));
|
|
|
+ } else if (flag == 1) {
|
|
|
+ if (Right_currentMode == ModeImage) {
|
|
|
+ // 图片模式:缩放图片
|
|
|
+ int newWidth = Right_currentPixmap.width() * Right_scaleFactor;
|
|
|
+ int newHeight = Right_currentPixmap.height() * Right_scaleFactor;
|
|
|
+
|
|
|
+ QPixmap scaledImage = Right_currentPixmap.scaled(newWidth, newHeight, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
+ ui->RightOperatewidget->setPixmapAndPoint(scaledImage, Right_previousScaleFactor, Right_scaleFactor, mousePos);
|
|
|
+ Right_previousScaleFactor = Right_scaleFactor;
|
|
|
+ } else if (Right_currentMode == ModeView && Right_currentView) {
|
|
|
+ // View 模式:缩放 view
|
|
|
+ QTransform transform;
|
|
|
+ transform.scale(Right_scaleFactor, Right_scaleFactor);
|
|
|
+ Right_currentView->setTransform(transform);
|
|
|
+ }
|
|
|
|
|
|
- double percentage = (Left_scaleFactor * 100);
|
|
|
- QString percentageStr = QString::number((int)percentage);
|
|
|
- ui->Leftlabel_Percentage->setText(QString("%1%").arg(percentageStr));
|
|
|
+ // 更新百分比显示
|
|
|
+ double percentage = Right_scaleFactor * 100;
|
|
|
+ QString percentageStr = QString::number((int)percentage);
|
|
|
+ ui->Rightlabel_Percentage->setText(QString("%1%").arg(percentageStr));
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
-void MainAndSecondaryCamerasWnd::on_RightZoomUpButton_clicked()
|
|
|
+void MainAndSecondaryCamerasWnd::on_LeftZoomUpButton_clicked()
|
|
|
{
|
|
|
- Right_scaleFactor *= 1.1;
|
|
|
+ mousePos = ui->LeftOperatewidget->geometry().center();
|
|
|
+ updateScale(Left_scaleFactor * 1.1, 0);
|
|
|
|
|
|
- int newWidth = Right_currentPixmap.width() * Right_scaleFactor;
|
|
|
- int newHeight = Right_currentPixmap.height() * Right_scaleFactor;
|
|
|
+}
|
|
|
|
|
|
- QPixmap scaledImage = Right_currentPixmap.scaled(newWidth, newHeight, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
|
|
|
- ui->RightOperatewidget->setPixmap(scaledImage);
|
|
|
+void MainAndSecondaryCamerasWnd::on_RightZoomUpButton_clicked()
|
|
|
+{
|
|
|
+ mousePos = ui->RightOperatewidget->geometry().center();
|
|
|
+ updateScale(Right_scaleFactor * 1.1, 1);
|
|
|
|
|
|
- double percentage = (Right_scaleFactor * 100);
|
|
|
- QString percentageStr = QString::number((int)percentage);
|
|
|
- ui->Rightlabel_Percentage->setText(QString("%1%").arg(percentageStr));
|
|
|
}
|
|
|
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::on_LeftZoomOutButton_clicked()
|
|
|
{
|
|
|
- double Left_newScaleFactor = Left_scaleFactor * 0.9;
|
|
|
-
|
|
|
- if (Left_newScaleFactor >= 1.0) {
|
|
|
- Left_scaleFactor = Left_newScaleFactor;
|
|
|
- } else {
|
|
|
- Left_scaleFactor = 1.0;
|
|
|
- }
|
|
|
+ mousePos = ui->LeftOperatewidget->geometry().center();
|
|
|
+ updateScale(Left_scaleFactor * 0.9, 0);
|
|
|
|
|
|
- int newWidth = Left_currentPixmap.width() * Left_scaleFactor;
|
|
|
- int newHeight = Left_currentPixmap.height() * Left_scaleFactor;
|
|
|
-
|
|
|
- QPixmap scaledImage = Left_currentPixmap.scaled(newWidth, newHeight, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
-
|
|
|
- ui->LeftOperatewidget->setPixmap(scaledImage);
|
|
|
-
|
|
|
- double percentage = (Left_scaleFactor * 100);
|
|
|
- QString percentageStr = QString::number((int)percentage);
|
|
|
- ui->Leftlabel_Percentage->setText(QString("%1%").arg(percentageStr));
|
|
|
}
|
|
|
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::on_RightZoomOutButton_clicked()
|
|
|
{
|
|
|
- double Right_newScaleFactor = Right_scaleFactor * 0.9;
|
|
|
-
|
|
|
- if (Right_newScaleFactor >= 1.0) {
|
|
|
- Right_scaleFactor = Right_newScaleFactor;
|
|
|
- } else {
|
|
|
- Right_scaleFactor = 1.0;
|
|
|
- }
|
|
|
-
|
|
|
- int newWidth = Right_currentPixmap.width() * Right_scaleFactor;
|
|
|
- int newHeight = Right_currentPixmap.height() * Right_scaleFactor;
|
|
|
-
|
|
|
- QPixmap scaledImage = Right_currentPixmap.scaled(newWidth, newHeight, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
-
|
|
|
- ui->RightOperatewidget->setPixmap(scaledImage);
|
|
|
+ mousePos = ui->RightOperatewidget->geometry().center();
|
|
|
+ updateScale(Right_scaleFactor * 0.9, 1);
|
|
|
|
|
|
- double percentage = (Right_scaleFactor * 100);
|
|
|
- QString percentageStr = QString::number((int)percentage);
|
|
|
- ui->Rightlabel_Percentage->setText(QString("%1%").arg(percentageStr));
|
|
|
}
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::wheelEvent(QWheelEvent *event)
|
|
|
{
|
|
|
- if (ui->LeftOperatewidget->rect().contains(ui->LeftOperatewidget->mapFromGlobal(event->globalPosition().toPoint()))) {
|
|
|
+ if (ui->LeftOperatewidget->rect().contains(ui->LeftOperatewidget->mapFromGlobal(event->globalPos()))) {
|
|
|
+ mousePos = ui->LeftOperatewidget->mapFromGlobal(event->globalPos());
|
|
|
if (event->angleDelta().y() > 0) {
|
|
|
- Left_scaleFactor *= 1.1;
|
|
|
+ updateScale(Left_scaleFactor * 1.1, 0); // 放大
|
|
|
} else {
|
|
|
- double Left_newScaleFactor = Left_scaleFactor * 0.9;
|
|
|
-
|
|
|
- if (Left_newScaleFactor >= 1.0) {
|
|
|
- Left_scaleFactor = Left_newScaleFactor;
|
|
|
- } else {
|
|
|
- Left_scaleFactor = 1.0;
|
|
|
- }
|
|
|
+ updateScale(Left_scaleFactor * 0.9, 0); // 缩小
|
|
|
}
|
|
|
-
|
|
|
- int newWidth_left = Left_currentPixmap.width() * Left_scaleFactor;
|
|
|
- int newHeight_left = Left_currentPixmap.height() * Left_scaleFactor;
|
|
|
-
|
|
|
- QPixmap scaledImage_left = Left_currentPixmap.scaled(newWidth_left, newHeight_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
- // ui->LeftOperatewidget->setPixmap(scaledImage_left);
|
|
|
- // ui->LeftOperatewidget->setPixmapAndPoint(scaledImage_left);
|
|
|
-
|
|
|
- double percentage_left = Left_scaleFactor * 100;
|
|
|
- QString percentageStr_left = QString::number((int)percentage_left);
|
|
|
- ui->Leftlabel_Percentage->setText(QString("%1%").arg(percentageStr_left));
|
|
|
}
|
|
|
|
|
|
- if (ui->RightOperatewidget->rect().contains(ui->RightOperatewidget->mapFromGlobal(event->globalPosition().toPoint()))) {
|
|
|
+ if (ui->RightOperatewidget->rect().contains(ui->RightOperatewidget->mapFromGlobal(event->globalPos()))) {
|
|
|
+ mousePos = ui->RightOperatewidget->mapFromGlobal(event->globalPos());
|
|
|
if (event->angleDelta().y() > 0) {
|
|
|
- Right_scaleFactor *= 1.1;
|
|
|
+ updateScale(Right_scaleFactor * 1.1, 1); // 放大
|
|
|
} else {
|
|
|
- double Right_newScaleFactor = Right_scaleFactor * 0.9;
|
|
|
-
|
|
|
- if (Right_newScaleFactor >= 1.0) {
|
|
|
- Right_scaleFactor = Right_newScaleFactor;
|
|
|
- } else {
|
|
|
- Right_scaleFactor = 1.0;
|
|
|
- }
|
|
|
+ updateScale(Right_scaleFactor * 0.9, 1); // 缩小
|
|
|
}
|
|
|
-
|
|
|
- int newWidth = Right_currentPixmap.width() * Right_scaleFactor;
|
|
|
- int newHeight = Right_currentPixmap.height() * Right_scaleFactor;
|
|
|
-
|
|
|
- QPixmap scaledImage = Right_currentPixmap.scaled(newWidth, newHeight, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
- // ui->RightOperatewidget->setPixmap(scaledImage);
|
|
|
- // ui->RightOperatewidget->setPixmapAndPoint(scaledImage);
|
|
|
-
|
|
|
- double percentage = Right_scaleFactor * 100;
|
|
|
- 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();
|
|
@@ -559,8 +673,8 @@ void MainAndSecondaryCamerasWnd::wheelEvent(QWheelEvent *event)
|
|
|
scrollBar->setValue(scrollBar->value() + 50);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- QMainWindow::wheelEvent(event);
|
|
|
+
|
|
|
+ QMainWindow::wheelEvent(event);
|
|
|
}
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::showEvent(QShowEvent *event) {
|