MainAndSecondaryCamerasWnd.cpp 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705
  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. m_nTimeShowPos = startTimer(600);
  257. ResetIdleTimer(true);
  258. }
  259. void MainAndSecondaryCamerasWnd::UpdateCameraDisplay0(int iCameraId, JVision::ImageInfo imageData)
  260. {
  261. // TODO: 这里需要改动
  262. QImage image(imageData.data, imageData.width, imageData.height, QImage::Format_Indexed8);
  263. ui->viewwidgetgroup_L->getOperatewidget()->setGeometry(ui->viewwidgetgroup_L->getOperatewidget()->pos().x(),
  264. ui->viewwidgetgroup_L->getOperatewidget()->pos().y(),
  265. ui->viewwidgetgroup_L->getOperatewidget()->width(),
  266. ui->viewwidgetgroup_L->getOperatewidget()->height());
  267. //ui->LeftOperatewidget->setPixmap(QPixmap::fromImage(image));
  268. emit UpDataImageShowSignals0(QPixmap::fromImage(image));
  269. }
  270. void MainAndSecondaryCamerasWnd::UpdateCameraDisplay1(int iCameraId, JVision::ImageInfo imageData)
  271. {
  272. QImage image(imageData.data, imageData.width, imageData.height, QImage::Format_Indexed8);
  273. ui->viewwidgetgroup_R->getOperatewidget()->setGeometry(ui->viewwidgetgroup_R->getOperatewidget()->pos().x(),
  274. ui->viewwidgetgroup_R->getOperatewidget()->pos().y(),
  275. ui->viewwidgetgroup_R->getOperatewidget()->width(),
  276. ui->viewwidgetgroup_R->getOperatewidget()->height());
  277. //ui->RightOperatewidget->setPixmap(QPixmap::fromImage(image));
  278. emit UpDataImageShowSignals1(QPixmap::fromImage(image));
  279. }
  280. void MainAndSecondaryCamerasWnd::UpdateCameraDisplay2(int iCameraId, JVision::ImageInfo imageData)
  281. {
  282. }
  283. void MainAndSecondaryCamerasWnd::UpdateCameraDisplay3(int iCameraId, JVision::ImageInfo imageData)
  284. {
  285. }
  286. void MainAndSecondaryCamerasWnd::UpdateCameraDisplay4(int iCameraId, JVision::ImageInfo imageData)
  287. {
  288. QImage image(imageData.data, imageData.width, imageData.height, QImage::Format_Indexed8);
  289. ui->viewwidgetgroup_R->getOperatewidget()->setGeometry(ui->viewwidgetgroup_R->getOperatewidget()->pos().x(),
  290. ui->viewwidgetgroup_R->getOperatewidget()->pos().y(),
  291. ui->viewwidgetgroup_R->getOperatewidget()->width(),
  292. ui->viewwidgetgroup_R->getOperatewidget()->height());
  293. //ui->RightOperatewidget->setPixmap(QPixmap::fromImage(image));
  294. emit UpDataImageShowSignals4(QPixmap::fromImage(image));
  295. }
  296. void MainAndSecondaryCamerasWnd::HideLayout(QHBoxLayout* layout, bool isHide)
  297. {
  298. for (int i = 0; i < layout->count(); ++i)
  299. {
  300. QWidget* widget = layout->itemAt(i)->widget();
  301. if (widget)
  302. {
  303. if (isHide)
  304. {
  305. widget->hide();
  306. }
  307. else
  308. {
  309. widget->show();
  310. }
  311. }
  312. }
  313. }
  314. void MainAndSecondaryCamerasWnd::UpdataLightJoystickSwitchPage()
  315. {
  316. auto Fun = [&](Group* pGroup,LightJoystickSwitchPage* p, ControlOperationPage* pContPage, bool bShow)
  317. {
  318. p->UpdatemPageGroup(pGroup);
  319. p->InitMainCameraBind(m_pMainCameraBind, bShow);
  320. p->HideOrShowPage(bShow);
  321. if (bShow)
  322. {
  323. pContPage->UpDateCameraBind(m_pMainCameraBind);
  324. }
  325. };
  326. for (int i = 0; i < m_veCurrentSelectGroup.size(); i++)
  327. {
  328. if (i == 0)
  329. {
  330. bool bShow = false;
  331. if (m_veCurrentSelectGroup[0].nSelectLeft1 == 1)
  332. {
  333. bShow = true;
  334. }
  335. Fun(m_veCurrentSelectGroup[0].pSelectGroup,ui->control_L,ui->viewwidgetgroup_L, bShow);
  336. }
  337. else if (i == 1)
  338. {
  339. bool bShow = false;
  340. if (m_veCurrentSelectGroup[1].nSelectLeft1 == 1)
  341. {
  342. bShow = true;
  343. }
  344. Fun(m_veCurrentSelectGroup[1].pSelectGroup,ui->control_L, ui->viewwidgetgroup_R, bShow);
  345. }
  346. }
  347. }
  348. void MainAndSecondaryCamerasWnd::timerEvent(QTimerEvent* event)
  349. {
  350. int nID = event->timerId();
  351. }
  352. void MainAndSecondaryCamerasWnd::ResetIdleTimer(bool bStart /*= false*/)
  353. {
  354. if (bStart)
  355. {
  356. if (isActiveWindow())
  357. {
  358. m_idleTimer = startTimer(3000);
  359. }
  360. }
  361. else
  362. {
  363. killTimer(m_idleTimer);
  364. m_idleTimer = -1;
  365. }
  366. }
  367. void MainAndSecondaryCamerasWnd::GetCurrentSelectSlots(int groupId, int nIndex)
  368. {
  369. if (m_pMainCameraBind == nullptr)
  370. {
  371. return;
  372. }
  373. // 绑定操作,用来初始化
  374. ST_CURRENT_SELECT_GROUP _curr;
  375. _curr.isBond = true;
  376. //2. 开始干活
  377. int nOnClickGroupId = groupId - 1; // 这里new 有些是0,有些是1 暂时选择
  378. if (m_pMainCameraBind->m_vecCamera.size() > nOnClickGroupId)
  379. {
  380. _curr.nCurrentCameraId = m_pMainCameraBind->m_vecCamera[nOnClickGroupId].iCameraId;
  381. }
  382. else
  383. {
  384. _curr.nCurrentCameraId = 0;
  385. }
  386. _curr.nSelectLeft1 = nIndex; // 是否选中窗口
  387. Group* pGroup = m_allGroup.at(nOnClickGroupId);
  388. _curr.pSelectGroup = pGroup;
  389. // 1.判断当前是否存储
  390. if (m_veCurrentSelectGroup.size() >= 2)
  391. {
  392. if (pGroup == m_veCurrentSelectGroup[1].pSelectGroup &&
  393. m_veCurrentSelectGroup[1].nSelectLeft1== nIndex)
  394. {
  395. return;
  396. }
  397. // 解绑操作,删除第0个 ,, 主要目前为了实现 相机切换
  398. disconnect(m_veCurrentSelectGroup[0].pSelectGroup, &Group::SetUpDataImageShowSig,
  399. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0);
  400. disconnect(m_veCurrentSelectGroup[0].pSelectGroup, &Group::SetUpDataImageShowSig,
  401. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4);
  402. disconnect(m_veCurrentSelectGroup[1].pSelectGroup, &Group::SetUpDataImageShowSig,
  403. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0);
  404. disconnect(m_veCurrentSelectGroup[1].pSelectGroup, &Group::SetUpDataImageShowSig,
  405. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4);
  406. m_veCurrentSelectGroup.erase(m_veCurrentSelectGroup.begin() + 0);// 0个
  407. if (m_veCurrentSelectGroup[0].nSelectLeft1 == 1)
  408. {
  409. connect(m_veCurrentSelectGroup[0].pSelectGroup, &Group::SetUpDataImageShowSig,
  410. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0);
  411. // 在绑定
  412. connect(pGroup, &Group::SetUpDataImageShowSig,
  413. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4);
  414. }
  415. else
  416. {
  417. // 直接复制图片?
  418. if (_curr.nSelectLeft1 == 1)
  419. {
  420. connect(m_veCurrentSelectGroup[0].pSelectGroup, &Group::SetUpDataImageShowSig,
  421. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4);
  422. }
  423. else
  424. {
  425. //loadGroupSettings(groupId, nIndex);
  426. }
  427. }
  428. m_veCurrentSelectGroup.push_back(_curr);
  429. UpdataLightJoystickSwitchPage();
  430. }
  431. else
  432. {
  433. if (m_veCurrentSelectGroup.size() > 0)
  434. {
  435. if (m_veCurrentSelectGroup[0].pSelectGroup != _curr.pSelectGroup)
  436. {
  437. if (m_veCurrentSelectGroup.size() == 1)
  438. {
  439. connect(pGroup, &Group::SetUpDataImageShowSig,
  440. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4);
  441. }
  442. else
  443. {
  444. connect(pGroup, &Group::SetUpDataImageShowSig,
  445. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0);
  446. }
  447. m_veCurrentSelectGroup.push_back(_curr);
  448. }
  449. else
  450. {
  451. m_veCurrentSelectGroup.clear();
  452. m_veCurrentSelectGroup.push_back(_curr);
  453. }
  454. UpdataLightJoystickSwitchPage();
  455. }
  456. else
  457. {
  458. if (m_veCurrentSelectGroup.size() == 1)
  459. {
  460. connect(pGroup, &Group::SetUpDataImageShowSig,
  461. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4);
  462. }
  463. else
  464. {
  465. connect(pGroup, &Group::SetUpDataImageShowSig,
  466. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0);
  467. }
  468. m_veCurrentSelectGroup.push_back(_curr);
  469. UpdataLightJoystickSwitchPage();
  470. }
  471. }
  472. }
  473. void MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0(const QPixmap& imageData)
  474. {
  475. //lastIndex = 1;
  476. QSize size_left = ui->viewwidgetgroup_L->getOperatewidget()->size();
  477. QPixmap scaledPixmap_left = m_lastRightPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  478. ui->viewwidgetgroup_L->getOperatewidget()->setPixmap(scaledPixmap_left);
  479. m_lastRightPixmap = imageData;
  480. //UpdataGroupSettings(imageData);
  481. }
  482. void MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals1(const QPixmap& imageData)
  483. {
  484. // lastIndex = 2;
  485. //UpdataGroupSettings(imageData);
  486. }
  487. void MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4(const QPixmap& imageData)
  488. {
  489. QSize size_left = ui->viewwidgetgroup_R->getOperatewidget()->size();
  490. QPixmap scaledPixmap_left = imageData.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  491. ui->viewwidgetgroup_R->getOperatewidget()->setPixmap(scaledPixmap_left);
  492. //m_lastRightPixmap = imageData;
  493. }
  494. void MainAndSecondaryCamerasWnd::wheelEvent(QWheelEvent *event)
  495. {
  496. if (ui->viewwidgetgroup_L->getOperatewidget()->rect().contains(ui->viewwidgetgroup_L->getOperatewidget()->mapFromGlobal(event->globalPos()))) {
  497. mousePos = ui->viewwidgetgroup_L->getOperatewidget()->mapFromGlobal(event->globalPos());
  498. if (event->angleDelta().y() > 0) {
  499. ui->viewwidgetgroup_L->updateScale(Left_scaleFactor * 1.1); // 放大
  500. } else {
  501. ui->viewwidgetgroup_L->updateScale(Left_scaleFactor * 0.9); // 缩小
  502. }
  503. }
  504. if (ui->viewwidgetgroup_R->getOperatewidget()->rect().contains(ui->viewwidgetgroup_R->getOperatewidget()->mapFromGlobal(event->globalPos()))) {
  505. mousePos = ui->viewwidgetgroup_R->getOperatewidget()->mapFromGlobal(event->globalPos());
  506. if (event->angleDelta().y() > 0) {
  507. ui->viewwidgetgroup_R->updateScale(Right_scaleFactor * 1.1); // 放大
  508. } else {
  509. ui->viewwidgetgroup_R->updateScale(Right_scaleFactor * 0.9); // 缩小
  510. }
  511. }
  512. if (ui->scrollArea->rect().contains(ui->scrollArea->mapFromGlobal(event->globalPos()))) {
  513. // 获取 QScrollArea 的横向滚动条
  514. QScrollBar *scrollBar = ui->scrollArea->horizontalScrollBar();
  515. // 根据滚轮滚动方向改变滚动条的值
  516. if (event->angleDelta().y() > 0) {
  517. scrollBar->setValue(scrollBar->value() - 50);
  518. } else {
  519. scrollBar->setValue(scrollBar->value() + 50);
  520. }
  521. }
  522. QMainWindow::wheelEvent(event);
  523. }
  524. bool MainAndSecondaryCamerasWnd::eventFilter(QObject* obj, QEvent* event)
  525. {
  526. // 检测用户活动事件
  527. switch (event->type())
  528. {
  529. case QEvent::KeyPress:
  530. case QEvent::MouseMove:
  531. case QEvent::MouseButtonPress:
  532. case QEvent::MouseButtonDblClick:
  533. case QEvent::Wheel:
  534. ResetIdleTimer();
  535. ResetIdleTimer(true);
  536. break;
  537. default:
  538. break;
  539. }
  540. return QMainWindow::eventFilter(obj, event);
  541. }
  542. void MainAndSecondaryCamerasWnd::showEvent(QShowEvent *event) {
  543. isUpdatingSettings = false;
  544. QMainWindow::showEvent(event);
  545. //loadSettings();
  546. isUpdatingSettings = false;
  547. }
  548. void MainAndSecondaryCamerasWnd::hideEvent(QHideEvent *event) {
  549. isUpdatingSettings = false;
  550. QMainWindow::hideEvent(event);
  551. }
  552. void MainAndSecondaryCamerasWnd::CheckIs()
  553. {
  554. /*QSettings settings("YourCompany", "YourApplication_Button");
  555. int groupId = settings.value("GroupId_button", 0).toInt();
  556. if (groupId == lastGroupId) {
  557. if (lastIndex == 1 ) {
  558. if(isShow == true){
  559. isShow = false;
  560. } else {
  561. isShow = true;
  562. }
  563. }
  564. if (lastLastIndex == 1 && groupId == lastLastGroupId) {
  565. if(isShow_L == true){
  566. isShow_L = false;
  567. } else {
  568. isShow_L = true;
  569. }
  570. }
  571. showAndHide();
  572. showAndHide_L();
  573. } else if (groupId == lastLastGroupId) {
  574. if (lastLastIndex == 1) {
  575. if(isShow_L == true){
  576. isShow_L = false;
  577. } else {
  578. isShow_L = true;
  579. }
  580. }
  581. showAndHide_L();
  582. }*/
  583. }
  584. QStringList MainAndSecondaryCamerasWnd::getImageslist() {
  585. // 指定图片文件夹路径
  586. QString folderPath = "photos/";
  587. // 创建 QDir 对象
  588. QDir dir(folderPath);
  589. // 检查文件夹是否存在
  590. if (!dir.exists()) {
  591. qWarning() << "Folder does not exist:" << folderPath;
  592. }
  593. // 获取文件夹中的所有图片文件
  594. QStringList filters;
  595. filters << "*.png" << "*.jpg" << "*.jpeg" << "*.bmp" << "*.gif"; // 添加你需要的图片格式
  596. QStringList images = dir.entryList(filters, QDir::Files);
  597. return images;
  598. }