yun 3 days ago
parent
commit
3fabde51a7

+ 176 - 0
View/die-bonder-ui/Src/RewriteControl/viewwidgetgroup.cpp

@@ -0,0 +1,176 @@
+#include "viewwidgetgroup.h"
+#include "ui_viewwidgetgroup.h"
+
+ViewWidgetGroup::ViewWidgetGroup(QWidget *parent)
+    : QWidget(parent)
+    , ui(new Ui::ViewWidgetGroup)
+{
+    ui->setupUi(this);
+}
+
+ViewWidgetGroup::~ViewWidgetGroup()
+{
+    delete ui;
+}
+
+void ViewWidgetGroup::updateOperateWidget(const QPixmap& pixmap, const QStringList& textList){
+    QSize size = ui->Operatewidget->size();
+    QPixmap scaledPixmap = pixmap.scaled(size, Qt::KeepAspectRatio, Qt::SmoothTransformation);
+
+        clearLayout();
+
+        ui->Operatewidget->setPixmap(scaledPixmap);
+        m_currentPixmap = scaledPixmap;
+        m_scaleFactor = 1.0;
+        m_previousScaleFactor = 1.0;
+        ui->label_Percentage->setText("100%");
+        ui->DataSources->clear();
+        ui->DataSources->addItems(textList);
+        m_currentMode = ModeImage;
+
+}
+// 清除大窗口上当前的布局
+void ViewWidgetGroup::clearLayout() {
+    // 获取当前布局
+    QLayout* layout = ui->Operatewidget->layout();
+    if (layout) {
+        QLayoutItem *child;
+        while ((child = layout->takeAt(0)) != nullptr) {
+            if (child->widget() != nullptr) {
+                delete child->widget();  // 删除控件
+            }
+            delete child;  // 删除布局项
+        }
+        delete layout;  // 删除布局本身
+    }
+}
+
+void ViewWidgetGroup::on_ZoomUpButton_clicked() {
+    m_mousePos = ui->Operatewidget->geometry().center();
+    updateScale(m_scaleFactor * 1.1);
+
+}
+
+void ViewWidgetGroup::on_ZoomOutButton_clicked() {
+    m_mousePos = ui->Operatewidget->geometry().center();
+    updateScale(m_scaleFactor * 0.9);
+
+}
+
+// 更新缩放比例
+void ViewWidgetGroup::updateScale(double newScaleFactor) {
+    if (newScaleFactor >= 1.0) {
+        m_scaleFactor = newScaleFactor;
+    } else {
+        m_scaleFactor = 1.0; // 最小缩放比例为 1.0
+    }
+
+    applyScale(); // 应用缩放
+}
+
+// 应用缩放
+void ViewWidgetGroup::applyScale() {
+    if (m_currentMode == ModeImage) {
+        // 图片模式:缩放图片
+        int newWidth = m_currentPixmap.width() * m_scaleFactor;
+        int newHeight = m_currentPixmap.height() * m_scaleFactor;
+
+        QPixmap scaledImage = m_currentPixmap.scaled(newWidth, newHeight, Qt::KeepAspectRatio, Qt::SmoothTransformation);
+        ui->Operatewidget->setPixmapAndPoint(scaledImage, m_previousScaleFactor, m_scaleFactor, m_mousePos);
+        m_previousScaleFactor = m_scaleFactor;
+    } else if (m_currentMode == ModeView && m_currentView) {
+        // View 模式:缩放 view
+        QTransform transform;
+        transform.scale(m_scaleFactor, m_scaleFactor);
+        m_currentView->setTransform(transform);
+    }
+
+    // 更新百分比显示
+    double percentage = m_scaleFactor * 100;
+    QString percentageStr = QString::number((int)percentage);
+    ui->label_Percentage->setText(QString("%1%").arg(percentageStr));
+}
+
+void ViewWidgetGroup::handleDoubleClick(){
+    if (m_currentMode == ModeImage) {
+        QPixmap scaledImage = m_currentPixmap.scaled(m_currentPixmap.width(), m_currentPixmap.height(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
+        ui->Operatewidget->setPixmap(scaledImage); // 这里传递缩放后的图片
+    } else if (m_currentMode == ModeView && m_currentView) {
+        QTransform transform;
+        transform.scale(1, 1);
+        m_currentView->setTransform(transform);
+    }
+    m_scaleFactor = 1.0;
+    m_previousScaleFactor = 1.0;
+    ui->label_Percentage->setText("100%");
+
+}
+
+void ViewWidgetGroup::updateMaterialWidget( kinds materialWndType) {
+
+        clearLayout();
+
+        switch (materialWndType) {
+        case wafer_kind: KindsofWidget(wafer_kind); break;
+        case waffle_kind: KindsofWidget(waffle_kind); break;
+        case materialbox_kind: KindsofWidget(materialbox_kind); break;
+        case bond_kind:KindsofWidget(bond_kind);break;
+        }
+
+}
+
+void ViewWidgetGroup::KindsofWidget(kinds kind) {
+
+
+        ui->Operatewidget->clearPixmap();
+        QVBoxLayout *layout = new QVBoxLayout(ui->Operatewidget);
+        layout->setContentsMargins(0, 0, 0, 0);
+        m_currentMode = ModeView;
+        if(kind == wafer_kind){
+            m_wafer->initFrom(ui->Operatewidget);
+            layout->addWidget(m_wafer->view);
+            m_currentView = m_wafer->view;
+        }else if(kind == waffle_kind){
+            m_waffle->initFrom(ui->Operatewidget);
+            layout->addWidget(m_waffle->view);
+            m_currentView = m_waffle->view;
+        }else if(kind == materialbox_kind){
+            m_materialbox->initFrom(ui->Operatewidget);
+            layout->addWidget(m_materialbox->view);
+            m_currentView = m_materialbox->view;
+        }else{
+
+        }
+
+        ui->Operatewidget->setLayout(layout);
+        m_currentMode = ModeView;
+
+        m_scaleFactor = 1.0;
+        applyScale();
+
+}
+
+void ViewWidgetGroup::setWafer(Wafer *wafer){
+    m_wafer = wafer;
+    updateMaterialWidget(wafer_kind);
+    
+}
+void ViewWidgetGroup::setWaffle(Waffle *waffle){
+    m_waffle = waffle;
+    updateMaterialWidget(waffle_kind);
+}
+void ViewWidgetGroup::setMaterialBox(MaterialBox *materialbox){
+    m_materialbox = materialbox;
+    updateMaterialWidget(materialbox_kind);
+}
+//void ViewWidgetGroup::setBond(Bond *bond){
+//    m_bond = bond;
+//}
+
+void ViewWidgetGroup::initForm() {
+    connect(ui->Operatewidget, &ImageWidget::sendDoubleClicksignal, this, &ViewWidgetGroup::handleDoubleClick);
+    ui->Operatewidget->setMouseTracking(true);
+}
+ImageWidget* ViewWidgetGroup::getOperatewidget() {
+    return ui->Operatewidget;
+}

+ 63 - 0
View/die-bonder-ui/Src/RewriteControl/viewwidgetgroup.h

@@ -0,0 +1,63 @@
+#ifndef VIEWWIDGETGROUP_H
+#define VIEWWIDGETGROUP_H
+
+#include <QWidget>
+#include <QVBoxLayout>
+#include <QstringList.h>
+#include "CameraMaterialGroupWnd/MaterialWindow/Wafer.h"
+#include "CameraMaterialGroupWnd/MaterialWindow/Waffle.h"
+#include "CameraMaterialGroupWnd/MaterialWindow/MaterialBox.h"
+#include "OriginalWnd/CameraDataHandleAndShow.h"
+#include "CameraMaterialGroupWnd/CameraImage/CameraImageHandler.h"
+#include "ImageWidget.h"
+namespace Ui {
+class ViewWidgetGroup;
+}
+class ViewWidgetGroup : public QWidget
+{
+    Q_OBJECT
+
+public:
+    enum kinds{
+        wafer_kind,
+        waffle_kind,
+        materialbox_kind,
+        bond_kind
+    };
+    explicit ViewWidgetGroup(QWidget *parent = nullptr);
+    ~ViewWidgetGroup();
+    void initForm();
+    void updateOperateWidget(const QPixmap& pixmap, const QStringList& textList);
+    void clearLayout();
+    void updateScale(double newScaleFactor);
+    void applyScale();
+    void updateMaterialWidget( kinds materialWndType);
+    void KindsofWidget(kinds kind);
+    void setWafer(Wafer *wafer);
+    void setWaffle(Waffle *waffle);
+    void setMaterialBox(MaterialBox *materialbox);
+    //void setBond(Bond *bond);
+    ImageWidget* getOperatewidget();
+
+private slots:
+    void on_ZoomUpButton_clicked();
+    void on_ZoomOutButton_clicked();
+    // void on_RulerButton_clicked();
+
+    //void on_PenButton_clicked();
+    void handleDoubleClick();
+private:
+    Ui::ViewWidgetGroup *ui;
+    QPixmap m_currentPixmap;
+    qreal m_scaleFactor;
+    QPoint m_mousePos;
+    OperateMode m_currentMode = ModeImage;
+    QGraphicsView *m_currentView = nullptr;
+    double m_previousScaleFactor;
+    Wafer *m_wafer; // 声明Wafer指针
+    Waffle *m_waffle; // 声明Waffle指针
+    MaterialBox *m_materialbox; // 声明materialbox指针
+    //Bond *m_bond;
+};
+
+#endif // VIEWWIDGETGROUP_H

+ 240 - 0
View/die-bonder-ui/Src/RewriteControl/viewwidgetgroup.ui

@@ -0,0 +1,240 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>ViewWidgetGroup</class>
+ <widget class="QWidget" name="ViewWidgetGroup">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>525</width>
+    <height>605</height>
+   </rect>
+  </property>
+  <property name="windowTitle">
+   <string>Form</string>
+  </property>
+  <widget class="QPushButton" name="LiveButton">
+   <property name="geometry">
+    <rect>
+     <x>452</x>
+     <y>20</y>
+     <width>60</width>
+     <height>32</height>
+    </rect>
+   </property>
+   <property name="text">
+    <string>Live</string>
+   </property>
+  </widget>
+  <widget class="QComboBox" name="DataSources">
+   <property name="geometry">
+    <rect>
+     <x>34</x>
+     <y>20</y>
+     <width>400</width>
+     <height>32</height>
+    </rect>
+   </property>
+  </widget>
+  <widget class="QWidget" name="Toolbar" native="true">
+   <property name="geometry">
+    <rect>
+     <x>20</x>
+     <y>572</y>
+     <width>504</width>
+     <height>32</height>
+    </rect>
+   </property>
+   <widget class="Line" name="line">
+    <property name="geometry">
+     <rect>
+      <x>80</x>
+      <y>8</y>
+      <width>1</width>
+      <height>16</height>
+     </rect>
+    </property>
+    <property name="orientation">
+     <enum>Qt::Vertical</enum>
+    </property>
+   </widget>
+   <widget class="QPushButton" name="ZoomUpButton">
+    <property name="geometry">
+     <rect>
+      <x>0</x>
+      <y>0</y>
+      <width>78</width>
+      <height>32</height>
+     </rect>
+    </property>
+    <property name="text">
+     <string/>
+    </property>
+   </widget>
+   <widget class="Line" name="line_3">
+    <property name="geometry">
+     <rect>
+      <x>156</x>
+      <y>8</y>
+      <width>1</width>
+      <height>16</height>
+     </rect>
+    </property>
+    <property name="orientation">
+     <enum>Qt::Vertical</enum>
+    </property>
+   </widget>
+   <widget class="Line" name="line_4">
+    <property name="geometry">
+     <rect>
+      <x>255</x>
+      <y>8</y>
+      <width>1</width>
+      <height>16</height>
+     </rect>
+    </property>
+    <property name="orientation">
+     <enum>Qt::Vertical</enum>
+    </property>
+   </widget>
+   <widget class="Line" name="line_5">
+    <property name="geometry">
+     <rect>
+      <x>343</x>
+      <y>8</y>
+      <width>1</width>
+      <height>16</height>
+     </rect>
+    </property>
+    <property name="orientation">
+     <enum>Qt::Vertical</enum>
+    </property>
+   </widget>
+   <widget class="Line" name="line_6">
+    <property name="geometry">
+     <rect>
+      <x>415</x>
+      <y>8</y>
+      <width>1</width>
+      <height>16</height>
+     </rect>
+    </property>
+    <property name="orientation">
+     <enum>Qt::Vertical</enum>
+    </property>
+   </widget>
+   <widget class="QPushButton" name="pushButton_2">
+    <property name="geometry">
+     <rect>
+      <x>417</x>
+      <y>0</y>
+      <width>87</width>
+      <height>32</height>
+     </rect>
+    </property>
+    <property name="text">
+     <string>.......</string>
+    </property>
+   </widget>
+   <widget class="QPushButton" name="ZoomOutButton">
+    <property name="geometry">
+     <rect>
+      <x>82</x>
+      <y>0</y>
+      <width>72</width>
+      <height>32</height>
+     </rect>
+    </property>
+    <property name="text">
+     <string/>
+    </property>
+   </widget>
+   <widget class="QPushButton" name="RulerButton">
+    <property name="geometry">
+     <rect>
+      <x>257</x>
+      <y>0</y>
+      <width>84</width>
+      <height>32</height>
+     </rect>
+    </property>
+    <property name="text">
+     <string/>
+    </property>
+   </widget>
+   <widget class="QPushButton" name="PenButton">
+    <property name="geometry">
+     <rect>
+      <x>345</x>
+      <y>0</y>
+      <width>68</width>
+      <height>32</height>
+     </rect>
+    </property>
+    <property name="text">
+     <string/>
+    </property>
+   </widget>
+   <widget class="QLabel" name="label_Percentage">
+    <property name="geometry">
+     <rect>
+      <x>158</x>
+      <y>0</y>
+      <width>95</width>
+      <height>32</height>
+     </rect>
+    </property>
+    <property name="layoutDirection">
+     <enum>Qt::LeftToRight</enum>
+    </property>
+    <property name="text">
+     <string>100%</string>
+    </property>
+   </widget>
+   <zorder>PenButton</zorder>
+   <zorder>line</zorder>
+   <zorder>ZoomUpButton</zorder>
+   <zorder>line_3</zorder>
+   <zorder>line_4</zorder>
+   <zorder>line_5</zorder>
+   <zorder>line_6</zorder>
+   <zorder>pushButton_2</zorder>
+   <zorder>ZoomOutButton</zorder>
+   <zorder>RulerButton</zorder>
+   <zorder>label_Percentage</zorder>
+  </widget>
+  <widget class="QWidget" name="BackGround" native="true">
+   <property name="geometry">
+    <rect>
+     <x>30</x>
+     <y>72</y>
+     <width>484</width>
+     <height>484</height>
+    </rect>
+   </property>
+   <property name="styleSheet">
+    <string notr="true">border: 4px solid red;</string>
+   </property>
+   <widget class="ImageWidget" name="Operatewidget" native="true">
+    <property name="geometry">
+     <rect>
+      <x>4</x>
+      <y>4</y>
+      <width>476</width>
+      <height>476</height>
+     </rect>
+    </property>
+   </widget>
+  </widget>
+ </widget>
+ <customwidgets>
+  <customwidget>
+   <class>ImageWidget</class>
+   <extends>QWidget</extends>
+   <header>ImageWidget.h</header>
+   <container>1</container>
+  </customwidget>
+ </customwidgets>
+ <resources/>
+ <connections/>
+</ui>