|
@@ -5,6 +5,7 @@
|
|
|
#include "Group.h"
|
|
|
#include <QVBoxLayout>
|
|
|
#include <QTimer>
|
|
|
+#include "CameraImage/CameraImageHandler.h"
|
|
|
|
|
|
MainAndSecondaryCamerasWnd::MainAndSecondaryCamerasWnd(QWidget *parent)
|
|
|
: QMainWindow(parent)
|
|
@@ -12,6 +13,14 @@ MainAndSecondaryCamerasWnd::MainAndSecondaryCamerasWnd(QWidget *parent)
|
|
|
{
|
|
|
ui->setupUi(this);
|
|
|
|
|
|
+ QSettings settings("YourOrganization", "YourApplication");
|
|
|
+ settings.beginGroup("LastSettings");
|
|
|
+ lastRightPixmap = settings.value("LastRightPixmap").value<QPixmap>();
|
|
|
+ lasttextList = settings.value("LasttextList").toStringList();
|
|
|
+ lastLastRightPixmap = settings.value("LastLastRightPixmap").value<QPixmap>();
|
|
|
+ lastLasttextList = settings.value("LastLasttextList").toStringList();
|
|
|
+ settings.endGroup();
|
|
|
+
|
|
|
initFrom();
|
|
|
}
|
|
|
|
|
@@ -22,6 +31,7 @@ MainAndSecondaryCamerasWnd::~MainAndSecondaryCamerasWnd()
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::initFrom()
|
|
|
{
|
|
|
+
|
|
|
QTimer *timer = new QTimer(this);
|
|
|
connect(timer, &QTimer::timeout, this, &MainAndSecondaryCamerasWnd::checkSettings);
|
|
|
timer->start(100);
|
|
@@ -41,87 +51,42 @@ void MainAndSecondaryCamerasWnd::initFrom()
|
|
|
|
|
|
QWidget *viewport = ui->scrollArea->viewport();
|
|
|
QWidget *container = new QWidget(viewport);
|
|
|
-
|
|
|
- // 创建水平布局
|
|
|
QHBoxLayout *mainLayout = new QHBoxLayout(container);
|
|
|
|
|
|
- // 创建四个垂直布局,分别用于四个区域
|
|
|
- QVBoxLayout *vLayout1 = new QVBoxLayout();
|
|
|
- QVBoxLayout *vLayout2 = new QVBoxLayout();
|
|
|
- QVBoxLayout *vLayout3 = new QVBoxLayout();
|
|
|
- QVBoxLayout *vLayout4 = new QVBoxLayout();
|
|
|
-
|
|
|
- vLayout1->setSpacing(16);
|
|
|
- vLayout1->setMargin(0);
|
|
|
- vLayout2->setSpacing(16);
|
|
|
- vLayout2->setMargin(0);
|
|
|
- vLayout3->setSpacing(16);
|
|
|
- vLayout3->setMargin(0);
|
|
|
- vLayout4->setSpacing(16);
|
|
|
- vLayout4->setMargin(0);
|
|
|
-
|
|
|
- QStringList dispmodel1;
|
|
|
- dispmodel1 << "P die align" << "D device align";
|
|
|
- Group *widget1 = new Group(16, ":/images/test_image/image_1.png", ":/images/test_image/image_2.png", dispmodel1, this);
|
|
|
-
|
|
|
- QStringList dispmodel2;
|
|
|
- dispmodel2 << "D device align" << "P die align";
|
|
|
- Group *widget2 = new Group(17, ":/images/test_image/image_3.png", ":/images/test_image/image_4.png", dispmodel2, this);
|
|
|
-
|
|
|
- QStringList dispmodel3;
|
|
|
- dispmodel3 << "B device align" << "P die align";
|
|
|
- Group *widget3 = new Group(18, ":/images/test_image/image_5.png", ":/images/test_image/image_6.png", dispmodel3, this);
|
|
|
-
|
|
|
- QStringList dispmodel4;
|
|
|
- dispmodel4 << "U die align" << "D device align";
|
|
|
- Group *widget4 = new Group(19, ":/images/test_image/image_7.png", ":/images/test_image/image_8.png", dispmodel4, this);
|
|
|
-
|
|
|
- QStringList dispmodel5;
|
|
|
- dispmodel5 << "P die align" << "D device align";
|
|
|
- Group *widget5 = new Group(20, ":/images/test_image/image_1.png", ":/images/test_image/image_2.png", dispmodel1, this);
|
|
|
-
|
|
|
- QStringList dispmodel6;
|
|
|
- dispmodel6 << "D device align" << "P die align";
|
|
|
- Group *widget6 = new Group(21, ":/images/test_image/image_3.png", ":/images/test_image/image_4.png", dispmodel2, this);
|
|
|
-
|
|
|
- QStringList dispmodel7;
|
|
|
- dispmodel7 << "B device align" << "P die align";
|
|
|
- Group *widget7 = new Group(22, ":/images/test_image/image_5.png", ":/images/test_image/image_6.png", dispmodel3, this);
|
|
|
-
|
|
|
- QStringList dispmodel8;
|
|
|
- dispmodel8 << "U die align" << "D device align";
|
|
|
- Group *widget8 = new Group(23, ":/images/test_image/image_7.png", ":/images/test_image/image_8.png", dispmodel4, this);
|
|
|
-
|
|
|
- vLayout1->addWidget(widget1);
|
|
|
- vLayout1->addWidget(widget8);
|
|
|
- vLayout2->addWidget(widget7);
|
|
|
- vLayout2->addWidget(widget2);
|
|
|
- vLayout3->addWidget(widget3);
|
|
|
- vLayout3->addWidget(widget6);
|
|
|
- vLayout4->addWidget(widget5);
|
|
|
- vLayout4->addWidget(widget4);
|
|
|
+ mainLayout->setSpacing(28);
|
|
|
+ mainLayout->setMargin(0);
|
|
|
|
|
|
+ QList<int> numbers = {1, 2, 3, 4, 5, 6, 7, 8};
|
|
|
+
|
|
|
+ QList<Group*> widgets;
|
|
|
+
|
|
|
+ for (int i = 0; i < numbers.size(); ++i) {
|
|
|
+ int num = numbers[i];
|
|
|
+ CameraImageHandler* manager = new CameraImageHandler(num);
|
|
|
+ Group* widget = manager->getGroup();
|
|
|
+
|
|
|
+ if (widget != nullptr) {
|
|
|
+ mainLayout->addWidget(widget);
|
|
|
+ widgets.append(widget);
|
|
|
+ }
|
|
|
+
|
|
|
+ delete manager;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 设置控件的最小高度和最大宽度
|
|
|
int minHeight = 162;
|
|
|
int maxWidth = 244;
|
|
|
- QWidgetList widgets = {widget1, widget2, widget3, widget4, widget5, widget6, widget7, widget8};
|
|
|
- for (QWidget *w : widgets) {
|
|
|
+ int num = -28;
|
|
|
+ for (Group* w : widgets) {
|
|
|
w->setMinimumHeight(minHeight);
|
|
|
w->setMaximumWidth(maxWidth);
|
|
|
+ num = num + 272;
|
|
|
}
|
|
|
|
|
|
- mainLayout->addLayout(vLayout1);
|
|
|
- mainLayout->addSpacing(8); // 第一个和第二个之间的间距
|
|
|
- mainLayout->addLayout(vLayout2);
|
|
|
- mainLayout->addSpacing(52); // 第二个和第三个之间的间距
|
|
|
- mainLayout->addLayout(vLayout3);
|
|
|
- mainLayout->addSpacing(8); // 第三个和第四个之间的间距
|
|
|
- mainLayout->addLayout(vLayout4);
|
|
|
-
|
|
|
- mainLayout->setContentsMargins(0, 0, 8, 0);
|
|
|
-
|
|
|
+ container->setMinimumSize(num, 162);
|
|
|
container->setLayout(mainLayout);
|
|
|
ui->scrollArea->setWidget(container);
|
|
|
- ui->scrollArea->resize(1083, 162);
|
|
|
+ ui->scrollArea->resize(1062, 177);
|
|
|
|
|
|
ui->LeftOperatewidget->setMouseTracking(true);
|
|
|
ui->RightOperatewidget->setMouseTracking(true);
|
|
@@ -194,25 +159,31 @@ void MainAndSecondaryCamerasWnd::loadSettings()
|
|
|
}
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
|
+ // isUpdatingSettings = true;
|
|
|
QSettings settings("YourOrganization", "YourApplication");
|
|
|
settings.beginGroup(QString::number(Id));
|
|
|
QString imagePath1 = settings.value("ImagePath1").toString();
|
|
|
QString imagePath2 = settings.value("ImagePath2").toString();
|
|
|
QStringList 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 LeftPixmap = QPixmap(imagePath2);
|
|
|
- QPixmap RightPixmap = QPixmap(imagePath1);
|
|
|
-
|
|
|
- QPixmap scaledPixmap_left = LeftPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
- ui->LeftOperatewidget->setPixmap(scaledPixmap_left);
|
|
|
+ QPixmap newPixmap;
|
|
|
+ if (Index == 1) {
|
|
|
+ newPixmap = QPixmap(imagePath1);
|
|
|
+ } else if (Index == 2) {
|
|
|
+ newPixmap = QPixmap(imagePath2);
|
|
|
+ }
|
|
|
|
|
|
- QPixmap scaledPixmap_right = RightPixmap.scaled(size_right, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
+ QPixmap scaledPixmap_right = newPixmap.scaled(size_right, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
ui->RightOperatewidget->setPixmap(scaledPixmap_right);
|
|
|
|
|
|
+ QPixmap scaledPixmap_left = lastRightPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
+ ui->LeftOperatewidget->setPixmap(scaledPixmap_left);
|
|
|
+
|
|
|
// 更新当前图片的成员变量
|
|
|
Left_currentPixmap = scaledPixmap_left;
|
|
|
Left_scaleFactor = 1.0;
|
|
@@ -222,18 +193,29 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
|
ui->Rightlabel_Percentage->setText("100%");
|
|
|
|
|
|
ui->LeftDataSources->clear();
|
|
|
- ui->LeftDataSources->addItems(textList);
|
|
|
+ ui->LeftDataSources->addItems(lasttextList);
|
|
|
ui->RightDataSources->clear();
|
|
|
ui->RightDataSources->addItems(textList);
|
|
|
- // connect(ui->DatacomboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(Demo001_3::onComboBoxIndexChanged(int)));
|
|
|
-}
|
|
|
|
|
|
+ // 保存到 QSettings
|
|
|
+ settings.beginGroup("LastSettings");
|
|
|
+ settings.setValue("LastRightPixmap", lastRightPixmap);
|
|
|
+ settings.setValue("LasttextList", lasttextList);
|
|
|
+ settings.setValue("LastLastRightPixmap", lastLastRightPixmap);
|
|
|
+ settings.setValue("LastLasttextList", lastLasttextList);
|
|
|
+ settings.endGroup();
|
|
|
+
|
|
|
+ if (isUpdatingSettings) {
|
|
|
+ lastLastRightPixmap = lastRightPixmap;
|
|
|
+ lastLasttextList = lasttextList;
|
|
|
+ lastRightPixmap = scaledPixmap_right;
|
|
|
+ lasttextList = textList;
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::on_LeftZoomUpButton_clicked()
|
|
|
{
|
|
|
- if (Left_scaleFactor < 3.0) {
|
|
|
- Left_scaleFactor *= 1.1;
|
|
|
- }
|
|
|
+ Left_scaleFactor *= 1.1;
|
|
|
|
|
|
int newWidth = Left_currentPixmap.width() * Left_scaleFactor;
|
|
|
int newHeight = Left_currentPixmap.height() * Left_scaleFactor;
|
|
@@ -250,9 +232,7 @@ void MainAndSecondaryCamerasWnd::on_LeftZoomUpButton_clicked()
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::on_RightZoomUpButton_clicked()
|
|
|
{
|
|
|
- if (Right_scaleFactor < 3.0) {
|
|
|
- Right_scaleFactor *= 1.1;
|
|
|
- }
|
|
|
+ Right_scaleFactor *= 1.1;
|
|
|
|
|
|
int newWidth = Right_currentPixmap.width() * Right_scaleFactor;
|
|
|
int newHeight = Right_currentPixmap.height() * Right_scaleFactor;
|
|
@@ -269,8 +249,12 @@ void MainAndSecondaryCamerasWnd::on_RightZoomUpButton_clicked()
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::on_LeftZoomOutButton_clicked()
|
|
|
{
|
|
|
- if (Left_scaleFactor > 0.25) {
|
|
|
- Left_scaleFactor *= 0.9;
|
|
|
+ double Left_newScaleFactor = Left_scaleFactor * 0.9;
|
|
|
+
|
|
|
+ if (Left_newScaleFactor >= 1.0) {
|
|
|
+ Left_scaleFactor = Left_newScaleFactor;
|
|
|
+ } else {
|
|
|
+ Left_scaleFactor = 1.0;
|
|
|
}
|
|
|
|
|
|
int newWidth = Left_currentPixmap.width() * Left_scaleFactor;
|
|
@@ -288,8 +272,12 @@ void MainAndSecondaryCamerasWnd::on_LeftZoomOutButton_clicked()
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::on_RightZoomOutButton_clicked()
|
|
|
{
|
|
|
- if (Right_scaleFactor > 0.25) {
|
|
|
- Right_scaleFactor *= 0.9;
|
|
|
+ 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;
|
|
@@ -308,12 +296,14 @@ void MainAndSecondaryCamerasWnd::wheelEvent(QWheelEvent *event)
|
|
|
{
|
|
|
if (ui->LeftOperatewidget->rect().contains(ui->LeftOperatewidget->mapFromGlobal(event->globalPosition().toPoint()))) {
|
|
|
if (event->angleDelta().y() > 0) {
|
|
|
- if (Left_scaleFactor < 3.0) {
|
|
|
- Left_scaleFactor *= 1.1;
|
|
|
- }
|
|
|
+ Left_scaleFactor *= 1.1;
|
|
|
} else {
|
|
|
- if (Left_scaleFactor > 0.25) {
|
|
|
- Left_scaleFactor *= 0.9;
|
|
|
+ double Left_newScaleFactor = Left_scaleFactor * 0.9;
|
|
|
+
|
|
|
+ if (Left_newScaleFactor >= 1.0) {
|
|
|
+ Left_scaleFactor = Left_newScaleFactor;
|
|
|
+ } else {
|
|
|
+ Left_scaleFactor = 1.0;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -330,12 +320,14 @@ void MainAndSecondaryCamerasWnd::wheelEvent(QWheelEvent *event)
|
|
|
|
|
|
if (ui->RightOperatewidget->rect().contains(ui->RightOperatewidget->mapFromGlobal(event->globalPosition().toPoint()))) {
|
|
|
if (event->angleDelta().y() > 0) {
|
|
|
- if (Right_scaleFactor < 3.0) {
|
|
|
- Right_scaleFactor *= 1.1;
|
|
|
- }
|
|
|
+ Right_scaleFactor *= 1.1;
|
|
|
} else {
|
|
|
- if (Right_scaleFactor > 0.25) {
|
|
|
- Right_scaleFactor *= 0.9;
|
|
|
+ double Right_newScaleFactor = Right_scaleFactor * 0.9;
|
|
|
+
|
|
|
+ if (Right_newScaleFactor >= 1.0) {
|
|
|
+ Right_scaleFactor = Right_newScaleFactor;
|
|
|
+ } else {
|
|
|
+ Right_scaleFactor = 1.0;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -354,11 +346,15 @@ void MainAndSecondaryCamerasWnd::wheelEvent(QWheelEvent *event)
|
|
|
}
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::showEvent(QShowEvent *event) {
|
|
|
+ isUpdatingSettings = false;
|
|
|
QMainWindow::showEvent(event);
|
|
|
+
|
|
|
loadSettings();
|
|
|
+ isUpdatingSettings = true;
|
|
|
}
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::hideEvent(QHideEvent *event) {
|
|
|
+ isUpdatingSettings = false;
|
|
|
QMainWindow::hideEvent(event);
|
|
|
}
|
|
|
|