SingleCameraOperationWnd.cpp 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615
  1. #include "SingleCameraOperationWnd.h"
  2. #include "ui_SingleCameraOperationWnd.h"
  3. #include <QSettings>
  4. #include <QCloseEvent>
  5. #include <QVBoxLayout>
  6. #include <QDebug>
  7. #include <QTimer>
  8. #include "CameraMaterialGroupWnd/CameraImage/CameraImageHandler.h"
  9. SingleCameraOperationWnd::SingleCameraOperationWnd(QWidget *parent)
  10. : QMainWindow(parent)
  11. , ui(new Ui::SingleCameraOperationWnd), scaleFactor(1.0)
  12. {
  13. ui->setupUi(this);
  14. isShow = true;
  15. liveClick = true;
  16. initFrom();
  17. }
  18. SingleCameraOperationWnd::~SingleCameraOperationWnd()
  19. {
  20. delete ui;
  21. }
  22. void SingleCameraOperationWnd::initFrom() {
  23. QTimer *timer = new QTimer(this);
  24. connect(timer, &QTimer::timeout, this, &SingleCameraOperationWnd::checkSettings);
  25. timer->start(100);
  26. ui->label_Percentage->setAlignment(Qt::AlignCenter);
  27. // 设置右下部分
  28. // loadSliderStates();
  29. initSliders();
  30. initLineEdits();
  31. initProgressBar();
  32. // 连接 QSlider 的 valueChanged 信号到 QProgressBar 的 setValue 槽
  33. connect(ui->RedLightverticalSlider, &QSlider::valueChanged, ui->RedLightprogressBar, &QProgressBar::setValue);
  34. connect(ui->BlueLightverticalSlider, &QSlider::valueChanged, ui->BlueLightprogressBar, &QProgressBar::setValue);
  35. connect(ui->GreenLightverticalSlider, &QSlider::valueChanged, ui->GreenLightprogressBar, &QProgressBar::setValue);
  36. connect(ui->DotLightverticalSlider, &QSlider::valueChanged, ui->DotLightprogressBar, &QProgressBar::setValue);
  37. connectSliderAndLineEdit(ui->RedLightverticalSlider, ui->RedLightlineEdit);
  38. connectSliderAndLineEdit(ui->GreenLightverticalSlider, ui->GreenLightlineEdit);
  39. connectSliderAndLineEdit(ui->BlueLightverticalSlider, ui->BlueLightlineEdit);
  40. connectSliderAndLineEdit(ui->DotLightverticalSlider, ui->DotLightlineEdit);
  41. connect(ui->LiveButton,&QPushButton::clicked,this,&SingleCameraOperationWnd::loadLiveVedio);
  42. connect(ui->Operatewidget,&ImageWidget::sendDoubleClicksignal,this,&SingleCameraOperationWnd::handleDoubleClick);
  43. // 设置右上部分
  44. QWidget *viewport = ui->scrollArea->viewport();
  45. QWidget *container = new QWidget(viewport);
  46. QVBoxLayout *layout = new QVBoxLayout(container);
  47. layout->setSpacing(16); // 设置Group之间的间隔距离
  48. layout->setMargin(0);
  49. QList<int> numbers = {1, 2, 3, 4, 5, 6, 7, 8};
  50. QList<Group*> widgets;
  51. for (int i = 0; i < numbers.size(); ++i) {
  52. int num = numbers[i];
  53. CameraImageHandler* manager = new CameraImageHandler(num);
  54. Group* widget = manager->getGroup();
  55. connect(widget,&Group::send_button_Signal,this,&SingleCameraOperationWnd::showAndHideButton);
  56. connect(widget,&Group::send_ComboBox_singal,this,&SingleCameraOperationWnd::handleComBoxChange);
  57. if (widget != nullptr) {
  58. layout->addWidget(widget);
  59. widgets.append(widget);
  60. groupMap[num] = widget;
  61. }
  62. if(manager->getWafer()) {
  63. waferMap.insert(num, manager->getWafer());
  64. }
  65. if(manager->getWafer()) {
  66. waffleMap.insert(num, manager->getWaffle());
  67. }
  68. if(manager->getMaterialBox()){
  69. materialBoxMap.insert(num,manager->getMaterialBox());
  70. }
  71. delete manager;
  72. }
  73. // 设置控件的最小高度和最大宽度
  74. int minHeight = 162;
  75. int maxWidth = 244;
  76. for (Group* w : widgets) {
  77. w->setMinimumHeight(minHeight);
  78. w->setMaximumWidth(maxWidth);
  79. }
  80. container->setLayout(layout);
  81. ui->scrollArea->setWidget(container);
  82. ui->scrollArea->resize(261, 700);
  83. ui->Operatewidget->setMouseTracking(true);
  84. connect(ui->Operatewidget,&ImageWidget::sendDoubleClicksignal,this,&SingleCameraOperationWnd::handleDoubleClick);
  85. connect(ui->DatacomboBox, QOverload<int>::of(&QComboBox::currentIndexChanged),
  86. this, &SingleCameraOperationWnd::on_DatacomboBox_currentIndexChanged);
  87. }
  88. void SingleCameraOperationWnd::closeEvent(QCloseEvent *event) {
  89. // 保存滑块状态
  90. // saveSliderStates();
  91. // 确保调用基类的 closeEvent 处理其他关闭逻辑
  92. QMainWindow::closeEvent(event);
  93. }
  94. void SingleCameraOperationWnd::initSliders() {
  95. QList<QSlider*> sliders = {
  96. ui->RedLightverticalSlider, ui->GreenLightverticalSlider,
  97. ui->BlueLightverticalSlider, ui->DotLightverticalSlider
  98. };
  99. QList<int> initialValues = {22, 11, 0, 0};
  100. for (int i = 0; i < sliders.size(); ++i) {
  101. sliders[i]->setMinimum(0);
  102. sliders[i]->setMaximum(100);
  103. sliders[i]->setValue(initialValues[i]);
  104. }
  105. }
  106. void SingleCameraOperationWnd::initLineEdits() {
  107. QList<QLineEdit*> lineEdits = {
  108. ui->RedLightlineEdit, ui->GreenLightlineEdit,
  109. ui->BlueLightlineEdit, ui->DotLightlineEdit,
  110. };
  111. for (QLineEdit* lineEdit : lineEdits) {
  112. lineEdit->setAlignment(Qt::AlignCenter);
  113. }
  114. }
  115. void SingleCameraOperationWnd::initProgressBar(){
  116. QList<int> initialValues = {22, 11, 0, 0};
  117. QList<QProgressBar*> progressBar = {
  118. ui->RedLightprogressBar,ui->GreenLightprogressBar,
  119. ui->BlueLightprogressBar,ui->DotLightprogressBar
  120. };
  121. for (int i = 0; i < progressBar.size(); ++i) {
  122. progressBar[i]->setMinimum(0);
  123. progressBar[i]->setMaximum(100);
  124. progressBar[i]->setValue(initialValues[i]);
  125. }
  126. }
  127. // void SingleCameraOperationWnd::saveSliderStates() {
  128. // QSettings settings("YourCompany", "YourApp");
  129. // settings.beginGroup("SliderStates");
  130. // settings.setValue("verticalSlider", ui->verticalSlider->value());
  131. // settings.setValue("verticalSlider_2", ui->verticalSlider_2->value());
  132. // settings.setValue("verticalSlider_3", ui->verticalSlider_3->value());
  133. // settings.setValue("verticalSlider_4", ui->verticalSlider_4->value());
  134. // settings.setValue("verticalSlider_5", ui->verticalSlider_5->value());
  135. // settings.setValue("verticalSlider_6", ui->verticalSlider_6->value());
  136. // settings.endGroup();
  137. // }
  138. // void SingleCameraOperationWnd::loadSliderStates() {
  139. // QSettings settings("YourCompany", "YourApp");
  140. // settings.beginGroup("SliderStates");
  141. // ui->verticalSlider->setValue(settings.value("verticalSlider", 11).toInt());
  142. // ui->verticalSlider_2->setValue(settings.value("verticalSlider_2", 22).toInt());
  143. // ui->verticalSlider_3->setValue(settings.value("verticalSlider_3", 9).toInt());
  144. // ui->verticalSlider_4->setValue(settings.value("verticalSlider_4", 11).toInt());
  145. // ui->verticalSlider_5->setValue(settings.value("verticalSlider_5", 0).toInt());
  146. // ui->verticalSlider_6->setValue(settings.value("verticalSlider_6", 0).toInt());
  147. // settings.endGroup();
  148. // }
  149. // QSlider 和 QLineEdit 的联动
  150. void SingleCameraOperationWnd::connectSliderAndLineEdit(QSlider* slider, QLineEdit* lineEdit)
  151. {
  152. QIntValidator* validator = new QIntValidator(slider->minimum(), slider->maximum(), lineEdit);
  153. lineEdit->setValidator(validator);
  154. connect(slider, &QSlider::valueChanged, [lineEdit](int value) {
  155. lineEdit->setText(QString::number(value));
  156. });
  157. connect(lineEdit, &QLineEdit::textChanged, [slider](const QString &text) {
  158. bool ok;
  159. int value = text.toInt(&ok);
  160. if (ok && value >= slider->minimum() && value <= slider->maximum()) {
  161. slider->setValue(value);
  162. } else if (!text.isEmpty()) {
  163. int closestValue = qMin(qMax(text.toInt(&ok), slider->minimum()), slider->maximum());
  164. slider->setValue(closestValue);
  165. }
  166. });
  167. }
  168. void SingleCameraOperationWnd::checkSettings() {
  169. QSettings settings("YourCompany", "YourApplication_");
  170. int groupId = settings.value("GroupId", 0).toInt();
  171. int index = settings.value("Index", 0).toInt();
  172. if (groupId != lastGroupId || index != lastIndex) {
  173. lastGroupId = groupId;
  174. lastIndex = index;
  175. loadSettings();
  176. }
  177. }
  178. void SingleCameraOperationWnd::loadSettings()
  179. {
  180. QSettings settings("YourCompany", "YourApplication_");
  181. int groupId = settings.value("GroupId", 0).toInt();
  182. int index = settings.value("Index", 0).toInt();
  183. loadGroupSettings(groupId, index);
  184. }
  185. void SingleCameraOperationWnd::loadGroupSettings(int Id, int Index) {
  186. QSettings settings("YourOrganization", "YourApplication");
  187. settings.beginGroup(QString::number(Id));
  188. QString imagePath1 = settings.value("ImagePath1").toString();
  189. int materialWndType = settings.value("MaterialWndType").toInt();
  190. QStringList textList = settings.value("TextList").toStringList();
  191. settings.endGroup();
  192. QSize size = ui->Operatewidget->size();
  193. QPixmap newPixmap;
  194. // 判断是实时图片还是物料窗口
  195. if (Index == 1) {
  196. clearLayout();
  197. newPixmap = QPixmap(imagePath1);
  198. QPixmap scaledPixmap = newPixmap.scaled(size, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  199. currentMode = ModeImage;
  200. currentPixmap = scaledPixmap;
  201. scaleFactor = 1.0;
  202. previousScaleFactor = 1.0;
  203. ui->Operatewidget->setPixmap(scaledPixmap);
  204. double percentage = scaleFactor * 100;
  205. QString percentageStr = QString::number((int)percentage);
  206. ui->label_Percentage->setText(QString("%1%").arg(percentageStr));
  207. // clearLayout();
  208. // // 初始化场景(关键步骤)
  209. // if (!operateScene) {
  210. // operateScene = new QGraphicsScene(this);
  211. // ui->Operatewidget->setScene(operateScene); // 假设Operatewidget是QGraphicsView
  212. // }
  213. // // 加载并显示图片
  214. // newPixmap = QPixmap(imagePath1);
  215. // QPixmap scaledPixmap = newPixmap.scaled(size, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  216. // // 创建图片图形项
  217. // QGraphicsPixmapItem* pixmapItem = operateScene->addPixmap(scaledPixmap);
  218. // pixmapItem->setZValue(0); // 设置图片在底层
  219. // // 添加可拖拽线段
  220. // currentLine = new DraggableLine;
  221. // currentLine->setLine(0, 0, 200, 0); // 初始线段长度200px
  222. // currentLine->setZValue(1); // 设置线段在图片上层
  223. // operateScene->addItem(currentLine);
  224. // // 设置显示参数
  225. // currentMode = ModeImage;
  226. // scaleFactor = 1.0;
  227. // previousScaleFactor = 1.0;
  228. // // 更新界面显示
  229. // ui->Operatewidget->fitInView(pixmapItem, Qt::KeepAspectRatio);
  230. // updatePercentageDisplay();
  231. } else if (Index == 2) {
  232. if (materialWndType == 1) {
  233. clearLayout();
  234. ui->Operatewidget->clearPixmap();
  235. QVBoxLayout *layout = new QVBoxLayout(ui->Operatewidget);
  236. waferMap.value(Id)->initFrom(ui->Operatewidget);
  237. layout->setContentsMargins(0, 0, 0, 0);
  238. layout->addWidget(waferMap.value(Id)->view);
  239. ui->Operatewidget->setLayout(layout);
  240. currentMode = ModeView;
  241. currentView = waferMap.value(Id)->view;
  242. scaleFactor = 1.0;
  243. applyScale();
  244. } else if (materialWndType == 2) {
  245. clearLayout();
  246. ui->Operatewidget->clearPixmap();
  247. QVBoxLayout *layout = new QVBoxLayout(ui->Operatewidget);
  248. waffleMap.value(Id)->initFrom(ui->Operatewidget);
  249. layout->setContentsMargins(0, 0, 0, 0);
  250. layout->addWidget(waffleMap.value(Id)->view);
  251. ui->Operatewidget->setLayout(layout);
  252. currentMode = ModeView;
  253. currentView = waffleMap.value(Id)->view;
  254. scaleFactor = 1.0;
  255. applyScale();
  256. } else if (materialWndType == 3) {
  257. clearLayout();
  258. QVBoxLayout *layout = new QVBoxLayout(ui->Operatewidget);
  259. materialBoxMap.value(Id)->initFrom(ui->Operatewidget);
  260. layout->setContentsMargins(0, 0, 0, 0);
  261. layout->addWidget(materialBoxMap.value(Id)->view);
  262. ui->Operatewidget->setLayout(layout);
  263. currentMode = ModeView;
  264. currentView = materialBoxMap.value(Id)->view;
  265. scaleFactor = 1.0;
  266. applyScale();
  267. // MaterialBoxWidget();
  268. }
  269. }
  270. //QPixmap scaledPixmap = newPixmap.scaled(size, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  271. //ui->Operatewidget->setPixmap(scaledPixmap);
  272. // 更新当前图片的成员变量
  273. //currentPixmap = scaledPixmap;
  274. //scaleFactor = 1.0;
  275. //ui->label_Percentage->setText("100%");
  276. ui->DatacomboBox->clear();
  277. ui->DatacomboBox->addItems(textList);
  278. // qDebug() << "ComboBox items added:" << ui->DatacomboBox->count();
  279. // connect(ui->DatacomboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(SingleCameraOperationWnd::onComboBoxIndexChanged(int)));
  280. }
  281. // 清除大窗口上当前的布局
  282. void SingleCameraOperationWnd::clearLayout() {
  283. // 获取当前布局
  284. QLayout* layout = ui->Operatewidget->layout();
  285. if (layout) {
  286. QLayoutItem *child;
  287. while ((child = layout->takeAt(0)) != nullptr) {
  288. if (child->widget() != nullptr) {
  289. delete child->widget(); // 删除控件
  290. }
  291. delete child; // 删除布局项
  292. }
  293. delete layout; // 删除布局本身
  294. }
  295. }
  296. // 圆晶
  297. void SingleCameraOperationWnd::WaferWidget() {
  298. // QGridLayout *layout = new QGridLayout(ui->Operatewidget);
  299. // wafer = new Wafer(2, ui->Operatewidget);
  300. // wafer->initFrom(ui->Operatewidget);
  301. // layout->setContentsMargins(0, 0, 0, 0);
  302. // layout->addWidget(wafer->globalWidget);
  303. // ui->Operatewidget->setLayout(layout);
  304. // ui->Operatewidget->setFixedSize(786, 786);
  305. }
  306. // 华夫盒
  307. void SingleCameraOperationWnd::WaffleWidget() {
  308. QVBoxLayout *layout = new QVBoxLayout(ui->Operatewidget);
  309. waffle = new Waffle(2, ui->Operatewidget);
  310. layout->setContentsMargins(0, 0, 0, 0);
  311. layout->addWidget(waffle);
  312. ui->Operatewidget->setLayout(layout);
  313. ui->Operatewidget->setFixedSize(786, 786);
  314. }
  315. // 料盒
  316. void SingleCameraOperationWnd::MaterialBoxWidget() {
  317. QVBoxLayout *layout = new QVBoxLayout(ui->Operatewidget);
  318. materialbox = new MaterialBox(2, ui->Operatewidget);
  319. layout->setContentsMargins(0, 0, 0, 0);
  320. layout->addWidget(materialbox);
  321. ui->Operatewidget->setLayout(layout);
  322. ui->Operatewidget->setFixedSize(786, 786);
  323. }
  324. // 更新缩放比例
  325. void SingleCameraOperationWnd::updateScale(double newScaleFactor) {
  326. if (newScaleFactor >= 1.0) {
  327. scaleFactor = newScaleFactor;
  328. } else {
  329. scaleFactor = 1.0; // 最小缩放比例为 1.0
  330. }
  331. applyScale(); // 应用缩放
  332. }
  333. // 应用缩放
  334. void SingleCameraOperationWnd::applyScale() {
  335. if (currentMode == ModeImage) {
  336. // 图片模式:缩放图片
  337. int newWidth = currentPixmap.width() * scaleFactor;
  338. int newHeight = currentPixmap.height() * scaleFactor;
  339. QPixmap scaledImage = currentPixmap.scaled(newWidth, newHeight, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  340. ui->Operatewidget->setPixmapAndPoint(scaledImage, previousScaleFactor, scaleFactor, mousePos);
  341. previousScaleFactor = scaleFactor;
  342. } else if (currentMode == ModeView && currentView) {
  343. // View 模式:缩放 view
  344. QTransform transform;
  345. transform.scale(scaleFactor, scaleFactor);
  346. currentView->setTransform(transform);
  347. }
  348. // 更新百分比显示
  349. double percentage = scaleFactor * 100;
  350. QString percentageStr = QString::number((int)percentage);
  351. ui->label_Percentage->setText(QString("%1%").arg(percentageStr));
  352. }
  353. void SingleCameraOperationWnd::on_ZoomUpButton_clicked() {
  354. mousePos = ui->Operatewidget->geometry().center();
  355. updateScale(scaleFactor * 1.1);
  356. }
  357. void SingleCameraOperationWnd::on_ZoomOutButton_clicked() {
  358. mousePos = ui->Operatewidget->geometry().center();
  359. updateScale(scaleFactor * 0.9);
  360. }
  361. void SingleCameraOperationWnd::on_RulerButton_clicked(){
  362. // 创建初始线段(示例长度200像素)
  363. // DraggableLine* line = new DraggableLine;
  364. // line->setLine(0, 0, 200, 0); // 水平线段
  365. // if (currentView != nullptr) {
  366. // currentView->scene()->addItem(line);
  367. // line->setPos(20, 20);
  368. // currentView->viewport()->update();
  369. // }
  370. }
  371. void SingleCameraOperationWnd::wheelEvent(QWheelEvent *event)
  372. {
  373. mousePos = ui->Operatewidget->mapFromGlobal(event->globalPos());
  374. if (ui->Operatewidget->rect().contains(ui->Operatewidget->mapFromGlobal(event->globalPos()))) {
  375. if (event->angleDelta().y() > 0) {
  376. updateScale(scaleFactor * 1.1); // 放大
  377. } else {
  378. updateScale(scaleFactor * 0.9); // 缩小
  379. }
  380. }
  381. if (ui->scrollArea->rect().contains(ui->scrollArea->mapFromGlobal(event->globalPos()))) {
  382. // 获取 QScrollArea 的横向滚动条
  383. QScrollBar *scrollBar = ui->scrollArea->horizontalScrollBar();
  384. // 根据滚轮滚动方向改变滚动条的值
  385. if (event->angleDelta().y() > 0) {
  386. scrollBar->setValue(scrollBar->value() - 50);
  387. } else {
  388. scrollBar->setValue(scrollBar->value() + 50);
  389. }
  390. }
  391. QMainWindow::wheelEvent(event);
  392. }
  393. void SingleCameraOperationWnd::onComboBoxIndexChanged(int index) {
  394. // 根据index获取图片路径
  395. QString imagePath = getImagePathFromIndex(index);
  396. if (!imagePath.isEmpty()) {
  397. QPixmap newPixmap(imagePath);
  398. QPixmap scaledPixmap = newPixmap.scaled(ui->Operatewidget->size(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
  399. ui->Operatewidget->setPixmap(scaledPixmap);
  400. // 更新当前图片的成员变量
  401. currentPixmap = scaledPixmap;
  402. scaleFactor = 1.0;
  403. ui->label_Percentage->setText("100%");
  404. }
  405. }
  406. QString SingleCameraOperationWnd::getImagePathFromIndex(int index) {
  407. QStringList imagePaths = {
  408. ":/images/test_image/image.png",
  409. ":/images/test_image/image_2.png",
  410. };
  411. if (index >= 0 && index < imagePaths.size()) {
  412. return imagePaths[index];
  413. }
  414. return ":/images/test_image/image.png";
  415. }
  416. void SingleCameraOperationWnd::showEvent(QShowEvent *event) {
  417. QMainWindow::showEvent(event);
  418. loadSettings();
  419. }
  420. void SingleCameraOperationWnd::hideEvent(QHideEvent *event) {
  421. QMainWindow::hideEvent(event);
  422. }
  423. void SingleCameraOperationWnd::handleDoubleClick(){
  424. if (currentMode == ModeImage) {
  425. QPixmap scaledImage = currentPixmap.scaled(currentPixmap.width(), currentPixmap.height(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
  426. ui->Operatewidget->setPixmap(scaledImage); // 这里传递缩放后的图片
  427. } else if (currentMode == ModeView && currentView) {
  428. QTransform transform;
  429. transform.scale(1, 1);
  430. currentView->setTransform(transform);
  431. }
  432. scaleFactor = 1.0;
  433. previousScaleFactor = 1.0;
  434. ui->label_Percentage->setText("100%");
  435. }
  436. void SingleCameraOperationWnd::showAndHideButton(){
  437. if(isShow == true){
  438. isShow = false;
  439. }else{
  440. isShow = true;
  441. }
  442. QList<QLineEdit*> lineEdits = {
  443. ui->RedLightlineEdit, ui->GreenLightlineEdit,
  444. ui->BlueLightlineEdit, ui->DotLightlineEdit,
  445. };
  446. QList<QSlider*> sliders = {
  447. ui->RedLightverticalSlider, ui->GreenLightverticalSlider,
  448. ui->BlueLightverticalSlider, ui->DotLightverticalSlider
  449. };
  450. QList<QProgressBar*> progressBar = {
  451. ui->RedLightprogressBar,ui->GreenLightprogressBar,
  452. ui->BlueLightprogressBar,ui->DotLightprogressBar
  453. };
  454. if(isShow == true){
  455. for (QLineEdit* lineEdit : lineEdits) {
  456. lineEdit->show();
  457. }
  458. for (int i = 0; i < sliders.size(); ++i) {
  459. sliders[i]->show();
  460. }
  461. for (int i = 0; i < progressBar.size(); ++i) {
  462. progressBar[i]->show();
  463. }
  464. ui->BlueLight->show();
  465. ui->RedLight->show();
  466. ui->DotLight->show();
  467. ui->GreenLight->show();
  468. ui->BlueLightlabel->show();
  469. ui->RedLightlabel->show();
  470. ui->DotLightlabel->show();
  471. ui->GreenLightlabel->show();
  472. }else{
  473. for (QLineEdit* lineEdit : lineEdits) {
  474. lineEdit->hide();
  475. }
  476. for (int i = 0; i < sliders.size(); ++i) {
  477. sliders[i]->hide();
  478. }
  479. for (int i = 0; i < progressBar.size(); ++i) {
  480. progressBar[i]->hide();
  481. }
  482. ui->BlueLight->hide();
  483. ui->RedLight->hide();
  484. ui->DotLight->hide();
  485. ui->GreenLight->hide();
  486. ui->BlueLightlabel->hide();
  487. ui->RedLightlabel->hide();
  488. ui->DotLightlabel->hide();
  489. ui->GreenLightlabel->hide();
  490. }
  491. }
  492. void SingleCameraOperationWnd::startCamera(int cameraId) {
  493. m_grabber = new ImageGrabber(cameraId);
  494. connect(m_grabber, &ImageGrabber::imageGrabbed,
  495. this, &SingleCameraOperationWnd::updateImage);
  496. m_grabber->start();
  497. }
  498. void SingleCameraOperationWnd::stopCamera(int cameraId){
  499. m_grabber->stop();
  500. }
  501. void SingleCameraOperationWnd::on_DatacomboBox_currentIndexChanged(int index){
  502. QSettings settings("YourCompany", "YourApplication_");
  503. int groupId = settings.value("GroupId", 0).toInt();
  504. if (groupMap.contains(groupId)) {
  505. Group* group = groupMap[groupId];
  506. // 修改属性
  507. group->setDatacomboBox(index);
  508. } else {
  509. qDebug() << "Group with id" << groupId << "not found.";
  510. }
  511. }
  512. void SingleCameraOperationWnd::handleComBoxChange(int groupId,int index){
  513. QSettings settings("YourCompany", "YourApplication_");
  514. int currentGroupId = settings.value("GroupId", 0).toInt();
  515. if(currentGroupId == groupId){
  516. ui->DatacomboBox->setCurrentIndex(index);
  517. }
  518. }
  519. void SingleCameraOperationWnd::updateImage(const QImage&image){
  520. QPixmap pixmap = QPixmap::fromImage(image);
  521. QSize size = ui->Operatewidget->size();
  522. // QPixmap scaledPixmap = pixmap.scaled(size, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  523. QPixmap scaledPixmap = pixmap.scaled(size, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
  524. ui->Operatewidget->setPixmap(scaledPixmap);
  525. }
  526. void SingleCameraOperationWnd::loadLiveVedio(){
  527. if(liveClick == true){
  528. startCamera(0);
  529. liveClick = false;
  530. }else{
  531. stopCamera(0);
  532. liveClick = true;
  533. }
  534. }