|
@@ -1,19 +1,19 @@
|
|
|
-#include "viewwidgetgroup.h"
|
|
|
-#include "ui_viewwidgetgroup.h"
|
|
|
+#include "ControlOperationPage.h"
|
|
|
+#include "ui_ControlOperationPage.h"
|
|
|
|
|
|
-ViewWidgetGroup::ViewWidgetGroup(QWidget *parent)
|
|
|
+ControlOperationPage::ControlOperationPage(QWidget *parent)
|
|
|
: QWidget(parent)
|
|
|
- , ui(new Ui::ViewWidgetGroup)
|
|
|
+ , ui(new Ui::ControlOperationPage)
|
|
|
{
|
|
|
ui->setupUi(this);
|
|
|
}
|
|
|
|
|
|
-ViewWidgetGroup::~ViewWidgetGroup()
|
|
|
+ControlOperationPage::~ControlOperationPage()
|
|
|
{
|
|
|
delete ui;
|
|
|
}
|
|
|
|
|
|
-void ViewWidgetGroup::updateOperateWidget(const QPixmap& pixmap, const QStringList& textList){
|
|
|
+void ControlOperationPage::updateOperateWidget(const QPixmap& pixmap, const QStringList& textList){
|
|
|
QSize size = ui->Operatewidget->size();
|
|
|
QPixmap scaledPixmap = pixmap.scaled(size, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
|
|
@@ -30,7 +30,7 @@ void ViewWidgetGroup::updateOperateWidget(const QPixmap& pixmap, const QStringLi
|
|
|
|
|
|
}
|
|
|
// 清除大窗口上当前的布局
|
|
|
-void ViewWidgetGroup::clearLayout() {
|
|
|
+void ControlOperationPage::clearLayout() {
|
|
|
// 获取当前布局
|
|
|
QLayout* layout = ui->Operatewidget->layout();
|
|
|
if (layout) {
|
|
@@ -45,20 +45,20 @@ void ViewWidgetGroup::clearLayout() {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-void ViewWidgetGroup::on_ZoomUpButton_clicked() {
|
|
|
+void ControlOperationPage::on_ZoomUpButton_clicked() {
|
|
|
m_mousePos = ui->Operatewidget->geometry().center();
|
|
|
updateScale(m_scaleFactor * 1.1);
|
|
|
|
|
|
}
|
|
|
|
|
|
-void ViewWidgetGroup::on_ZoomOutButton_clicked() {
|
|
|
+void ControlOperationPage::on_ZoomOutButton_clicked() {
|
|
|
m_mousePos = ui->Operatewidget->geometry().center();
|
|
|
updateScale(m_scaleFactor * 0.9);
|
|
|
|
|
|
}
|
|
|
|
|
|
// 更新缩放比例
|
|
|
-void ViewWidgetGroup::updateScale(double newScaleFactor) {
|
|
|
+void ControlOperationPage::updateScale(double newScaleFactor) {
|
|
|
if (newScaleFactor >= 1.0) {
|
|
|
m_scaleFactor = newScaleFactor;
|
|
|
} else {
|
|
@@ -69,7 +69,7 @@ void ViewWidgetGroup::updateScale(double newScaleFactor) {
|
|
|
}
|
|
|
|
|
|
// 应用缩放
|
|
|
-void ViewWidgetGroup::applyScale() {
|
|
|
+void ControlOperationPage::applyScale() {
|
|
|
if (m_currentMode == ModeImage) {
|
|
|
// 图片模式:缩放图片
|
|
|
int newWidth = m_currentPixmap.width() * m_scaleFactor;
|
|
@@ -91,7 +91,7 @@ void ViewWidgetGroup::applyScale() {
|
|
|
ui->label_Percentage->setText(QString("%1%").arg(percentageStr));
|
|
|
}
|
|
|
|
|
|
-void ViewWidgetGroup::handleDoubleClick(){
|
|
|
+void ControlOperationPage::handleDoubleClick(){
|
|
|
if (m_currentMode == ModeImage) {
|
|
|
QPixmap scaledImage = m_currentPixmap.scaled(m_currentPixmap.width(), m_currentPixmap.height(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
ui->Operatewidget->setPixmap(scaledImage); // 这里传递缩放后的图片
|
|
@@ -106,7 +106,7 @@ void ViewWidgetGroup::handleDoubleClick(){
|
|
|
|
|
|
}
|
|
|
|
|
|
-void ViewWidgetGroup::updateMaterialWidget( kinds materialWndType) {
|
|
|
+void ControlOperationPage::updateMaterialWidget( kinds materialWndType) {
|
|
|
|
|
|
clearLayout();
|
|
|
|
|
@@ -119,7 +119,7 @@ void ViewWidgetGroup::updateMaterialWidget( kinds materialWndType) {
|
|
|
|
|
|
}
|
|
|
|
|
|
-void ViewWidgetGroup::KindsofWidget(kinds kind) {
|
|
|
+void ControlOperationPage::KindsofWidget(kinds kind) {
|
|
|
|
|
|
|
|
|
ui->Operatewidget->clearPixmap();
|
|
@@ -150,27 +150,27 @@ void ViewWidgetGroup::KindsofWidget(kinds kind) {
|
|
|
|
|
|
}
|
|
|
|
|
|
-void ViewWidgetGroup::setWafer(Wafer *wafer){
|
|
|
+void ControlOperationPage::setWafer(Wafer *wafer){
|
|
|
m_wafer = wafer;
|
|
|
updateMaterialWidget(wafer_kind);
|
|
|
|
|
|
}
|
|
|
-void ViewWidgetGroup::setWaffle(Waffle *waffle){
|
|
|
+void ControlOperationPage::setWaffle(Waffle *waffle){
|
|
|
m_waffle = waffle;
|
|
|
updateMaterialWidget(waffle_kind);
|
|
|
}
|
|
|
-void ViewWidgetGroup::setMaterialBox(MaterialBox *materialbox){
|
|
|
+void ControlOperationPage::setMaterialBox(MaterialBox *materialbox){
|
|
|
m_materialbox = materialbox;
|
|
|
updateMaterialWidget(materialbox_kind);
|
|
|
}
|
|
|
-//void ViewWidgetGroup::setBond(Bond *bond){
|
|
|
+//void ControlOperationPage::setBond(Bond *bond){
|
|
|
// m_bond = bond;
|
|
|
//}
|
|
|
|
|
|
-void ViewWidgetGroup::initForm() {
|
|
|
- connect(ui->Operatewidget, &ImageWidget::sendDoubleClicksignal, this, &ViewWidgetGroup::handleDoubleClick);
|
|
|
+void ControlOperationPage::initForm() {
|
|
|
+ connect(ui->Operatewidget, &ImageWidget::sendDoubleClicksignal, this, &ControlOperationPage::handleDoubleClick);
|
|
|
ui->Operatewidget->setMouseTracking(true);
|
|
|
}
|
|
|
-ImageWidget* ViewWidgetGroup::getOperatewidget() {
|
|
|
+ImageWidget* ControlOperationPage::getOperatewidget() {
|
|
|
return ui->Operatewidget;
|
|
|
}
|