|
@@ -42,12 +42,7 @@ MainAndSecondaryCamerasWnd::~MainAndSecondaryCamerasWnd()
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::initFrom()
|
|
|
{
|
|
|
- ui->Leftlabel_Percentage->setAlignment(Qt::AlignCenter);
|
|
|
- ui->Rightlabel_Percentage->setAlignment(Qt::AlignCenter);
|
|
|
-
|
|
|
- connect(ui->LeftOperatewidget,&ImageWidget::sendDoubleClicksignal,this,&MainAndSecondaryCamerasWnd::handleDoubleClick);
|
|
|
- connect(ui->RightOperatewidget,&ImageWidget::sendDoubleClicksignal,this,&MainAndSecondaryCamerasWnd::handleDoubleClick);
|
|
|
-
|
|
|
+
|
|
|
{
|
|
|
// 界面刷新
|
|
|
InitPage();
|
|
@@ -66,8 +61,8 @@ void MainAndSecondaryCamerasWnd::initFrom()
|
|
|
|
|
|
}
|
|
|
|
|
|
- ui->LeftOperatewidget->setMouseTracking(true);
|
|
|
- ui->RightOperatewidget->setMouseTracking(true);
|
|
|
+ //ui->LeftOperatewidget->setMouseTracking(true);
|
|
|
+ //ui->RightOperatewidget->setMouseTracking(true);
|
|
|
|
|
|
QSettings settings2("YourOrganization", "YourApplication_lastWndType");
|
|
|
int lastWndType = settings2.value("LastWndType").toInt();
|
|
@@ -206,11 +201,11 @@ void MainAndSecondaryCamerasWnd::CameraConnectUpdateImageFun(int nIndex, Group*
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::InitModulesShow()
|
|
|
{
|
|
|
- if (m_pMainCameraBind != nullptr)
|
|
|
- {
|
|
|
- DeduplicationBox(ui->axisComboBox, m_pMainCameraBind->m_vecCAxis, 0);
|
|
|
- DeduplicationBox(ui->axisTypeComboBox, m_pMainCameraBind->m_vecCAxis, 1);
|
|
|
- }
|
|
|
+ //if (m_pMainCameraBind != nullptr)
|
|
|
+ //{
|
|
|
+ // DeduplicationBox(ui->axisComboBox, m_pMainCameraBind->m_vecCAxis, 0);
|
|
|
+ // DeduplicationBox(ui->axisTypeComboBox, m_pMainCameraBind->m_vecCAxis, 1);
|
|
|
+ //}
|
|
|
}
|
|
|
|
|
|
template<class T>
|
|
@@ -251,39 +246,7 @@ void MainAndSecondaryCamerasWnd::DeduplicationBox(QComboBox* pCom, const T& veTe
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-void MainAndSecondaryCamerasWnd::handleDoubleClick(){
|
|
|
- QPoint globalMousePos = QCursor::pos(); // 获取当前鼠标的全局位置
|
|
|
- QPoint leftWidgetLocalPos = ui->LeftOperatewidget->mapFromGlobal(globalMousePos);
|
|
|
- QPoint rightWidgetLocalPos = ui->RightOperatewidget->mapFromGlobal(globalMousePos);
|
|
|
- if (ui->LeftOperatewidget->rect().contains(leftWidgetLocalPos)){
|
|
|
- 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)){
|
|
|
- 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::checkSettings() {
|
|
|
QSettings settings("YourCompany", "YourApplication_");
|
|
@@ -304,9 +267,9 @@ void MainAndSecondaryCamerasWnd::loadSettings()
|
|
|
int index = settings.value("Index", 0).toInt();
|
|
|
|
|
|
//TODO: 这个地方目前暂停使用
|
|
|
- loadGroupSettings(groupId, index);
|
|
|
+ //loadGroupSettings(groupId, index);
|
|
|
}
|
|
|
-
|
|
|
+#if 0
|
|
|
void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
|
// isUpdatingSettings = true;
|
|
|
QSettings settings("YourOrganization", "YourApplication");
|
|
@@ -635,7 +598,7 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
|
lastLastGroupId = lastGroupId;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+#endif
|
|
|
void MainAndSecondaryCamerasWnd::UpdataGroupSettings(const QPixmap& imageData)
|
|
|
{
|
|
|
int Id = m_currentSelectGroup.nGroupId;
|
|
@@ -656,229 +619,43 @@ void MainAndSecondaryCamerasWnd::UpdataGroupSettings(const QPixmap& imageData)
|
|
|
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) {
|
|
|
|
|
|
- //newPixmap = QPixmap(imagePath1);
|
|
|
- clearLayout(1);
|
|
|
- newPixmap = QPixmap(imageData);
|
|
|
- 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(imageData);
|
|
|
- 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) {
|
|
|
- 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);
|
|
|
- }
|
|
|
- else if (Last_materialWndType == 2) {
|
|
|
- WaffleWidget(0);
|
|
|
- }
|
|
|
- else if (Last_materialWndType == 3) {
|
|
|
- MaterialBoxWidget(0);
|
|
|
- }
|
|
|
- }
|
|
|
+ newPixmap = QPixmap(imageData);
|
|
|
+ QStringList test = { "1","2" };
|
|
|
+ ui->viewwidgetgroup_R->updateOperateWidget(newPixmap, test);
|
|
|
}
|
|
|
- else if (Index == 2) {
|
|
|
- clearLayout(1);
|
|
|
- clearLayout(0);
|
|
|
|
|
|
if (lastIndex == 1) {
|
|
|
+
|
|
|
+ Last_newPixmap = QPixmap(imageData);
|
|
|
+ QStringList test = { "1","2" };
|
|
|
+ ui->viewwidgetgroup_L->updateOperateWidget(Last_newPixmap, test);
|
|
|
}
|
|
|
+ else if (lastIndex == 2) {
|
|
|
+ updateMaterialWidget(last_left,Last_materialWndType, lastGroupId);
|
|
|
|
|
|
- if (materialWndType == 1) {
|
|
|
-
|
|
|
- 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)
|
|
|
- {
|
|
|
- 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 (Last_materialWndType == 3) {
|
|
|
- MaterialBoxWidget(0);
|
|
|
- }
|
|
|
- }
|
|
|
- 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 == 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) {
|
|
|
- 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 (Last_materialWndType == 3) {
|
|
|
- MaterialBoxWidget(0);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- WaffleWidget(1);
|
|
|
- }
|
|
|
- else if (materialWndType == 3) {
|
|
|
- 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) {
|
|
|
- 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 (Last_materialWndType == 3) {
|
|
|
- MaterialBoxWidget(0);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- MaterialBoxWidget(1);
|
|
|
}
|
|
|
+
|
|
|
+ if (Index == 2) {
|
|
|
+
|
|
|
+ updateMaterialWidget(current_right,materialWndType, Id);
|
|
|
+
|
|
|
}
|
|
|
|
|
|
QSettings settings2("YourOrganization", "YourApplication_lastWndType");
|
|
|
settings2.setValue("LastWndType", lastIndex);
|
|
|
settings2.setValue("LastGroup", lastGroupId);
|
|
|
|
|
|
- // 新的是加载进来的
|
|
|
- QPixmap scaledPixmap_right = newPixmap.scaled(size_right, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
- ui->RightOperatewidget->setPixmap(scaledPixmap_right);
|
|
|
|
|
|
- // 旧的图像直接放到界面上?
|
|
|
- QPixmap scaledPixmap_left = m_lastRightPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
- 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);
|
|
|
-
|
|
|
- // 保存到 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();
|
|
|
|
|
|
+ QPixmap scaledPixmap_right = newPixmap.scaled(ui->viewwidgetgroup_R->getOperatewidget()->size(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
if (isUpdatingSettings) {
|
|
|
lastLastRightPixmap = m_lastRightPixmap;
|
|
|
lastLasttextList = lasttextList;
|
|
@@ -888,74 +665,25 @@ void MainAndSecondaryCamerasWnd::UpdataGroupSettings(const QPixmap& imageData)
|
|
|
lastLastGroupId = lastGroupId;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
-void MainAndSecondaryCamerasWnd::clearLayout(int flag) {
|
|
|
- QWidget* widget = (flag == 1) ? ui->RightOperatewidget : ui->LeftOperatewidget;
|
|
|
- QLayout* layout = widget->layout();
|
|
|
-
|
|
|
- if (layout) {
|
|
|
- QLayoutItem *child;
|
|
|
- while ((child = layout->takeAt(0)) != nullptr) {
|
|
|
- if (child->widget() != nullptr) {
|
|
|
- delete child->widget(); // 删除控件
|
|
|
- }
|
|
|
- delete child; // 删除布局项
|
|
|
+void MainAndSecondaryCamerasWnd::updateMaterialWidget(int side,int materialWndType, int groupId) {
|
|
|
+ if (side == last_left) {
|
|
|
+ switch (materialWndType) {
|
|
|
+ case 1: ui->viewwidgetgroup_L->setWafer(waferMap.value(lastGroupId)); break;
|
|
|
+ case 2: ui->viewwidgetgroup_L->setWaffle(waffleMap.value(lastGroupId)); break;
|
|
|
+ case 3: ui->viewwidgetgroup_L->setMaterialBox(materialBoxMap.value(lastGroupId)); break;
|
|
|
}
|
|
|
- delete layout; // 删除布局本身
|
|
|
}
|
|
|
-}
|
|
|
-
|
|
|
-// 圆晶
|
|
|
-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);
|
|
|
-}
|
|
|
-
|
|
|
-// 华夫盒
|
|
|
-void MainAndSecondaryCamerasWnd::WaffleWidget(int flag) {
|
|
|
- QWidget *operatewidget = ui->LeftOperatewidget;
|
|
|
-
|
|
|
- if (flag == 1) {
|
|
|
- operatewidget = ui->RightOperatewidget;
|
|
|
+ else if (side == current_right) {
|
|
|
+ switch (materialWndType) {
|
|
|
+ case 1: ui->viewwidgetgroup_R->setWafer(waferMap.value(lastGroupId)); break;
|
|
|
+ case 2: ui->viewwidgetgroup_R->setWaffle(waffleMap.value(lastGroupId)); break;
|
|
|
+ case 3: ui->viewwidgetgroup_R->setMaterialBox(materialBoxMap.value(lastGroupId)); break;
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(operatewidget);
|
|
|
- waffle = new Waffle(1, operatewidget);
|
|
|
-
|
|
|
- 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;
|
|
|
- }
|
|
|
|
|
|
- QVBoxLayout *layout = new QVBoxLayout(operatewidget);
|
|
|
- materialbox = new MaterialBox(1, operatewidget);
|
|
|
|
|
|
- layout->setContentsMargins(0, 0, 0, 0);
|
|
|
- layout->addWidget(materialbox);
|
|
|
- operatewidget->setLayout(layout);
|
|
|
- operatewidget->setFixedSize(476, 476);
|
|
|
-}
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::InitMainCameraBind(CameraBind* pCameraBind)
|
|
|
{
|
|
@@ -970,10 +698,10 @@ void MainAndSecondaryCamerasWnd::UpdateCameraDisplay0(int iCameraId, JVision::Im
|
|
|
{
|
|
|
// TODO: 这里需要改动
|
|
|
QImage image(imageData.data, imageData.width, imageData.height, QImage::Format_Indexed8);
|
|
|
- ui->LeftOperatewidget->setGeometry(ui->LeftOperatewidget->pos().x(),
|
|
|
- ui->LeftOperatewidget->pos().y(),
|
|
|
- ui->LeftOperatewidget->width(),
|
|
|
- ui->LeftOperatewidget->height());
|
|
|
+ ui->viewwidgetgroup_L->getOperatewidget()->setGeometry(ui->viewwidgetgroup_L->getOperatewidget()->pos().x(),
|
|
|
+ ui->viewwidgetgroup_L->getOperatewidget()->pos().y(),
|
|
|
+ ui->viewwidgetgroup_L->getOperatewidget()->width(),
|
|
|
+ ui->viewwidgetgroup_L->getOperatewidget()->height());
|
|
|
//ui->LeftOperatewidget->setPixmap(QPixmap::fromImage(image));
|
|
|
emit UpDataImageShowSignals0(QPixmap::fromImage(image));
|
|
|
}
|
|
@@ -981,10 +709,10 @@ void MainAndSecondaryCamerasWnd::UpdateCameraDisplay0(int iCameraId, JVision::Im
|
|
|
void MainAndSecondaryCamerasWnd::UpdateCameraDisplay1(int iCameraId, JVision::ImageInfo imageData)
|
|
|
{
|
|
|
QImage image(imageData.data, imageData.width, imageData.height, QImage::Format_Indexed8);
|
|
|
- ui->RightOperatewidget->setGeometry(ui->RightOperatewidget->pos().x(),
|
|
|
- ui->RightOperatewidget->pos().y(),
|
|
|
- ui->RightOperatewidget->width(),
|
|
|
- ui->RightOperatewidget->height());
|
|
|
+ ui->viewwidgetgroup_R->getOperatewidget()->setGeometry(ui->viewwidgetgroup_R->getOperatewidget()->pos().x(),
|
|
|
+ ui->viewwidgetgroup_R->getOperatewidget()->pos().y(),
|
|
|
+ ui->viewwidgetgroup_R->getOperatewidget()->width(),
|
|
|
+ ui->viewwidgetgroup_R->getOperatewidget()->height());
|
|
|
//ui->RightOperatewidget->setPixmap(QPixmap::fromImage(image));
|
|
|
emit UpDataImageShowSignals1(QPixmap::fromImage(image));
|
|
|
}
|
|
@@ -1002,77 +730,16 @@ void MainAndSecondaryCamerasWnd::UpdateCameraDisplay3(int iCameraId, JVision::Im
|
|
|
void MainAndSecondaryCamerasWnd::UpdateCameraDisplay4(int iCameraId, JVision::ImageInfo imageData)
|
|
|
{
|
|
|
QImage image(imageData.data, imageData.width, imageData.height, QImage::Format_Indexed8);
|
|
|
- ui->RightOperatewidget->setGeometry(ui->RightOperatewidget->pos().x(),
|
|
|
- ui->RightOperatewidget->pos().y(),
|
|
|
- ui->RightOperatewidget->width(),
|
|
|
- ui->RightOperatewidget->height());
|
|
|
+ ui->viewwidgetgroup_R->getOperatewidget()->setGeometry(ui->viewwidgetgroup_R->getOperatewidget()->pos().x(),
|
|
|
+ ui->viewwidgetgroup_R->getOperatewidget()->pos().y(),
|
|
|
+ ui->viewwidgetgroup_R->getOperatewidget()->width(),
|
|
|
+ ui->viewwidgetgroup_R->getOperatewidget()->height());
|
|
|
//ui->RightOperatewidget->setPixmap(QPixmap::fromImage(image));
|
|
|
emit UpDataImageShowSignals4(QPixmap::fromImage(image));
|
|
|
}
|
|
|
|
|
|
-// 更新缩放比例
|
|
|
-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
|
|
|
- }
|
|
|
- }
|
|
|
|
|
|
- applyScale(flag); // 应用缩放
|
|
|
-}
|
|
|
|
|
|
-// 应用缩放
|
|
|
-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);
|
|
|
- }
|
|
|
-
|
|
|
- // 更新百分比显示
|
|
|
- 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 = Right_scaleFactor * 100;
|
|
|
- QString percentageStr = QString::number((int)percentage);
|
|
|
- ui->Rightlabel_Percentage->setText(QString("%1%").arg(percentageStr));
|
|
|
- }
|
|
|
-}
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::HideLayout(QHBoxLayout* layout, bool isHide)
|
|
|
{
|
|
@@ -1136,36 +803,12 @@ void MainAndSecondaryCamerasWnd::timerEvent(QTimerEvent* event)
|
|
|
int nID = event->timerId();
|
|
|
}
|
|
|
|
|
|
-void MainAndSecondaryCamerasWnd::on_LeftZoomUpButton_clicked()
|
|
|
-{
|
|
|
- mousePos = ui->LeftOperatewidget->geometry().center();
|
|
|
- updateScale(Left_scaleFactor * 1.1, 0);
|
|
|
-
|
|
|
-}
|
|
|
|
|
|
|
|
|
-void MainAndSecondaryCamerasWnd::on_RightZoomUpButton_clicked()
|
|
|
-{
|
|
|
- mousePos = ui->RightOperatewidget->geometry().center();
|
|
|
- updateScale(Right_scaleFactor * 1.1, 1);
|
|
|
|
|
|
-}
|
|
|
|
|
|
|
|
|
-void MainAndSecondaryCamerasWnd::on_LeftZoomOutButton_clicked()
|
|
|
-{
|
|
|
- mousePos = ui->LeftOperatewidget->geometry().center();
|
|
|
- updateScale(Left_scaleFactor * 0.9, 0);
|
|
|
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-void MainAndSecondaryCamerasWnd::on_RightZoomOutButton_clicked()
|
|
|
-{
|
|
|
- mousePos = ui->RightOperatewidget->geometry().center();
|
|
|
- updateScale(Right_scaleFactor * 0.9, 1);
|
|
|
-
|
|
|
-}
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::ResetIdleTimer(bool bStart /*= false*/)
|
|
|
{
|
|
@@ -1250,7 +893,7 @@ void MainAndSecondaryCamerasWnd::GetCurrentSelectSlots(int groupId, int nIndex)
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- loadGroupSettings(groupId, nIndex);
|
|
|
+ //loadGroupSettings(groupId, nIndex);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1281,9 +924,9 @@ void MainAndSecondaryCamerasWnd::GetCurrentSelectSlots(int groupId, int nIndex)
|
|
|
void MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0(const QPixmap& imageData)
|
|
|
{
|
|
|
//lastIndex = 1;
|
|
|
- QSize size_left = ui->LeftOperatewidget->size();
|
|
|
+ QSize size_left = ui->viewwidgetgroup_L->getOperatewidget()->size();
|
|
|
QPixmap scaledPixmap_left = m_lastRightPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
- ui->LeftOperatewidget->setPixmap(scaledPixmap_left);
|
|
|
+ ui->viewwidgetgroup_L->getOperatewidget()->setPixmap(scaledPixmap_left);
|
|
|
m_lastRightPixmap = imageData;
|
|
|
//UpdataGroupSettings(imageData);
|
|
|
}
|
|
@@ -1296,30 +939,32 @@ void MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals1(const QPixmap& image
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4(const QPixmap& imageData)
|
|
|
{
|
|
|
- QSize size_left = ui->RightOperatewidget->size();
|
|
|
+ QSize size_left = ui->viewwidgetgroup_R->getOperatewidget()->size();
|
|
|
QPixmap scaledPixmap_left = imageData.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
- ui->RightOperatewidget->setPixmap(scaledPixmap_left);
|
|
|
+ ui->viewwidgetgroup_R->getOperatewidget()->setPixmap(scaledPixmap_left);
|
|
|
//m_lastRightPixmap = imageData;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
void MainAndSecondaryCamerasWnd::wheelEvent(QWheelEvent *event)
|
|
|
{
|
|
|
- if (ui->LeftOperatewidget->rect().contains(ui->LeftOperatewidget->mapFromGlobal(event->globalPos()))) {
|
|
|
- mousePos = ui->LeftOperatewidget->mapFromGlobal(event->globalPos());
|
|
|
- if (event->angleDelta().y() > 0) {
|
|
|
- updateScale(Left_scaleFactor * 1.1, 0); // 放大
|
|
|
- } else {
|
|
|
- updateScale(Left_scaleFactor * 0.9, 0); // 缩小
|
|
|
- }
|
|
|
+ if (ui->viewwidgetgroup_L->getOperatewidget()->rect().contains(ui->viewwidgetgroup_L->getOperatewidget()->mapFromGlobal(event->globalPos()))) {
|
|
|
+ mousePos = ui->viewwidgetgroup_L->getOperatewidget()->mapFromGlobal(event->globalPos());
|
|
|
+ if (event->angleDelta().y() > 0) {
|
|
|
+ ui->viewwidgetgroup_L->updateScale(Left_scaleFactor * 1.1); // 放大
|
|
|
+ } else {
|
|
|
+ ui->viewwidgetgroup_L->updateScale(Left_scaleFactor * 0.9); // 缩小
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- if (ui->RightOperatewidget->rect().contains(ui->RightOperatewidget->mapFromGlobal(event->globalPos()))) {
|
|
|
- mousePos = ui->RightOperatewidget->mapFromGlobal(event->globalPos());
|
|
|
- if (event->angleDelta().y() > 0) {
|
|
|
- updateScale(Right_scaleFactor * 1.1, 1); // 放大
|
|
|
- } else {
|
|
|
- updateScale(Right_scaleFactor * 0.9, 1); // 缩小
|
|
|
- }
|
|
|
+ if (ui->viewwidgetgroup_R->getOperatewidget()->rect().contains(ui->viewwidgetgroup_R->getOperatewidget()->mapFromGlobal(event->globalPos()))) {
|
|
|
+ mousePos = ui->viewwidgetgroup_R->getOperatewidget()->mapFromGlobal(event->globalPos());
|
|
|
+ if (event->angleDelta().y() > 0) {
|
|
|
+ ui->viewwidgetgroup_R->updateScale(Right_scaleFactor * 1.1); // 放大
|
|
|
+ } else {
|
|
|
+ ui->viewwidgetgroup_R->updateScale(Right_scaleFactor * 0.9); // 缩小
|
|
|
+ }
|
|
|
}
|
|
|
if (ui->scrollArea->rect().contains(ui->scrollArea->mapFromGlobal(event->globalPos()))) {
|
|
|
// 获取 QScrollArea 的横向滚动条
|