MainAndSecondaryCamerasWnd.cpp 22 KB

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