MainAndSecondaryCamerasWnd.cpp 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683
  1. #include "MainAndSecondaryCamerasWnd.h"
  2. #include "ui_MainAndSecondaryCamerasWnd.h"
  3. #include <QSettings>
  4. #include <QCloseEvent>
  5. #include <QVBoxLayout>
  6. #include <QTimer>
  7. #include <QScrollBar>
  8. #include <QDoubleValidator>
  9. #include "CameraDistribute.h"
  10. #include "Src/common/JMessageTip.h"
  11. MainAndSecondaryCamerasWnd::MainAndSecondaryCamerasWnd(QWidget *parent)
  12. : JOriginalMainWnd(parent)
  13. , ui(new Ui::MainAndSecondaryCamerasWnd)
  14. {
  15. ui->setupUi(this);
  16. QSettings settings("YourOrganization", "YourApplication");
  17. settings.beginGroup("LastSettings");
  18. m_lastRightPixmap = settings.value("LastRightPixmap").value<QPixmap>();
  19. lasttextList = settings.value("LasttextList").toStringList();
  20. lastLastRightPixmap = settings.value("LastLastRightPixmap").value<QPixmap>();
  21. lastLasttextList = settings.value("LastLasttextList").toStringList();
  22. lastLastIndex = settings.value("LastLastIndex", 0).toInt();
  23. lastLastGroupId = settings.value("LastLastGroupId", 0).toInt();
  24. settings.endGroup();
  25. QString buildDirPath = QCoreApplication::applicationDirPath();
  26. QDir buildDirectory(buildDirPath);
  27. QStringList files = getImageslist(buildDirectory.filePath("photos"));
  28. for (const QString& file : files) {
  29. qDebug() << file;
  30. }
  31. ui->control_r->HideOrShowPage(false);
  32. ui->control_L->HideOrShowPage(false);
  33. ui->viewwidgetgroup_L->setBlueBord();
  34. qApp->installEventFilter(this);
  35. }
  36. MainAndSecondaryCamerasWnd::~MainAndSecondaryCamerasWnd()
  37. {
  38. delete ui;
  39. }
  40. void MainAndSecondaryCamerasWnd::initFrom()
  41. {
  42. {
  43. // 界面刷新
  44. InitPage();
  45. //STR_TEMPLATE strFun = {};
  46. //strFun.pView = ui->scrollArea;
  47. //strFun.veSignalFun.emplace_back(std::bind(&MainAndSecondaryCamerasWnd::UpdateCameraDisplay0, this, std::placeholders::_1, std::placeholders::_2));
  48. //strFun.veSignalFun.emplace_back(std::bind(&MainAndSecondaryCamerasWnd::UpdateCameraDisplay1, this, std::placeholders::_1, std::placeholders::_2));
  49. ////strFun.veSlotFun.emplace_back([this]() { CheckIs(); });
  50. //strFun.veSlotFun.emplace_back(std::bind(&MainAndSecondaryCamerasWnd::CheckIs, this));
  51. //InitAllCamerPage(strFun, this);
  52. //CameraImageHandlera<MainAndSecondaryCamerasWnd, STR_TEMPLATE> A(this, strFun);
  53. //SwitchToConfigAAAAA<MainAndSecondaryCamerasWnd, STR_TEMPLATE>();
  54. }
  55. //ui->LeftOperatewidget->setMouseTracking(true);
  56. //ui->RightOperatewidget->setMouseTracking(true);
  57. QSettings settings2("YourOrganization", "YourApplication_lastWndType");
  58. int lastWndType = settings2.value("LastWndType").toInt();
  59. int LastGroup = settings2.value("LastGroup").toInt();
  60. lastIndex = lastWndType;
  61. lastGroupId = LastGroup;
  62. QSettings settings("YourCompany", "YourApplication_");
  63. int groupId = settings.value("GroupId", 0).toInt();
  64. int index = settings.value("Index", 0).toInt();
  65. checkSettings();
  66. if (lastIndex == 1) {
  67. GetCurrentSelectSlots(lastGroupId, lastIndex);
  68. }
  69. if(index == 1){
  70. GetCurrentSelectSlots(groupId, index);
  71. }
  72. }
  73. void MainAndSecondaryCamerasWnd::InitPage()
  74. {
  75. QWidget* viewport = ui->scrollArea->viewport();
  76. QWidget* container = new QWidget(viewport);
  77. QHBoxLayout* mainLayout = new QHBoxLayout(container);
  78. mainLayout->setSpacing(28);
  79. mainLayout->setMargin(0);
  80. int nSize = 0;
  81. if (m_pMainCameraBind != nullptr)
  82. {
  83. nSize = m_pMainCameraBind->m_vecCamera.size();
  84. if (nSize == 0) // 针对获取不到的情况
  85. {
  86. nSize = 5;
  87. //JMessageTip::Message_warning("a");
  88. }
  89. QList<int> numbers;
  90. for (int i = 1; i <= nSize; i++)
  91. {
  92. numbers.push_back(i);
  93. }
  94. for (int i = 0; i < numbers.size(); ++i)
  95. {
  96. int num = numbers[i];
  97. CameraImageHandler* manager = new CameraImageHandler(num);
  98. Group* widget = manager->getGroup();
  99. CameraConnectUpdateImageFun(i, widget);
  100. connect(widget, &Group::sendUpdateGroupState,
  101. this, &MainAndSecondaryCamerasWnd::checkSettings);
  102. if (widget != nullptr)
  103. {
  104. mainLayout->addWidget(widget);
  105. m_allGroup.append(widget);
  106. }
  107. if (manager->getWafer())
  108. {
  109. waferMap.insert(num, manager->getWafer());
  110. }
  111. if (manager->getWafer()) {
  112. waffleMap.insert(num, manager->getWaffle());
  113. }
  114. if (manager->getMaterialBox()) {
  115. materialBoxMap.insert(num, manager->getMaterialBox());
  116. }
  117. delete manager;
  118. }
  119. // 设置控件的最小高度和最大宽度
  120. int minHeight = 162;
  121. int maxWidth = 244;
  122. int num = -28;
  123. for(Group* w : m_allGroup)
  124. {
  125. w->setMinimumHeight(minHeight);
  126. w->setMaximumWidth(maxWidth);
  127. num = num + 272;
  128. }
  129. container->setMinimumSize(num, 162);
  130. container->setLayout(mainLayout);
  131. ui->scrollArea->setWidget(container);
  132. ui->scrollArea->resize(1062, 177);
  133. // 只有一个相机的情况,直接绑定
  134. if (numbers.size() == 1)
  135. {
  136. Group* pGroup = m_allGroup[0];
  137. connect(pGroup, &Group::SetUpDataImageShowSig,
  138. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0);
  139. ST_CURRENT_SELECT_GROUP _curr;
  140. _curr.isBond = true;
  141. _curr.pSelectGroup = pGroup;
  142. _curr.nCurrentCameraId = pGroup->m_nGroupId;
  143. _curr.nSelectLeft1 = 1;
  144. m_veCurrentSelectGroup.push_back(_curr);
  145. UpdataLightJoystickSwitchPage();
  146. }
  147. }
  148. }
  149. void MainAndSecondaryCamerasWnd::CameraConnectUpdateImageFun(int nIndex, Group* widget)
  150. {
  151. auto BinCamerasImage = [&](void (MainAndSecondaryCamerasWnd::* pCamerasImage)(const QPixmap& imageData))
  152. {
  153. //共用函数
  154. //connect(widget, &Group::send_button_Signal, this, &MainAndSecondaryCamerasWnd::CheckIs);
  155. connect(widget, &Group::SetCurrentSelectSig, this, &MainAndSecondaryCamerasWnd::GetCurrentSelectSlots);
  156. // 相机图片
  157. connect(this, pCamerasImage, widget, &Group::UpDataImageShowSlots);
  158. };
  159. if (nIndex == 0)
  160. {
  161. BinCamerasImage(&MainAndSecondaryCamerasWnd::UpDataImageShowSignals0);
  162. }
  163. else if (nIndex == 1)
  164. {
  165. BinCamerasImage(&MainAndSecondaryCamerasWnd::UpDataImageShowSignals1);
  166. }
  167. else if (nIndex == 2)
  168. {
  169. BinCamerasImage(&MainAndSecondaryCamerasWnd::UpDataImageShowSignals2);
  170. }
  171. else if (nIndex == 3)
  172. {
  173. BinCamerasImage(&MainAndSecondaryCamerasWnd::UpDataImageShowSignals3);
  174. }
  175. else if (nIndex == 4)
  176. {
  177. BinCamerasImage(&MainAndSecondaryCamerasWnd::UpDataImageShowSignals4);
  178. }
  179. }
  180. void MainAndSecondaryCamerasWnd::checkSettings() {
  181. QSettings settings("YourCompany", "YourApplication_");
  182. int groupId = settings.value("GroupId", 0).toInt();
  183. int index = settings.value("Index", 0).toInt();
  184. if (groupId != lastGroupId || index != lastIndex) {
  185. loadSettings();
  186. lastGroupId = groupId;
  187. lastIndex = index;
  188. }
  189. }
  190. void MainAndSecondaryCamerasWnd::loadSettings()
  191. {
  192. QSettings settings("YourCompany", "YourApplication_");
  193. int groupId = settings.value("GroupId", 0).toInt();
  194. int index = settings.value("Index", 0).toInt();
  195. loadGroupSettings(groupId, index);
  196. }
  197. void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index)
  198. {
  199. QSettings settings("YourOrganization", "YourApplication");
  200. settings.beginGroup(QString::number(Id));
  201. QString imagePath = settings.value("ImagePath1").toString();
  202. int materialWndType = settings.value("MaterialWndType").toInt();
  203. QStringList textList = settings.value("TextList").toStringList();
  204. settings.endGroup();
  205. QSettings Last_settings("YourOrganization", "YourApplication");
  206. settings.beginGroup(QString::number(lastGroupId));
  207. QString Last_imagePath = settings.value("ImagePath1").toString();
  208. int Last_materialWndType = settings.value("MaterialWndType").toInt();
  209. QStringList Last_textList = settings.value("TextList").toStringList();
  210. settings.endGroup();
  211. QString lastRightImage = settings.value("LastRightImage").toString();
  212. QPixmap newPixmap;
  213. QPixmap Last_newPixmap;
  214. if (Index == 1)
  215. {
  216. newPixmap = QPixmap(imagePath);
  217. ui->viewwidgetgroup_R->updateOperateWidget(newPixmap);
  218. ui->viewwidgetgroup_R->setEnableControls(true);
  219. }
  220. if (lastIndex == 1)
  221. {
  222. Last_newPixmap = QPixmap(Last_imagePath);
  223. ui->viewwidgetgroup_L->updateOperateWidget(Last_newPixmap);
  224. ui->viewwidgetgroup_L->setEnableControls(true);
  225. }
  226. else if (lastIndex == 2)
  227. {
  228. updateMaterialWidget(last_left,Last_materialWndType, lastGroupId);
  229. ui->viewwidgetgroup_L->setEnableControls(false);
  230. }
  231. if (Index == 2)
  232. {
  233. updateMaterialWidget(current_right,materialWndType, Id);
  234. ui->viewwidgetgroup_R->setEnableControls(false);
  235. }
  236. QSettings settings2("YourOrganization", "YourApplication_lastWndType");
  237. settings2.setValue("LastWndType", lastIndex);
  238. settings2.setValue("LastGroup", lastGroupId);
  239. QPixmap scaledPixmap_right = newPixmap.scaled(ui->viewwidgetgroup_R->getOperatewidget()->size(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
  240. if (isUpdatingSettings) {
  241. lastLastRightPixmap = m_lastRightPixmap;
  242. lastLasttextList = lasttextList;
  243. m_lastRightPixmap = scaledPixmap_right;
  244. lasttextList = textList;
  245. lastLastIndex = lastIndex;
  246. lastLastGroupId = lastGroupId;
  247. }
  248. }
  249. void MainAndSecondaryCamerasWnd::updateMaterialWidget(int side,int materialWndType, int groupId) {
  250. if (side == last_left) {
  251. switch (materialWndType) {
  252. case 1: ui->viewwidgetgroup_L->setWafer(waferMap.value(groupId)); break;
  253. case 2: ui->viewwidgetgroup_L->setWaffle(waffleMap.value(groupId)); break;
  254. case 3: ui->viewwidgetgroup_L->setMaterialBox(materialBoxMap.value(groupId)); break;
  255. }
  256. }
  257. else if (side == current_right) {
  258. switch (materialWndType) {
  259. case 1: ui->viewwidgetgroup_R->setWafer(waferMap.value(groupId)); break;
  260. case 2: ui->viewwidgetgroup_R->setWaffle(waffleMap.value(groupId)); break;
  261. case 3: ui->viewwidgetgroup_R->setMaterialBox(materialBoxMap.value(groupId)); break;
  262. }
  263. }
  264. }
  265. void MainAndSecondaryCamerasWnd::InitMainCameraBind(CameraBind* pCameraBind)
  266. {
  267. m_pMainCameraBind = pCameraBind;
  268. initFrom();
  269. }
  270. void MainAndSecondaryCamerasWnd::UpdateCameraDisplay0(int iCameraId, JVision::ImageInfo imageData)
  271. {
  272. // TODO: 这里需要改动
  273. QImage image(imageData.data, imageData.width, imageData.height, QImage::Format_Indexed8);
  274. ui->viewwidgetgroup_L->getOperatewidget()->setGeometry(ui->viewwidgetgroup_L->getOperatewidget()->pos().x(),
  275. ui->viewwidgetgroup_L->getOperatewidget()->pos().y(),
  276. ui->viewwidgetgroup_L->getOperatewidget()->width(),
  277. ui->viewwidgetgroup_L->getOperatewidget()->height());
  278. //ui->LeftOperatewidget->setPixmap(QPixmap::fromImage(image));
  279. emit UpDataImageShowSignals0(QPixmap::fromImage(image));
  280. }
  281. void MainAndSecondaryCamerasWnd::UpdateCameraDisplay1(int iCameraId, JVision::ImageInfo imageData)
  282. {
  283. QImage image(imageData.data, imageData.width, imageData.height, QImage::Format_Indexed8);
  284. ui->viewwidgetgroup_R->getOperatewidget()->setGeometry(ui->viewwidgetgroup_R->getOperatewidget()->pos().x(),
  285. ui->viewwidgetgroup_R->getOperatewidget()->pos().y(),
  286. ui->viewwidgetgroup_R->getOperatewidget()->width(),
  287. ui->viewwidgetgroup_R->getOperatewidget()->height());
  288. //ui->RightOperatewidget->setPixmap(QPixmap::fromImage(image));
  289. emit UpDataImageShowSignals1(QPixmap::fromImage(image));
  290. }
  291. void MainAndSecondaryCamerasWnd::UpdateCameraDisplay2(int iCameraId, JVision::ImageInfo imageData)
  292. {
  293. }
  294. void MainAndSecondaryCamerasWnd::UpdateCameraDisplay3(int iCameraId, JVision::ImageInfo imageData)
  295. {
  296. }
  297. void MainAndSecondaryCamerasWnd::UpdateCameraDisplay4(int iCameraId, JVision::ImageInfo imageData)
  298. {
  299. QImage image(imageData.data, imageData.width, imageData.height, QImage::Format_Indexed8);
  300. ui->viewwidgetgroup_R->getOperatewidget()->setGeometry(ui->viewwidgetgroup_R->getOperatewidget()->pos().x(),
  301. ui->viewwidgetgroup_R->getOperatewidget()->pos().y(),
  302. ui->viewwidgetgroup_R->getOperatewidget()->width(),
  303. ui->viewwidgetgroup_R->getOperatewidget()->height());
  304. //ui->RightOperatewidget->setPixmap(QPixmap::fromImage(image));
  305. emit UpDataImageShowSignals4(QPixmap::fromImage(image));
  306. }
  307. void MainAndSecondaryCamerasWnd::HideLayout(QHBoxLayout* layout, bool isHide)
  308. {
  309. for (int i = 0; i < layout->count(); ++i)
  310. {
  311. QWidget* widget = layout->itemAt(i)->widget();
  312. if (widget)
  313. {
  314. if (isHide)
  315. {
  316. widget->hide();
  317. }
  318. else
  319. {
  320. widget->show();
  321. }
  322. }
  323. }
  324. }
  325. void MainAndSecondaryCamerasWnd::UpdataLightJoystickSwitchPage()
  326. {
  327. auto Fun = [&](Group* pGroup,LightJoystickSwitchPage* p, ControlOperationPage* pContPage, bool bShow)
  328. {
  329. p->UpdatemPageGroup(pGroup);
  330. p->InitMainCameraBind(m_pMainCameraBind, bShow);
  331. p->HideOrShowPage(bShow);
  332. if (bShow)
  333. {
  334. pContPage->UpDateCameraBind(m_pMainCameraBind);
  335. }
  336. };
  337. for (int i = 0; i < m_veCurrentSelectGroup.size(); i++)
  338. {
  339. if (i == 0)
  340. {
  341. bool bShow = false;
  342. if (m_veCurrentSelectGroup[0].nSelectLeft1 == 1)
  343. {
  344. bShow = true;
  345. }
  346. Fun(m_veCurrentSelectGroup[0].pSelectGroup,ui->control_L,ui->viewwidgetgroup_L, bShow);
  347. }
  348. else if (i == 1)
  349. {
  350. bool bShow = false;
  351. if (m_veCurrentSelectGroup[1].nSelectLeft1 == 1)
  352. {
  353. bShow = true;
  354. }
  355. Fun(m_veCurrentSelectGroup[1].pSelectGroup,ui->control_r, ui->viewwidgetgroup_R, bShow);
  356. }
  357. }
  358. }
  359. void MainAndSecondaryCamerasWnd::timerEvent(QTimerEvent* event)
  360. {
  361. int nID = event->timerId();
  362. }
  363. void MainAndSecondaryCamerasWnd::GetCurrentSelectSlots(int groupId, int nIndex)
  364. {
  365. if (m_pMainCameraBind == nullptr)
  366. {
  367. return;
  368. }
  369. // 绑定操作,用来初始化
  370. ST_CURRENT_SELECT_GROUP _curr;
  371. _curr.isBond = true;
  372. //2. 开始干活
  373. int nOnClickGroupId = groupId - 1; // 这里new 有些是0,有些是1 暂时选择
  374. if (m_pMainCameraBind->m_vecCamera.size() > nOnClickGroupId)
  375. {
  376. _curr.nCurrentCameraId = m_pMainCameraBind->m_vecCamera[nOnClickGroupId].iCameraId;
  377. }
  378. else
  379. {
  380. _curr.nCurrentCameraId = 0;
  381. }
  382. _curr.nSelectLeft1 = nIndex; // 是否选中窗口
  383. Group* pGroup = m_allGroup.at(nOnClickGroupId);
  384. _curr.pSelectGroup = pGroup;
  385. // 1.判断当前是否存储
  386. if (m_veCurrentSelectGroup.size() >= 2)
  387. {
  388. if (pGroup == m_veCurrentSelectGroup[1].pSelectGroup &&
  389. m_veCurrentSelectGroup[1].nSelectLeft1== nIndex)
  390. {
  391. return;
  392. }
  393. // 解绑操作,删除第0个 ,, 主要目前为了实现 相机切换
  394. disconnect(m_veCurrentSelectGroup[0].pSelectGroup, &Group::SetUpDataImageShowSig,
  395. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0);
  396. disconnect(m_veCurrentSelectGroup[0].pSelectGroup, &Group::SetUpDataImageShowSig,
  397. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4);
  398. disconnect(m_veCurrentSelectGroup[1].pSelectGroup, &Group::SetUpDataImageShowSig,
  399. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0);
  400. disconnect(m_veCurrentSelectGroup[1].pSelectGroup, &Group::SetUpDataImageShowSig,
  401. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4);
  402. m_veCurrentSelectGroup.erase(m_veCurrentSelectGroup.begin() + 0);// 0个
  403. if (m_veCurrentSelectGroup[0].nSelectLeft1 == 1)
  404. {
  405. connect(m_veCurrentSelectGroup[0].pSelectGroup, &Group::SetUpDataImageShowSig,
  406. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0);
  407. // 在绑定
  408. connect(pGroup, &Group::SetUpDataImageShowSig,
  409. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4);
  410. }
  411. else
  412. {
  413. // 直接复制图片?
  414. if (_curr.nSelectLeft1 == 1)
  415. {
  416. connect(m_veCurrentSelectGroup[0].pSelectGroup, &Group::SetUpDataImageShowSig,
  417. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4);
  418. }
  419. else
  420. {
  421. //loadGroupSettings(groupId, nIndex);
  422. }
  423. }
  424. m_veCurrentSelectGroup.push_back(_curr);
  425. UpdataLightJoystickSwitchPage();
  426. }
  427. else
  428. {
  429. if (m_veCurrentSelectGroup.size() > 0)
  430. {
  431. if (m_veCurrentSelectGroup[0].pSelectGroup != _curr.pSelectGroup)
  432. {
  433. if (m_veCurrentSelectGroup.size() == 1)
  434. {
  435. connect(pGroup, &Group::SetUpDataImageShowSig,
  436. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4);
  437. }
  438. else
  439. {
  440. connect(pGroup, &Group::SetUpDataImageShowSig,
  441. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0);
  442. }
  443. m_veCurrentSelectGroup.push_back(_curr);
  444. }
  445. else
  446. {
  447. m_veCurrentSelectGroup.clear();
  448. m_veCurrentSelectGroup.push_back(_curr);
  449. }
  450. UpdataLightJoystickSwitchPage();
  451. }
  452. else
  453. {
  454. if (m_veCurrentSelectGroup.size() == 1)
  455. {
  456. connect(pGroup, &Group::SetUpDataImageShowSig,
  457. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4);
  458. }
  459. else
  460. {
  461. connect(pGroup, &Group::SetUpDataImageShowSig,
  462. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0);
  463. }
  464. m_veCurrentSelectGroup.push_back(_curr);
  465. UpdataLightJoystickSwitchPage();
  466. }
  467. }
  468. }
  469. void MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0(const QPixmap& imageData)
  470. {
  471. //lastIndex = 1;
  472. QSize size_left = ui->viewwidgetgroup_L->getOperatewidget()->size();
  473. QPixmap scaledPixmap_left = m_lastRightPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  474. ui->viewwidgetgroup_L->getOperatewidget()->setPixmap(scaledPixmap_left);
  475. m_lastRightPixmap = imageData;
  476. //UpdataGroupSettings(imageData);
  477. }
  478. void MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals1(const QPixmap& imageData)
  479. {
  480. // lastIndex = 2;
  481. //UpdataGroupSettings(imageData);
  482. }
  483. void MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4(const QPixmap& imageData)
  484. {
  485. QSize size_left = ui->viewwidgetgroup_R->getOperatewidget()->size();
  486. QPixmap scaledPixmap_left = imageData.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  487. ui->viewwidgetgroup_R->getOperatewidget()->setPixmap(scaledPixmap_left);
  488. //m_lastRightPixmap = imageData;
  489. }
  490. void MainAndSecondaryCamerasWnd::wheelEvent(QWheelEvent *event)
  491. {
  492. if (ui->viewwidgetgroup_L->getOperatewidget()->rect().contains(ui->viewwidgetgroup_L->getOperatewidget()->mapFromGlobal(event->globalPos()))) {
  493. mousePos = ui->viewwidgetgroup_L->getOperatewidget()->mapFromGlobal(event->globalPos());
  494. if (event->angleDelta().y() > 0) {
  495. ui->viewwidgetgroup_L->updateScale(Left_scaleFactor * 1.1); // 放大
  496. } else {
  497. ui->viewwidgetgroup_L->updateScale(Left_scaleFactor * 0.9); // 缩小
  498. }
  499. }
  500. if (ui->viewwidgetgroup_R->getOperatewidget()->rect().contains(ui->viewwidgetgroup_R->getOperatewidget()->mapFromGlobal(event->globalPos()))) {
  501. mousePos = ui->viewwidgetgroup_R->getOperatewidget()->mapFromGlobal(event->globalPos());
  502. if (event->angleDelta().y() > 0) {
  503. ui->viewwidgetgroup_R->updateScale(Right_scaleFactor * 1.1); // 放大
  504. } else {
  505. ui->viewwidgetgroup_R->updateScale(Right_scaleFactor * 0.9); // 缩小
  506. }
  507. }
  508. if (ui->scrollArea->rect().contains(ui->scrollArea->mapFromGlobal(event->globalPos()))) {
  509. // 获取 QScrollArea 的横向滚动条
  510. QScrollBar *scrollBar = ui->scrollArea->horizontalScrollBar();
  511. // 根据滚轮滚动方向改变滚动条的值
  512. if (event->angleDelta().y() > 0) {
  513. scrollBar->setValue(scrollBar->value() - 50);
  514. } else {
  515. scrollBar->setValue(scrollBar->value() + 50);
  516. }
  517. }
  518. QMainWindow::wheelEvent(event);
  519. }
  520. void MainAndSecondaryCamerasWnd::showEvent(QShowEvent *event) {
  521. isUpdatingSettings = false;
  522. QMainWindow::showEvent(event);
  523. //loadSettings();
  524. isUpdatingSettings = false;
  525. }
  526. void MainAndSecondaryCamerasWnd::hideEvent(QHideEvent *event) {
  527. isUpdatingSettings = false;
  528. QMainWindow::hideEvent(event);
  529. }
  530. void MainAndSecondaryCamerasWnd::CheckIs()
  531. {
  532. /*QSettings settings("YourCompany", "YourApplication_Button");
  533. int groupId = settings.value("GroupId_button", 0).toInt();
  534. if (groupId == lastGroupId) {
  535. if (lastIndex == 1 ) {
  536. if(isShow == true){
  537. isShow = false;
  538. } else {
  539. isShow = true;
  540. }
  541. }
  542. if (lastLastIndex == 1 && groupId == lastLastGroupId) {
  543. if(isShow_L == true){
  544. isShow_L = false;
  545. } else {
  546. isShow_L = true;
  547. }
  548. }
  549. showAndHide();
  550. showAndHide_L();
  551. } else if (groupId == lastLastGroupId) {
  552. if (lastLastIndex == 1) {
  553. if(isShow_L == true){
  554. isShow_L = false;
  555. } else {
  556. isShow_L = true;
  557. }
  558. }
  559. showAndHide_L();
  560. }*/
  561. }
  562. QStringList MainAndSecondaryCamerasWnd::getImageslist(const QString& path) {
  563. // 创建 QDir 对象
  564. QDir dir(path);
  565. // 检查文件夹是否存在
  566. if (!dir.exists()) {
  567. qWarning() << "Folder does not exist:" ;
  568. }
  569. // 获取文件夹中的所有图片文件
  570. QStringList filters;
  571. filters << "*.png" << "*.jpg" << "*.jpeg" << "*.bmp" << "*.gif"; // 添加你需要的图片格式
  572. QStringList fileList = dir.entryList(filters, QDir::Files);
  573. return fileList;
  574. }