|
@@ -20,10 +20,13 @@ MainAndSecondaryCamerasWnd::MainAndSecondaryCamerasWnd(QWidget *parent)
|
|
lasttextList = settings.value("LasttextList").toStringList();
|
|
lasttextList = settings.value("LasttextList").toStringList();
|
|
lastLastRightPixmap = settings.value("LastLastRightPixmap").value<QPixmap>();
|
|
lastLastRightPixmap = settings.value("LastLastRightPixmap").value<QPixmap>();
|
|
lastLasttextList = settings.value("LastLasttextList").toStringList();
|
|
lastLasttextList = settings.value("LastLasttextList").toStringList();
|
|
|
|
+ lastLastIndex = settings.value("LastLastIndex", 0).toInt();
|
|
|
|
+ lastLastGroupId = settings.value("LastLastGroupId", 0).toInt();
|
|
settings.endGroup();
|
|
settings.endGroup();
|
|
|
|
|
|
initFrom();
|
|
initFrom();
|
|
isShow = true;
|
|
isShow = true;
|
|
|
|
+ isShow_L = true;
|
|
}
|
|
}
|
|
|
|
|
|
MainAndSecondaryCamerasWnd::~MainAndSecondaryCamerasWnd()
|
|
MainAndSecondaryCamerasWnd::~MainAndSecondaryCamerasWnd()
|
|
@@ -43,16 +46,27 @@ void MainAndSecondaryCamerasWnd::initFrom()
|
|
|
|
|
|
initSliders();
|
|
initSliders();
|
|
initLineEdits();
|
|
initLineEdits();
|
|
- initProgressBar();
|
|
|
|
// 连接 QSlider 的 valueChanged 信号到 QProgressBar 的 setValue 槽
|
|
// 连接 QSlider 的 valueChanged 信号到 QProgressBar 的 setValue 槽
|
|
connect(ui->RedLightverticalSlider_2, &QSlider::valueChanged, ui->RedLightprogressBar_2, &QProgressBar::setValue);
|
|
connect(ui->RedLightverticalSlider_2, &QSlider::valueChanged, ui->RedLightprogressBar_2, &QProgressBar::setValue);
|
|
connect(ui->BlueLightverticalSlider, &QSlider::valueChanged, ui->BlueLightprogressBar_2, &QProgressBar::setValue);
|
|
connect(ui->BlueLightverticalSlider, &QSlider::valueChanged, ui->BlueLightprogressBar_2, &QProgressBar::setValue);
|
|
connect(ui->GreenLightverticalSlider_5, &QSlider::valueChanged, ui->GreenLightprogressBar_5, &QProgressBar::setValue);
|
|
connect(ui->GreenLightverticalSlider_5, &QSlider::valueChanged, ui->GreenLightprogressBar_5, &QProgressBar::setValue);
|
|
connect(ui->DotLightverticalSlider_2, &QSlider::valueChanged, ui->DotLightprogressBar_2, &QProgressBar::setValue);
|
|
connect(ui->DotLightverticalSlider_2, &QSlider::valueChanged, ui->DotLightprogressBar_2, &QProgressBar::setValue);
|
|
|
|
+
|
|
|
|
+ connect(ui->RedLightverticalSlider_L, &QSlider::valueChanged, ui->RedLightprogressBar_L, &QProgressBar::setValue);
|
|
|
|
+ connect(ui->BlueLightverticalSlider_L, &QSlider::valueChanged, ui->BlueLightprogressBar_L, &QProgressBar::setValue);
|
|
|
|
+ connect(ui->GreenLightverticalSlider_L, &QSlider::valueChanged, ui->GreenLightprogressBar_L, &QProgressBar::setValue);
|
|
|
|
+ connect(ui->DotLightverticalSlider_L, &QSlider::valueChanged, ui->DotLightprogressBar_L, &QProgressBar::setValue);
|
|
|
|
+
|
|
connectSliderAndLineEdit(ui->RedLightverticalSlider_2, ui->RedLightlineEdit_2);
|
|
connectSliderAndLineEdit(ui->RedLightverticalSlider_2, ui->RedLightlineEdit_2);
|
|
connectSliderAndLineEdit(ui->GreenLightverticalSlider_5, ui->GreenLightlineEdit_5);
|
|
connectSliderAndLineEdit(ui->GreenLightverticalSlider_5, ui->GreenLightlineEdit_5);
|
|
connectSliderAndLineEdit(ui->BlueLightverticalSlider, ui->BlueLightlineEdit_2);
|
|
connectSliderAndLineEdit(ui->BlueLightverticalSlider, ui->BlueLightlineEdit_2);
|
|
connectSliderAndLineEdit(ui->DotLightverticalSlider_2, ui->DotLightlineEdit_2);
|
|
connectSliderAndLineEdit(ui->DotLightverticalSlider_2, ui->DotLightlineEdit_2);
|
|
|
|
+
|
|
|
|
+ connectSliderAndLineEdit(ui->RedLightverticalSlider_L, ui->RedLightlineEdit_L);
|
|
|
|
+ connectSliderAndLineEdit(ui->GreenLightverticalSlider_L, ui->GreenLightlineEdit_L);
|
|
|
|
+ connectSliderAndLineEdit(ui->BlueLightverticalSlider_L, ui->BlueLightlineEdit_L);
|
|
|
|
+ connectSliderAndLineEdit(ui->DotLightverticalSlider_L, ui->DotLightlineEdit_L);
|
|
|
|
+
|
|
connect(ui->LeftOperatewidget,&ImageWidget::sendDoubleClicksignal,this,&MainAndSecondaryCamerasWnd::handleDoubleClick);
|
|
connect(ui->LeftOperatewidget,&ImageWidget::sendDoubleClicksignal,this,&MainAndSecondaryCamerasWnd::handleDoubleClick);
|
|
connect(ui->RightOperatewidget,&ImageWidget::sendDoubleClicksignal,this,&MainAndSecondaryCamerasWnd::handleDoubleClick);
|
|
connect(ui->RightOperatewidget,&ImageWidget::sendDoubleClicksignal,this,&MainAndSecondaryCamerasWnd::handleDoubleClick);
|
|
QWidget *viewport = ui->scrollArea->viewport();
|
|
QWidget *viewport = ui->scrollArea->viewport();
|
|
@@ -70,7 +84,7 @@ void MainAndSecondaryCamerasWnd::initFrom()
|
|
int num = numbers[i];
|
|
int num = numbers[i];
|
|
CameraImageHandler* manager = new CameraImageHandler(num);
|
|
CameraImageHandler* manager = new CameraImageHandler(num);
|
|
Group* widget = manager->getGroup();
|
|
Group* widget = manager->getGroup();
|
|
- connect(widget,&Group::send_button_Signal,this,&MainAndSecondaryCamerasWnd::showAndHide);
|
|
|
|
|
|
+ connect(widget,&Group::send_button_Signal,this,&MainAndSecondaryCamerasWnd::CheckIs);
|
|
if (widget != nullptr) {
|
|
if (widget != nullptr) {
|
|
mainLayout->addWidget(widget);
|
|
mainLayout->addWidget(widget);
|
|
widgets.append(widget);
|
|
widgets.append(widget);
|
|
@@ -106,10 +120,12 @@ void MainAndSecondaryCamerasWnd::initFrom()
|
|
|
|
|
|
void MainAndSecondaryCamerasWnd::initSliders() {
|
|
void MainAndSecondaryCamerasWnd::initSliders() {
|
|
QList<QSlider*> sliders = {
|
|
QList<QSlider*> sliders = {
|
|
- ui->RedLightverticalSlider_2, ui->GreenLightverticalSlider_5,
|
|
|
|
- ui->BlueLightverticalSlider, ui->DotLightverticalSlider_2
|
|
|
|
|
|
+ ui->RedLightverticalSlider_2, ui->GreenLightverticalSlider_5,
|
|
|
|
+ ui->BlueLightverticalSlider, ui->DotLightverticalSlider_2,
|
|
|
|
+ ui->RedLightverticalSlider_L, ui->GreenLightverticalSlider_L,
|
|
|
|
+ ui->BlueLightverticalSlider_L, ui->DotLightverticalSlider_L
|
|
};
|
|
};
|
|
- QList<int> initialValues = { 22, 11, 0, 0};
|
|
|
|
|
|
+ QList<int> initialValues = {22, 11, 0, 0, 22, 11, 0, 0};
|
|
|
|
|
|
for (int i = 0; i < sliders.size(); ++i) {
|
|
for (int i = 0; i < sliders.size(); ++i) {
|
|
sliders[i]->setMinimum(0);
|
|
sliders[i]->setMinimum(0);
|
|
@@ -118,10 +134,12 @@ void MainAndSecondaryCamerasWnd::initSliders() {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
void MainAndSecondaryCamerasWnd::initProgressBar(){
|
|
void MainAndSecondaryCamerasWnd::initProgressBar(){
|
|
- QList<int> initialValues = {22, 11, 1, 1};
|
|
|
|
|
|
+ QList<int> initialValues = {22, 11, 0, 0, 22, 11, 0, 0};
|
|
QList<QProgressBar*> progressBar = {
|
|
QList<QProgressBar*> progressBar = {
|
|
ui->RedLightprogressBar_2,ui->GreenLightprogressBar_5,
|
|
ui->RedLightprogressBar_2,ui->GreenLightprogressBar_5,
|
|
- ui->BlueLightprogressBar_2,ui->DotLightprogressBar_2
|
|
|
|
|
|
+ ui->BlueLightprogressBar_2,ui->DotLightprogressBar_2,
|
|
|
|
+ ui->RedLightprogressBar_L,ui->GreenLightprogressBar_L,
|
|
|
|
+ ui->BlueLightprogressBar_L,ui->DotLightprogressBar_L
|
|
};
|
|
};
|
|
for (int i = 0; i < progressBar.size(); ++i) {
|
|
for (int i = 0; i < progressBar.size(); ++i) {
|
|
progressBar[i]->setMinimum(0);
|
|
progressBar[i]->setMinimum(0);
|
|
@@ -152,7 +170,9 @@ void MainAndSecondaryCamerasWnd::handleDoubleClick(){
|
|
void MainAndSecondaryCamerasWnd::initLineEdits() {
|
|
void MainAndSecondaryCamerasWnd::initLineEdits() {
|
|
QList<QLineEdit*> lineEdits = {
|
|
QList<QLineEdit*> lineEdits = {
|
|
ui->RedLightlineEdit_2, ui->GreenLightlineEdit_5,
|
|
ui->RedLightlineEdit_2, ui->GreenLightlineEdit_5,
|
|
- ui->BlueLightlineEdit_2, ui->DotLightlineEdit_2
|
|
|
|
|
|
+ ui->BlueLightlineEdit_2, ui->DotLightlineEdit_2,
|
|
|
|
+ ui->RedLightlineEdit_L, ui->GreenLightlineEdit_L,
|
|
|
|
+ ui->BlueLightlineEdit_L, ui->DotLightlineEdit_L
|
|
};
|
|
};
|
|
|
|
|
|
for (QLineEdit* lineEdit : lineEdits) {
|
|
for (QLineEdit* lineEdit : lineEdits) {
|
|
@@ -217,12 +237,16 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
QPixmap newPixmap;
|
|
QPixmap newPixmap;
|
|
|
|
|
|
if (Index == 1) {
|
|
if (Index == 1) {
|
|
|
|
+ isShow = true;
|
|
|
|
+
|
|
newPixmap = QPixmap(imagePath1);
|
|
newPixmap = QPixmap(imagePath1);
|
|
clearLayout(1);
|
|
clearLayout(1);
|
|
|
|
|
|
if (lastIndex == 1) {
|
|
if (lastIndex == 1) {
|
|
clearLayout(0);
|
|
clearLayout(0);
|
|
|
|
+ isShow_L = true;
|
|
} else if (lastIndex == 2) {
|
|
} else if (lastIndex == 2) {
|
|
|
|
+ isShow_L = false;
|
|
clearLayout(0);
|
|
clearLayout(0);
|
|
if (lastGroupId == 1) {
|
|
if (lastGroupId == 1) {
|
|
WaferWidget(0);
|
|
WaferWidget(0);
|
|
@@ -233,11 +257,17 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} else if (Index == 2) {
|
|
} else if (Index == 2) {
|
|
|
|
+ isShow = false;
|
|
clearLayout(1);
|
|
clearLayout(1);
|
|
clearLayout(0);
|
|
clearLayout(0);
|
|
|
|
|
|
|
|
+ if (lastIndex == 1) {
|
|
|
|
+ isShow_L = true;
|
|
|
|
+ }
|
|
|
|
+
|
|
if (materialWndType == 1) {
|
|
if (materialWndType == 1) {
|
|
if (lastIndex == 2) {
|
|
if (lastIndex == 2) {
|
|
|
|
+ isShow_L = false;
|
|
if (lastGroupId == 1) {
|
|
if (lastGroupId == 1) {
|
|
WaferWidget(0);
|
|
WaferWidget(0);
|
|
} else if (lastGroupId == 2) {
|
|
} else if (lastGroupId == 2) {
|
|
@@ -249,6 +279,7 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
WaferWidget(1);
|
|
WaferWidget(1);
|
|
} else if (materialWndType == 2) {
|
|
} else if (materialWndType == 2) {
|
|
if (lastIndex == 2) {
|
|
if (lastIndex == 2) {
|
|
|
|
+ isShow_L = false;
|
|
if (lastGroupId == 1) {
|
|
if (lastGroupId == 1) {
|
|
WaferWidget(0);
|
|
WaferWidget(0);
|
|
} else if (lastGroupId == 2) {
|
|
} else if (lastGroupId == 2) {
|
|
@@ -260,6 +291,7 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
WaffleWidget(1);
|
|
WaffleWidget(1);
|
|
} else if (materialWndType == 3) {
|
|
} else if (materialWndType == 3) {
|
|
if (lastIndex == 2) {
|
|
if (lastIndex == 2) {
|
|
|
|
+ isShow_L = false;
|
|
if (lastGroupId == 1) {
|
|
if (lastGroupId == 1) {
|
|
WaferWidget(0);
|
|
WaferWidget(0);
|
|
} else if (lastGroupId == 2) {
|
|
} else if (lastGroupId == 2) {
|
|
@@ -272,6 +304,9 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ showAndHide();
|
|
|
|
+ showAndHide_L();
|
|
|
|
+
|
|
QSettings settings2("YourOrganization", "YourApplication_lastWndType");
|
|
QSettings settings2("YourOrganization", "YourApplication_lastWndType");
|
|
settings2.setValue("LastWndType", lastIndex);
|
|
settings2.setValue("LastWndType", lastIndex);
|
|
settings2.setValue("LastGroup", lastGroupId);
|
|
settings2.setValue("LastGroup", lastGroupId);
|
|
@@ -301,6 +336,8 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
settings.setValue("LasttextList", lasttextList);
|
|
settings.setValue("LasttextList", lasttextList);
|
|
settings.setValue("LastLastRightPixmap", lastLastRightPixmap);
|
|
settings.setValue("LastLastRightPixmap", lastLastRightPixmap);
|
|
settings.setValue("LastLasttextList", lastLasttextList);
|
|
settings.setValue("LastLasttextList", lastLasttextList);
|
|
|
|
+ settings.setValue("LastLastIndex", lastLastIndex);
|
|
|
|
+ settings.setValue("LastLastGroupId", lastLastGroupId);
|
|
settings.endGroup();
|
|
settings.endGroup();
|
|
|
|
|
|
if (isUpdatingSettings) {
|
|
if (isUpdatingSettings) {
|
|
@@ -308,6 +345,8 @@ void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
|
|
lastLasttextList = lasttextList;
|
|
lastLasttextList = lasttextList;
|
|
lastRightPixmap = scaledPixmap_right;
|
|
lastRightPixmap = scaledPixmap_right;
|
|
lasttextList = textList;
|
|
lasttextList = textList;
|
|
|
|
+ lastLastIndex = lastIndex;
|
|
|
|
+ lastLastGroupId = lastGroupId;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -509,6 +548,7 @@ void MainAndSecondaryCamerasWnd::wheelEvent(QWheelEvent *event)
|
|
QString percentageStr = QString::number((int)percentage);
|
|
QString percentageStr = QString::number((int)percentage);
|
|
ui->Rightlabel_Percentage->setText(QString("%1%").arg(percentageStr));
|
|
ui->Rightlabel_Percentage->setText(QString("%1%").arg(percentageStr));
|
|
}
|
|
}
|
|
|
|
+
|
|
if (ui->scrollArea->rect().contains(ui->scrollArea->mapFromGlobal(event->globalPos()))) {
|
|
if (ui->scrollArea->rect().contains(ui->scrollArea->mapFromGlobal(event->globalPos()))) {
|
|
// 获取 QScrollArea 的横向滚动条
|
|
// 获取 QScrollArea 的横向滚动条
|
|
QScrollBar *scrollBar = ui->scrollArea->horizontalScrollBar();
|
|
QScrollBar *scrollBar = ui->scrollArea->horizontalScrollBar();
|
|
@@ -519,6 +559,7 @@ void MainAndSecondaryCamerasWnd::wheelEvent(QWheelEvent *event)
|
|
scrollBar->setValue(scrollBar->value() + 50);
|
|
scrollBar->setValue(scrollBar->value() + 50);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
QMainWindow::wheelEvent(event);
|
|
QMainWindow::wheelEvent(event);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -535,12 +576,42 @@ void MainAndSecondaryCamerasWnd::hideEvent(QHideEvent *event) {
|
|
QMainWindow::hideEvent(event);
|
|
QMainWindow::hideEvent(event);
|
|
}
|
|
}
|
|
|
|
|
|
-void MainAndSecondaryCamerasWnd::showAndHide(){
|
|
|
|
- if(isShow == true){
|
|
|
|
- isShow = false;
|
|
|
|
- }else{
|
|
|
|
- isShow = true;
|
|
|
|
|
|
+void MainAndSecondaryCamerasWnd::CheckIs()
|
|
|
|
+{
|
|
|
|
+ QSettings settings("YourCompany", "YourApplication_Button");
|
|
|
|
+ int groupId = settings.value("GroupId_button", 0).toInt();
|
|
|
|
+
|
|
|
|
+ if (groupId == lastGroupId) {
|
|
|
|
+ if (lastIndex == 1 ) {
|
|
|
|
+ if(isShow == true){
|
|
|
|
+ isShow = false;
|
|
|
|
+ } else {
|
|
|
|
+ isShow = true;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if (lastLastIndex == 1 && groupId == lastLastGroupId) {
|
|
|
|
+ if(isShow_L == true){
|
|
|
|
+ isShow_L = false;
|
|
|
|
+ } else {
|
|
|
|
+ isShow_L = true;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ showAndHide();
|
|
|
|
+ showAndHide_L();
|
|
|
|
+
|
|
|
|
+ } else if (groupId == lastLastGroupId) {
|
|
|
|
+ if (lastLastIndex == 1) {
|
|
|
|
+ if(isShow_L == true){
|
|
|
|
+ isShow_L = false;
|
|
|
|
+ } else {
|
|
|
|
+ isShow_L = true;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ showAndHide_L();
|
|
}
|
|
}
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void MainAndSecondaryCamerasWnd::showAndHide(){
|
|
QList<QLineEdit*> lineEdits = {
|
|
QList<QLineEdit*> lineEdits = {
|
|
ui->RedLightlineEdit_2, ui->GreenLightlineEdit_5,
|
|
ui->RedLightlineEdit_2, ui->GreenLightlineEdit_5,
|
|
ui->BlueLightlineEdit_2, ui->DotLightlineEdit_2
|
|
ui->BlueLightlineEdit_2, ui->DotLightlineEdit_2
|
|
@@ -591,3 +662,55 @@ void MainAndSecondaryCamerasWnd::showAndHide(){
|
|
ui->GreenLightlabel_5->hide();
|
|
ui->GreenLightlabel_5->hide();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+void MainAndSecondaryCamerasWnd::showAndHide_L(){
|
|
|
|
+ QList<QLineEdit*> lineEdits = {
|
|
|
|
+ ui->RedLightlineEdit_L, ui->GreenLightlineEdit_L,
|
|
|
|
+ ui->BlueLightlineEdit_L, ui->DotLightlineEdit_L
|
|
|
|
+ };
|
|
|
|
+ QList<QSlider*> sliders = {
|
|
|
|
+ ui->RedLightverticalSlider_L, ui->GreenLightverticalSlider_L,
|
|
|
|
+ ui->BlueLightverticalSlider_L, ui->DotLightverticalSlider_L
|
|
|
|
+ };
|
|
|
|
+ QList<QProgressBar*> progressBar = {
|
|
|
|
+ ui->RedLightprogressBar_L,ui->GreenLightprogressBar_L,
|
|
|
|
+ ui->BlueLightprogressBar_L,ui->DotLightprogressBar_L
|
|
|
|
+ };
|
|
|
|
+ if(isShow_L == true){
|
|
|
|
+ for (QLineEdit* lineEdit : lineEdits) {
|
|
|
|
+ lineEdit->show();
|
|
|
|
+ }
|
|
|
|
+ for (int i = 0; i < sliders.size(); ++i) {
|
|
|
|
+ sliders[i]->show();
|
|
|
|
+ }
|
|
|
|
+ for (int i = 0; i < progressBar.size(); ++i) {
|
|
|
|
+ progressBar[i]->show();
|
|
|
|
+ }
|
|
|
|
+ ui->BlueLight_L->show();
|
|
|
|
+ ui->RedLight_L->show();
|
|
|
|
+ ui->DotLight_L->show();
|
|
|
|
+ ui->GreenLight_L->show();/*
|
|
|
|
+ ui->BlueLightlabel_2->show();
|
|
|
|
+ ui->RedLightlabel_2->show();
|
|
|
|
+ ui->DotLightlabel_2->show();
|
|
|
|
+ ui->GreenLightlabel_5->show();*/
|
|
|
|
+ }else{
|
|
|
|
+ for (QLineEdit* lineEdit : lineEdits) {
|
|
|
|
+ lineEdit->hide();
|
|
|
|
+ }
|
|
|
|
+ for (int i = 0; i < sliders.size(); ++i) {
|
|
|
|
+ sliders[i]->hide();
|
|
|
|
+ }
|
|
|
|
+ for (int i = 0; i < progressBar.size(); ++i) {
|
|
|
|
+ progressBar[i]->hide();
|
|
|
|
+ }
|
|
|
|
+ ui->BlueLight_L->hide();
|
|
|
|
+ ui->RedLight_L->hide();
|
|
|
|
+ ui->DotLight_L->hide();
|
|
|
|
+ ui->GreenLight_L->hide();
|
|
|
|
+ // ui->BlueLightlabel_2->hide();
|
|
|
|
+ // ui->RedLightlabel_2->hide();
|
|
|
|
+ // ui->DotLightlabel_2->hide();
|
|
|
|
+ // ui->GreenLightlabel_5->hide();
|
|
|
|
+ }
|
|
|
|
+}
|