MainAndSecondaryCamerasWnd.cpp 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404
  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. ui->control_r->HideOrShowPage(false);
  26. ui->control_L->HideOrShowPage(false);
  27. //initFrom();
  28. qApp->installEventFilter(this);
  29. }
  30. MainAndSecondaryCamerasWnd::~MainAndSecondaryCamerasWnd()
  31. {
  32. m_pMainCameraBind = nullptr;
  33. delete ui;
  34. }
  35. void MainAndSecondaryCamerasWnd::initFrom()
  36. {
  37. ui->Leftlabel_Percentage->setAlignment(Qt::AlignCenter);
  38. ui->Rightlabel_Percentage->setAlignment(Qt::AlignCenter);
  39. connect(ui->LeftOperatewidget,&ImageWidget::sendDoubleClicksignal,this,&MainAndSecondaryCamerasWnd::handleDoubleClick);
  40. connect(ui->RightOperatewidget,&ImageWidget::sendDoubleClicksignal,this,&MainAndSecondaryCamerasWnd::handleDoubleClick);
  41. {
  42. // 界面刷新
  43. InitPage();
  44. //STR_TEMPLATE strFun = {};
  45. //strFun.pView = ui->scrollArea;
  46. //strFun.veSignalFun.emplace_back(std::bind(&MainAndSecondaryCamerasWnd::UpdateCameraDisplay0, this, std::placeholders::_1, std::placeholders::_2));
  47. //strFun.veSignalFun.emplace_back(std::bind(&MainAndSecondaryCamerasWnd::UpdateCameraDisplay1, this, std::placeholders::_1, std::placeholders::_2));
  48. ////strFun.veSlotFun.emplace_back([this]() { CheckIs(); });
  49. //strFun.veSlotFun.emplace_back(std::bind(&MainAndSecondaryCamerasWnd::CheckIs, this));
  50. //InitAllCamerPage(strFun, this);
  51. //CameraImageHandlera<MainAndSecondaryCamerasWnd, STR_TEMPLATE> A(this, strFun);
  52. //SwitchToConfigAAAAA<MainAndSecondaryCamerasWnd, STR_TEMPLATE>();
  53. }
  54. ui->LeftOperatewidget->setMouseTracking(true);
  55. ui->RightOperatewidget->setMouseTracking(true);
  56. QSettings settings2("YourOrganization", "YourApplication_lastWndType");
  57. int lastWndType = settings2.value("LastWndType").toInt();
  58. int LastGroup = settings2.value("LastGroup").toInt();
  59. lastIndex = lastWndType;
  60. lastGroupId = LastGroup;
  61. QTimer* timer = new QTimer(this);
  62. connect(timer, &QTimer::timeout, this, &MainAndSecondaryCamerasWnd::checkSettings);
  63. timer->start(100);
  64. InitModulesShow();
  65. }
  66. void MainAndSecondaryCamerasWnd::InitPage()
  67. {
  68. QWidget* viewport = ui->scrollArea->viewport();
  69. QWidget* container = new QWidget(viewport);
  70. QHBoxLayout* mainLayout = new QHBoxLayout(container);
  71. mainLayout->setSpacing(28);
  72. mainLayout->setMargin(0);
  73. int nSize = 0;
  74. if (m_pMainCameraBind != nullptr)
  75. {
  76. nSize = m_pMainCameraBind->m_vecCamera.size();
  77. if (nSize == 0) // 针对获取不到的情况
  78. {
  79. //nSize = 5;
  80. JMessageTip::Message_warning("a");
  81. }
  82. QList<int> numbers;
  83. for (int i = 1; i <= nSize; i++)
  84. {
  85. numbers.push_back(i);
  86. }
  87. for (int i = 0; i < numbers.size(); ++i)
  88. {
  89. int num = numbers[i];
  90. CameraImageHandler* manager = new CameraImageHandler(num);
  91. Group* widget = manager->getGroup();
  92. CameraConnectUpdateImageFun(i, widget);
  93. if (widget != nullptr)
  94. {
  95. mainLayout->addWidget(widget);
  96. m_currentSelectGroup.liGroup.append(widget);
  97. }
  98. if (manager->getWafer())
  99. {
  100. waferMap.insert(num, manager->getWafer());
  101. }
  102. if (manager->getWafer()) {
  103. waffleMap.insert(num, manager->getWaffle());
  104. }
  105. if (manager->getMaterialBox()) {
  106. materialBoxMap.insert(num, manager->getMaterialBox());
  107. }
  108. delete manager;
  109. }
  110. // 设置控件的最小高度和最大宽度
  111. int minHeight = 162;
  112. int maxWidth = 244;
  113. int num = -28;
  114. for (Group* w : m_currentSelectGroup.liGroup)
  115. {
  116. w->setMinimumHeight(minHeight);
  117. w->setMaximumWidth(maxWidth);
  118. num = num + 272;
  119. }
  120. container->setMinimumSize(num, 162);
  121. container->setLayout(mainLayout);
  122. ui->scrollArea->setWidget(container);
  123. ui->scrollArea->resize(1062, 177);
  124. // 只有一个相机的情况,直接绑定
  125. if (numbers.size() == 1)
  126. {
  127. Group* pGroup = m_currentSelectGroup.liGroup[0];
  128. connect(pGroup, &Group::SetUpDataImageShowSig,
  129. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0);
  130. ST_CURRENT_SELECT_GROUP _curr;
  131. _curr.isBond = true;
  132. _curr.pSelectGroup = pGroup;
  133. _curr.nCurrentCameraId = pGroup->m_nGroupId;
  134. _curr.nSelectLeft1 = 1;
  135. m_veCurrentSelectGroup.push_back(_curr);
  136. UpdataLightJoystickSwitchPage(pGroup);
  137. }
  138. }
  139. }
  140. void MainAndSecondaryCamerasWnd::CameraConnectUpdateImageFun(int nIndex, Group* widget)
  141. {
  142. auto BinCamerasImage = [&](void (MainAndSecondaryCamerasWnd::* pCamerasImage)(const QPixmap& imageData))
  143. {
  144. //共用函数
  145. //connect(widget, &Group::send_button_Signal, this, &MainAndSecondaryCamerasWnd::CheckIs);
  146. connect(widget, &Group::SetCurrentSelectSig, this, &MainAndSecondaryCamerasWnd::GetCurrentSelectSlots);
  147. // 相机图片
  148. connect(this, pCamerasImage, widget, &Group::UpDataImageShowSlots);
  149. };
  150. if (nIndex == 0)
  151. {
  152. BinCamerasImage(&MainAndSecondaryCamerasWnd::UpDataImageShowSignals0);
  153. }
  154. else if (nIndex == 1)
  155. {
  156. BinCamerasImage(&MainAndSecondaryCamerasWnd::UpDataImageShowSignals1);
  157. }
  158. else if (nIndex == 2)
  159. {
  160. BinCamerasImage(&MainAndSecondaryCamerasWnd::UpDataImageShowSignals2);
  161. }
  162. else if (nIndex == 3)
  163. {
  164. BinCamerasImage(&MainAndSecondaryCamerasWnd::UpDataImageShowSignals3);
  165. }
  166. else if (nIndex == 4)
  167. {
  168. BinCamerasImage(&MainAndSecondaryCamerasWnd::UpDataImageShowSignals4);
  169. }
  170. }
  171. void MainAndSecondaryCamerasWnd::InitModulesShow()
  172. {
  173. if (m_pMainCameraBind != nullptr)
  174. {
  175. DeduplicationBox(ui->axisComboBox, m_pMainCameraBind->m_vecCAxis, 0);
  176. DeduplicationBox(ui->axisTypeComboBox, m_pMainCameraBind->m_vecCAxis, 1);
  177. }
  178. }
  179. template<class T>
  180. void MainAndSecondaryCamerasWnd::DeduplicationBox(QComboBox* pCom, const T& veTemp, int nIndex)
  181. {
  182. QStringList items;
  183. for (int i = 0; i < pCom->count(); ++i)
  184. {
  185. items << pCom->itemText(i);
  186. }
  187. for (auto& a : veTemp)
  188. {
  189. QString strName;
  190. if (nIndex == 0)
  191. {
  192. strName = a->GetModuleType().c_str();
  193. }
  194. else if (nIndex == 1)
  195. {
  196. strName = a->GetStringAxisType().c_str();
  197. }
  198. bool bMa = false; // 是否匹配
  199. for (auto b : items)
  200. {
  201. if (b == strName)
  202. {
  203. bMa = true;
  204. break;
  205. }
  206. }
  207. if (!bMa)
  208. {
  209. pCom->addItem(strName);
  210. }
  211. }
  212. }
  213. void MainAndSecondaryCamerasWnd::handleDoubleClick(){
  214. QPoint globalMousePos = QCursor::pos(); // 获取当前鼠标的全局位置
  215. QPoint leftWidgetLocalPos = ui->LeftOperatewidget->mapFromGlobal(globalMousePos);
  216. QPoint rightWidgetLocalPos = ui->RightOperatewidget->mapFromGlobal(globalMousePos);
  217. if (ui->LeftOperatewidget->rect().contains(leftWidgetLocalPos)){
  218. if (Left_currentMode == ModeImage) {
  219. QPixmap scaledImage = Left_currentPixmap.scaled(Left_currentPixmap.width(), Left_currentPixmap.height(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
  220. ui->LeftOperatewidget->setPixmap(scaledImage); // 这里传递缩放后的图片
  221. } else if (Left_currentMode == ModeView && Left_currentView) {
  222. QTransform transform;
  223. transform.scale(1, 1);
  224. Left_currentView->setTransform(transform);
  225. }
  226. Left_scaleFactor = 1.0;
  227. Left_previousScaleFactor = 1.0;
  228. ui->Leftlabel_Percentage->setText("100%");
  229. }
  230. if(ui->RightOperatewidget->rect().contains(rightWidgetLocalPos)){
  231. if (Right_currentMode == ModeImage) {
  232. QPixmap scaledImage = Right_currentPixmap.scaled(Right_currentPixmap.width(), Right_currentPixmap.height(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
  233. ui->RightOperatewidget->setPixmap(scaledImage); // 这里传递缩放后的图片
  234. } else if (Right_currentMode == ModeView && Right_currentView) {
  235. QTransform transform;
  236. transform.scale(1, 1);
  237. Right_currentView->setTransform(transform);
  238. }
  239. Right_scaleFactor = 1.0;
  240. Right_previousScaleFactor = 1.0;
  241. ui->Rightlabel_Percentage->setText("100%");
  242. }
  243. }
  244. void MainAndSecondaryCamerasWnd::checkSettings() {
  245. QSettings settings("YourCompany", "YourApplication_");
  246. int groupId = settings.value("GroupId", 0).toInt();
  247. int index = settings.value("Index", 0).toInt();
  248. if (groupId != lastGroupId || index != lastIndex) {
  249. loadSettings();
  250. lastGroupId = groupId;
  251. lastIndex = index;
  252. }
  253. }
  254. void MainAndSecondaryCamerasWnd::loadSettings()
  255. {
  256. QSettings settings("YourCompany", "YourApplication_");
  257. int groupId = settings.value("GroupId", 0).toInt();
  258. int index = settings.value("Index", 0).toInt();
  259. //TODO: 这个地方目前暂停使用
  260. loadGroupSettings(groupId, index);
  261. }
  262. void MainAndSecondaryCamerasWnd::loadGroupSettings(int Id, int Index) {
  263. // isUpdatingSettings = true;
  264. QSettings settings("YourOrganization", "YourApplication");
  265. settings.beginGroup(QString::number(Id));
  266. QString imagePath1 = settings.value("ImagePath1").toString();
  267. int materialWndType = settings.value("MaterialWndType").toInt();
  268. QStringList textList = settings.value("TextList").toStringList();
  269. settings.endGroup();
  270. QSettings Last_settings("YourOrganization", "YourApplication");
  271. settings.beginGroup(QString::number(lastGroupId));
  272. QString Last_imagePath1 = settings.value("ImagePath1").toString();
  273. int Last_materialWndType = settings.value("MaterialWndType").toInt();
  274. QStringList Last_textList = settings.value("TextList").toStringList();
  275. settings.endGroup();
  276. QString lastRightImage = settings.value("LastRightImage").toString();
  277. QSize size_left = ui->LeftOperatewidget->size();
  278. QSize size_right = ui->RightOperatewidget->size();
  279. QPixmap newPixmap;
  280. QPixmap Last_newPixmap;
  281. if (Index == 1) {
  282. //newPixmap = QPixmap(imagePath1);
  283. clearLayout(1);
  284. newPixmap = QPixmap(imagePath1);
  285. QPixmap scaledPixmap = newPixmap.scaled(size_right, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  286. Right_currentMode = ModeImage;
  287. Right_currentPixmap = scaledPixmap;
  288. Right_scaleFactor = 1.0;
  289. Right_previousScaleFactor = 1.0;
  290. ui->RightOperatewidget->setPixmap(scaledPixmap);
  291. double percentage = Right_scaleFactor * 100;
  292. QString percentageStr = QString::number((int)percentage);
  293. ui->Rightlabel_Percentage->setText(QString("%1%").arg(percentageStr));
  294. if (lastIndex == 1) {
  295. clearLayout(0);
  296. Last_newPixmap = QPixmap(Last_imagePath1);
  297. QPixmap scaledPixmap = Last_newPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  298. Left_currentMode = ModeImage;
  299. Left_currentPixmap = scaledPixmap;
  300. Left_scaleFactor = 1.0;
  301. Left_previousScaleFactor = 1.0;
  302. ui->LeftOperatewidget->setPixmap(scaledPixmap);
  303. double percentage = Left_scaleFactor * 100;
  304. QString percentageStr = QString::number((int)percentage);
  305. ui->Leftlabel_Percentage->setText(QString("%1%").arg(percentageStr));
  306. }
  307. else if (lastIndex == 2) {
  308. clearLayout(0);
  309. if (Last_materialWndType == 1) {
  310. ui->LeftOperatewidget->clearPixmap();
  311. QVBoxLayout* layout = new QVBoxLayout(ui->LeftOperatewidget);
  312. waferMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
  313. layout->setContentsMargins(0, 0, 0, 0);
  314. layout->addWidget(waferMap.value(lastGroupId)->view);
  315. ui->LeftOperatewidget->setLayout(layout);
  316. Left_currentMode = ModeView;
  317. Left_currentView = waferMap.value(lastGroupId)->view;
  318. Left_scaleFactor = 1.0;
  319. applyScale(0);
  320. }
  321. else if (Last_materialWndType == 2) {
  322. ui->LeftOperatewidget->clearPixmap();
  323. QVBoxLayout* layout = new QVBoxLayout(ui->LeftOperatewidget);
  324. waffleMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
  325. layout->setContentsMargins(0, 0, 0, 0);
  326. layout->addWidget(waffleMap.value(lastGroupId)->view);
  327. ui->LeftOperatewidget->setLayout(layout);
  328. Left_currentMode = ModeView;
  329. Left_currentView = waffleMap.value(lastGroupId)->view;
  330. Left_scaleFactor = 1.0;
  331. applyScale(0);
  332. }
  333. else if (Last_materialWndType == 3) {
  334. ui->LeftOperatewidget->clearPixmap();
  335. QVBoxLayout* layout = new QVBoxLayout(ui->LeftOperatewidget);
  336. materialBoxMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
  337. layout->setContentsMargins(0, 0, 0, 0);
  338. layout->addWidget(materialBoxMap.value(lastGroupId)->view);
  339. ui->LeftOperatewidget->setLayout(layout);
  340. Left_currentMode = ModeView;
  341. Left_currentView = materialBoxMap.value(lastGroupId)->view;
  342. Left_scaleFactor = 1.0;
  343. applyScale(0);
  344. }
  345. }
  346. } else if (Index == 2) {
  347. clearLayout(1);
  348. clearLayout(0);
  349. if (lastIndex == 1) {
  350. }
  351. if (materialWndType == 1) {
  352. if (lastIndex == 1) {
  353. Last_newPixmap = QPixmap(Last_imagePath1);
  354. QPixmap scaledPixmap = Last_newPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  355. Left_currentMode = ModeImage;
  356. Left_currentPixmap = scaledPixmap;
  357. Left_scaleFactor = 1.0;
  358. Left_previousScaleFactor = 1.0;
  359. ui->LeftOperatewidget->setPixmap(scaledPixmap);
  360. double percentage = Left_scaleFactor * 100;
  361. QString percentageStr = QString::number((int)percentage);
  362. ui->Leftlabel_Percentage->setText(QString("%1%").arg(percentageStr));
  363. } else if (lastIndex == 2) {
  364. if (Last_materialWndType == 1) {
  365. ui->LeftOperatewidget->clearPixmap();
  366. QVBoxLayout *layout = new QVBoxLayout(ui->LeftOperatewidget);
  367. waferMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
  368. layout->setContentsMargins(0, 0, 0, 0);
  369. layout->addWidget(waferMap.value(lastGroupId)->view);
  370. ui->LeftOperatewidget->setLayout(layout);
  371. Left_currentMode = ModeView;
  372. Left_currentView = waferMap.value(lastGroupId)->view;
  373. Left_scaleFactor = 1.0;
  374. applyScale(0);
  375. } else if (Last_materialWndType == 2) {
  376. ui->LeftOperatewidget->clearPixmap();
  377. QVBoxLayout* layout = new QVBoxLayout(ui->LeftOperatewidget);
  378. waffleMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
  379. layout->setContentsMargins(0, 0, 0, 0);
  380. layout->addWidget(waffleMap.value(lastGroupId)->view);
  381. ui->LeftOperatewidget->setLayout(layout);
  382. Left_currentMode = ModeView;
  383. Left_currentView = waffleMap.value(lastGroupId)->view;
  384. Left_scaleFactor = 1.0;
  385. applyScale(0);
  386. } else if (Last_materialWndType == 3) {
  387. ui->LeftOperatewidget->clearPixmap();
  388. QVBoxLayout* layout = new QVBoxLayout(ui->LeftOperatewidget);
  389. materialBoxMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
  390. layout->setContentsMargins(0, 0, 0, 0);
  391. layout->addWidget(materialBoxMap.value(lastGroupId)->view);
  392. ui->LeftOperatewidget->setLayout(layout);
  393. Left_currentMode = ModeView;
  394. Left_currentView = materialBoxMap.value(lastGroupId)->view;
  395. Left_scaleFactor = 1.0;
  396. applyScale(0);
  397. }
  398. }
  399. ui->RightOperatewidget->clearPixmap();
  400. QVBoxLayout *layout = new QVBoxLayout(ui->RightOperatewidget);
  401. waferMap.value(Id)->initFrom(ui->RightOperatewidget);
  402. layout->setContentsMargins(0, 0, 0, 0);
  403. layout->addWidget(waferMap.value(Id)->view);
  404. ui->RightOperatewidget->setLayout(layout);
  405. Right_currentMode = ModeView;
  406. Right_currentView = waferMap.value(Id)->view;
  407. Right_scaleFactor = 1.0;
  408. applyScale(1);
  409. } else if (materialWndType == 2) {
  410. if (lastIndex == 1) {
  411. Last_newPixmap = QPixmap(Last_imagePath1);
  412. QPixmap scaledPixmap = Last_newPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  413. Left_currentMode = ModeImage;
  414. Left_currentPixmap = scaledPixmap;
  415. Left_scaleFactor = 1.0;
  416. Left_previousScaleFactor = 1.0;
  417. ui->LeftOperatewidget->setPixmap(scaledPixmap);
  418. double percentage = Left_scaleFactor * 100;
  419. QString percentageStr = QString::number((int)percentage);
  420. ui->Leftlabel_Percentage->setText(QString("%1%").arg(percentageStr));
  421. } else if (lastIndex == 2) {
  422. if (Last_materialWndType == 1) {
  423. ui->LeftOperatewidget->clearPixmap();
  424. QVBoxLayout *layout = new QVBoxLayout(ui->LeftOperatewidget);
  425. waferMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
  426. layout->setContentsMargins(0, 0, 0, 0);
  427. layout->addWidget(waferMap.value(lastGroupId)->view);
  428. ui->LeftOperatewidget->setLayout(layout);
  429. Left_currentMode = ModeView;
  430. Left_currentView = waferMap.value(lastGroupId)->view;
  431. Left_scaleFactor = 1.0;
  432. applyScale(0);
  433. } else if (Last_materialWndType == 2) {
  434. ui->LeftOperatewidget->clearPixmap();
  435. ui->LeftOperatewidget->clearPixmap();
  436. QVBoxLayout* layout = new QVBoxLayout(ui->LeftOperatewidget);
  437. waffleMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
  438. layout->setContentsMargins(0, 0, 0, 0);
  439. layout->addWidget(waffleMap.value(lastGroupId)->view);
  440. ui->LeftOperatewidget->setLayout(layout);
  441. Left_currentMode = ModeView;
  442. Left_currentView = waffleMap.value(lastGroupId)->view;
  443. Left_scaleFactor = 1.0;
  444. applyScale(0);
  445. } else if (Last_materialWndType == 3) {
  446. ui->LeftOperatewidget->clearPixmap();
  447. QVBoxLayout* layout = new QVBoxLayout(ui->LeftOperatewidget);
  448. materialBoxMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
  449. layout->setContentsMargins(0, 0, 0, 0);
  450. layout->addWidget(materialBoxMap.value(lastGroupId)->view);
  451. ui->LeftOperatewidget->setLayout(layout);
  452. Left_currentMode = ModeView;
  453. Left_currentView = materialBoxMap.value(lastGroupId)->view;
  454. Left_scaleFactor = 1.0;
  455. applyScale(0);
  456. }
  457. }
  458. ui->RightOperatewidget->clearPixmap();
  459. QVBoxLayout* layout = new QVBoxLayout(ui->RightOperatewidget);
  460. waffleMap.value(Id)->initFrom(ui->RightOperatewidget);
  461. layout->setContentsMargins(0, 0, 0, 0);
  462. layout->addWidget(waffleMap.value(Id)->view);
  463. ui->RightOperatewidget->setLayout(layout);
  464. Right_currentMode = ModeView;
  465. Right_currentView = waffleMap.value(Id)->view;
  466. Right_scaleFactor = 1.0;
  467. } else if (materialWndType == 3) {
  468. if (lastIndex == 1) {
  469. Last_newPixmap = QPixmap(Last_imagePath1);
  470. QPixmap scaledPixmap = Last_newPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  471. Left_currentMode = ModeImage;
  472. Left_currentPixmap = scaledPixmap;
  473. Left_scaleFactor = 1.0;
  474. Left_previousScaleFactor = 1.0;
  475. ui->LeftOperatewidget->setPixmap(scaledPixmap);
  476. double percentage = Left_scaleFactor * 100;
  477. QString percentageStr = QString::number((int)percentage);
  478. ui->Leftlabel_Percentage->setText(QString("%1%").arg(percentageStr));
  479. } else if (lastIndex == 2) {
  480. if (Last_materialWndType == 1) {
  481. ui->LeftOperatewidget->clearPixmap();
  482. QVBoxLayout *layout = new QVBoxLayout(ui->LeftOperatewidget);
  483. waferMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
  484. layout->setContentsMargins(0, 0, 0, 0);
  485. layout->addWidget(waferMap.value(lastGroupId)->view);
  486. ui->LeftOperatewidget->setLayout(layout);
  487. Left_currentMode = ModeView;
  488. Left_currentView = waferMap.value(lastGroupId)->view;
  489. Left_scaleFactor = 1.0;
  490. applyScale(0);
  491. } else if (Last_materialWndType == 2) {
  492. ui->LeftOperatewidget->clearPixmap();
  493. QVBoxLayout* layout = new QVBoxLayout(ui->LeftOperatewidget);
  494. waffleMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
  495. layout->setContentsMargins(0, 0, 0, 0);
  496. layout->addWidget(waffleMap.value(lastGroupId)->view);
  497. ui->LeftOperatewidget->setLayout(layout);
  498. Left_currentMode = ModeView;
  499. Left_currentView = waffleMap.value(lastGroupId)->view;
  500. Left_scaleFactor = 1.0;
  501. applyScale(0);
  502. } else if (Last_materialWndType == 3) {
  503. ui->LeftOperatewidget->clearPixmap();
  504. QVBoxLayout* layout = new QVBoxLayout(ui->LeftOperatewidget);
  505. materialBoxMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
  506. layout->setContentsMargins(0, 0, 0, 0);
  507. layout->addWidget(materialBoxMap.value(lastGroupId)->view);
  508. ui->LeftOperatewidget->setLayout(layout);
  509. Left_currentMode = ModeView;
  510. Left_currentView = materialBoxMap.value(lastGroupId)->view;
  511. Left_scaleFactor = 1.0;
  512. applyScale(0);
  513. }
  514. }
  515. ui->RightOperatewidget->clearPixmap();
  516. QVBoxLayout* layout = new QVBoxLayout(ui->RightOperatewidget);
  517. materialBoxMap.value(Id)->initFrom(ui->RightOperatewidget);
  518. layout->setContentsMargins(0, 0, 0, 0);
  519. layout->addWidget(materialBoxMap.value(Id)->view);
  520. ui->RightOperatewidget->setLayout(layout);
  521. Left_currentMode = ModeView;
  522. Left_currentView = materialBoxMap.value(Id)->view;
  523. Left_scaleFactor = 1.0;
  524. applyScale(0);
  525. }
  526. }
  527. QSettings settings2("YourOrganization", "YourApplication_lastWndType");
  528. settings2.setValue("LastWndType", lastIndex);
  529. settings2.setValue("LastGroup", lastGroupId);
  530. QPixmap scaledPixmap_right = newPixmap.scaled(size_right, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  531. ui->RightOperatewidget->setPixmap(scaledPixmap_right);
  532. QPixmap scaledPixmap_left = m_lastRightPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  533. ui->LeftOperatewidget->setPixmap(scaledPixmap_left);
  534. // 更新当前图片的成员变量
  535. // Left_currentPixmap = scaledPixmap_left;
  536. // Left_scaleFactor = 1.0;
  537. // Right_currentPixmap = scaledPixmap_right;
  538. // Right_scaleFactor = 1.0;
  539. // ui->Leftlabel_Percentage->setText("100%");
  540. // ui->Rightlabel_Percentage->setText("100%");
  541. // ui->LeftDataSources->clear();
  542. // ui->LeftDataSources->addItems(lasttextList);
  543. // ui->RightDataSources->clear();
  544. // ui->RightDataSources->addItems(textList);
  545. // 保存到 QSettings
  546. // settings.beginGroup("LastSettings");
  547. // settings.setValue("LastRightPixmap", lastRightPixmap);
  548. // settings.setValue("LasttextList", lasttextList);
  549. // settings.setValue("LastLastRightPixmap", lastLastRightPixmap);
  550. // settings.setValue("LastLasttextList", lastLasttextList);
  551. // settings.setValue("LastLastIndex", lastLastIndex);
  552. // settings.setValue("LastLastGroupId", lastLastGroupId);
  553. // settings.endGroup();
  554. if (isUpdatingSettings) {
  555. lastLastRightPixmap = m_lastRightPixmap;
  556. lastLasttextList = lasttextList;
  557. m_lastRightPixmap = scaledPixmap_right;
  558. lasttextList = textList;
  559. lastLastIndex = lastIndex;
  560. lastLastGroupId = lastGroupId;
  561. }
  562. }
  563. void MainAndSecondaryCamerasWnd::UpdataGroupSettings(const QPixmap& imageData)
  564. {
  565. int Id = m_currentSelectGroup.nGroupId;
  566. int Index = m_currentSelectGroup.nSelectLeft1;
  567. // isUpdatingSettings = true;
  568. QSettings settings("YourOrganization", "YourApplication");
  569. settings.beginGroup(QString::number(Id));
  570. QString imagePath1 = settings.value("ImagePath1").toString();
  571. int materialWndType = settings.value("MaterialWndType").toInt();
  572. QStringList textList = settings.value("TextList").toStringList();
  573. settings.endGroup();
  574. QSettings Last_settings("YourOrganization", "YourApplication");
  575. settings.beginGroup(QString::number(lastGroupId));
  576. QString Last_imagePath1 = settings.value("ImagePath1").toString();
  577. int Last_materialWndType = settings.value("MaterialWndType").toInt();
  578. QStringList Last_textList = settings.value("TextList").toStringList();
  579. settings.endGroup();
  580. QString lastRightImage = settings.value("LastRightImage").toString();
  581. QSize size_left = ui->LeftOperatewidget->size();
  582. QSize size_right = ui->RightOperatewidget->size();
  583. QPixmap newPixmap;
  584. QPixmap Last_newPixmap;
  585. if (Index == 1) {
  586. //newPixmap = QPixmap(imagePath1);
  587. clearLayout(1);
  588. newPixmap = QPixmap(imageData);
  589. QPixmap scaledPixmap = newPixmap.scaled(size_right, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  590. Right_currentMode = ModeImage;
  591. Right_currentPixmap = scaledPixmap;
  592. Right_scaleFactor = 1.0;
  593. Right_previousScaleFactor = 1.0;
  594. ui->RightOperatewidget->setPixmap(scaledPixmap);
  595. double percentage = Right_scaleFactor * 100;
  596. QString percentageStr = QString::number((int)percentage);
  597. ui->Rightlabel_Percentage->setText(QString("%1%").arg(percentageStr));
  598. if (lastIndex == 1) {
  599. clearLayout(0);
  600. Last_newPixmap = QPixmap(imageData);
  601. QPixmap scaledPixmap = Last_newPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  602. Left_currentMode = ModeImage;
  603. Left_currentPixmap = scaledPixmap;
  604. Left_scaleFactor = 1.0;
  605. Left_previousScaleFactor = 1.0;
  606. ui->LeftOperatewidget->setPixmap(scaledPixmap);
  607. double percentage = Left_scaleFactor * 100;
  608. QString percentageStr = QString::number((int)percentage);
  609. ui->Leftlabel_Percentage->setText(QString("%1%").arg(percentageStr));
  610. }
  611. else if (lastIndex == 2) {
  612. clearLayout(0);
  613. if (Last_materialWndType == 1) {
  614. ui->LeftOperatewidget->clearPixmap();
  615. QVBoxLayout* layout = new QVBoxLayout(ui->LeftOperatewidget);
  616. waferMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
  617. layout->setContentsMargins(0, 0, 0, 0);
  618. layout->addWidget(waferMap.value(lastGroupId)->view);
  619. ui->LeftOperatewidget->setLayout(layout);
  620. Left_currentMode = ModeView;
  621. Left_currentView = waferMap.value(lastGroupId)->view;
  622. Left_scaleFactor = 1.0;
  623. applyScale(0);
  624. }
  625. else if (Last_materialWndType == 2) {
  626. WaffleWidget(0);
  627. }
  628. else if (Last_materialWndType == 3) {
  629. MaterialBoxWidget(0);
  630. }
  631. }
  632. }
  633. else if (Index == 2) {
  634. clearLayout(1);
  635. clearLayout(0);
  636. if (lastIndex == 1) {
  637. }
  638. if (materialWndType == 1) {
  639. if (lastIndex == 1) {
  640. Last_newPixmap = QPixmap(Last_imagePath1);
  641. QPixmap scaledPixmap = Last_newPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  642. Left_currentMode = ModeImage;
  643. Left_currentPixmap = scaledPixmap;
  644. Left_scaleFactor = 1.0;
  645. Left_previousScaleFactor = 1.0;
  646. ui->LeftOperatewidget->setPixmap(scaledPixmap);
  647. double percentage = Left_scaleFactor * 100;
  648. QString percentageStr = QString::number((int)percentage);
  649. ui->Leftlabel_Percentage->setText(QString("%1%").arg(percentageStr));
  650. }
  651. else if (lastIndex == 2)
  652. {
  653. if (Last_materialWndType == 1) {
  654. ui->LeftOperatewidget->clearPixmap();
  655. QVBoxLayout* layout = new QVBoxLayout(ui->LeftOperatewidget);
  656. waferMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
  657. layout->setContentsMargins(0, 0, 0, 0);
  658. layout->addWidget(waferMap.value(lastGroupId)->view);
  659. ui->LeftOperatewidget->setLayout(layout);
  660. Left_currentMode = ModeView;
  661. Left_currentView = waferMap.value(lastGroupId)->view;
  662. Left_scaleFactor = 1.0;
  663. applyScale(0);
  664. }
  665. else if (Last_materialWndType == 2) {
  666. WaffleWidget(0);
  667. }
  668. else if (Last_materialWndType == 3) {
  669. MaterialBoxWidget(0);
  670. }
  671. }
  672. ui->RightOperatewidget->clearPixmap();
  673. QVBoxLayout* layout = new QVBoxLayout(ui->RightOperatewidget);
  674. waferMap.value(Id)->initFrom(ui->RightOperatewidget);
  675. layout->setContentsMargins(0, 0, 0, 0);
  676. layout->addWidget(waferMap.value(Id)->view);
  677. ui->RightOperatewidget->setLayout(layout);
  678. Right_currentMode = ModeView;
  679. Right_currentView = waferMap.value(Id)->view;
  680. Right_scaleFactor = 1.0;
  681. applyScale(1);
  682. }
  683. else if (materialWndType == 2) {
  684. if (lastIndex == 1) {
  685. Last_newPixmap = QPixmap(Last_imagePath1);
  686. QPixmap scaledPixmap = Last_newPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  687. Left_currentMode = ModeImage;
  688. Left_currentPixmap = scaledPixmap;
  689. Left_scaleFactor = 1.0;
  690. Left_previousScaleFactor = 1.0;
  691. ui->LeftOperatewidget->setPixmap(scaledPixmap);
  692. double percentage = Left_scaleFactor * 100;
  693. QString percentageStr = QString::number((int)percentage);
  694. ui->Leftlabel_Percentage->setText(QString("%1%").arg(percentageStr));
  695. }
  696. else if (lastIndex == 2) {
  697. if (Last_materialWndType == 1) {
  698. ui->LeftOperatewidget->clearPixmap();
  699. QVBoxLayout* layout = new QVBoxLayout(ui->LeftOperatewidget);
  700. waferMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
  701. layout->setContentsMargins(0, 0, 0, 0);
  702. layout->addWidget(waferMap.value(lastGroupId)->view);
  703. ui->LeftOperatewidget->setLayout(layout);
  704. Left_currentMode = ModeView;
  705. Left_currentView = waferMap.value(lastGroupId)->view;
  706. Left_scaleFactor = 1.0;
  707. applyScale(0);
  708. }
  709. else if (Last_materialWndType == 2) {
  710. WaffleWidget(0);
  711. }
  712. else if (Last_materialWndType == 3) {
  713. MaterialBoxWidget(0);
  714. }
  715. }
  716. WaffleWidget(1);
  717. }
  718. else if (materialWndType == 3) {
  719. if (lastIndex == 1) {
  720. Last_newPixmap = QPixmap(Last_imagePath1);
  721. QPixmap scaledPixmap = Last_newPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  722. Left_currentMode = ModeImage;
  723. Left_currentPixmap = scaledPixmap;
  724. Left_scaleFactor = 1.0;
  725. Left_previousScaleFactor = 1.0;
  726. ui->LeftOperatewidget->setPixmap(scaledPixmap);
  727. double percentage = Left_scaleFactor * 100;
  728. QString percentageStr = QString::number((int)percentage);
  729. ui->Leftlabel_Percentage->setText(QString("%1%").arg(percentageStr));
  730. }
  731. else if (lastIndex == 2) {
  732. if (Last_materialWndType == 1) {
  733. ui->LeftOperatewidget->clearPixmap();
  734. QVBoxLayout* layout = new QVBoxLayout(ui->LeftOperatewidget);
  735. waferMap.value(lastGroupId)->initFrom(ui->LeftOperatewidget);
  736. layout->setContentsMargins(0, 0, 0, 0);
  737. layout->addWidget(waferMap.value(lastGroupId)->view);
  738. ui->LeftOperatewidget->setLayout(layout);
  739. Left_currentMode = ModeView;
  740. Left_currentView = waferMap.value(lastGroupId)->view;
  741. Left_scaleFactor = 1.0;
  742. applyScale(0);
  743. }
  744. else if (Last_materialWndType == 2) {
  745. WaffleWidget(0);
  746. }
  747. else if (Last_materialWndType == 3) {
  748. MaterialBoxWidget(0);
  749. }
  750. }
  751. MaterialBoxWidget(1);
  752. }
  753. }
  754. QSettings settings2("YourOrganization", "YourApplication_lastWndType");
  755. settings2.setValue("LastWndType", lastIndex);
  756. settings2.setValue("LastGroup", lastGroupId);
  757. // 新的是加载进来的
  758. QPixmap scaledPixmap_right = newPixmap.scaled(size_right, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  759. ui->RightOperatewidget->setPixmap(scaledPixmap_right);
  760. // 旧的图像直接放到界面上?
  761. QPixmap scaledPixmap_left = m_lastRightPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  762. ui->LeftOperatewidget->setPixmap(scaledPixmap_left);
  763. // 更新当前图片的成员变量
  764. // Left_currentPixmap = scaledPixmap_left;
  765. // Left_scaleFactor = 1.0;
  766. // Right_currentPixmap = scaledPixmap_right;
  767. // Right_scaleFactor = 1.0;
  768. // ui->Leftlabel_Percentage->setText("100%");
  769. // ui->Rightlabel_Percentage->setText("100%");
  770. // ui->LeftDataSources->clear();
  771. // ui->LeftDataSources->addItems(lasttextList);
  772. // ui->RightDataSources->clear();
  773. // ui->RightDataSources->addItems(textList);
  774. // 保存到 QSettings
  775. // settings.beginGroup("LastSettings");
  776. // settings.setValue("LastRightPixmap", lastRightPixmap);
  777. // settings.setValue("LasttextList", lasttextList);
  778. // settings.setValue("LastLastRightPixmap", lastLastRightPixmap);
  779. // settings.setValue("LastLasttextList", lastLasttextList);
  780. // settings.setValue("LastLastIndex", lastLastIndex);
  781. // settings.setValue("LastLastGroupId", lastLastGroupId);
  782. // settings.endGroup();
  783. if (isUpdatingSettings) {
  784. lastLastRightPixmap = m_lastRightPixmap;
  785. lastLasttextList = lasttextList;
  786. m_lastRightPixmap = scaledPixmap_right;
  787. lasttextList = textList;
  788. lastLastIndex = lastIndex;
  789. lastLastGroupId = lastGroupId;
  790. }
  791. }
  792. void MainAndSecondaryCamerasWnd::clearLayout(int flag) {
  793. QWidget* widget = (flag == 1) ? ui->RightOperatewidget : ui->LeftOperatewidget;
  794. QLayout* layout = widget->layout();
  795. if (layout) {
  796. QLayoutItem *child;
  797. while ((child = layout->takeAt(0)) != nullptr) {
  798. if (child->widget() != nullptr) {
  799. delete child->widget(); // 删除控件
  800. }
  801. delete child; // 删除布局项
  802. }
  803. delete layout; // 删除布局本身
  804. }
  805. }
  806. // 圆晶
  807. void MainAndSecondaryCamerasWnd::WaferWidget(int flag) {
  808. // QWidget *operatewidget = ui->LeftOperatewidget;
  809. // if (flag == 1) {
  810. // operatewidget = ui->RightOperatewidget;
  811. // }
  812. // QGridLayout *layout = new QGridLayout(operatewidget);
  813. // wafer = new Wafer(1, operatewidget);
  814. // wafer->initFrom(operatewidget);
  815. // layout->setContentsMargins(0, 0, 0, 0);
  816. // layout->addWidget(wafer->globalWidget);
  817. // operatewidget->setLayout(layout);
  818. // operatewidget->setFixedSize(476, 476);
  819. }
  820. // 华夫盒
  821. void MainAndSecondaryCamerasWnd::WaffleWidget(int flag) {
  822. QWidget *operatewidget = ui->LeftOperatewidget;
  823. if (flag == 1) {
  824. operatewidget = ui->RightOperatewidget;
  825. }
  826. QVBoxLayout *layout = new QVBoxLayout(operatewidget);
  827. waffle = new Waffle(1, operatewidget);
  828. layout->setContentsMargins(0, 0, 0, 0);
  829. layout->addWidget(waffle);
  830. operatewidget->setLayout(layout);
  831. operatewidget->setFixedSize(476, 476);
  832. }
  833. // 料盒
  834. void MainAndSecondaryCamerasWnd::MaterialBoxWidget(int flag) {
  835. QWidget *operatewidget = ui->LeftOperatewidget;
  836. if (flag == 1) {
  837. operatewidget = ui->RightOperatewidget;
  838. }
  839. QVBoxLayout *layout = new QVBoxLayout(operatewidget);
  840. materialbox = new MaterialBox(1, operatewidget);
  841. layout->setContentsMargins(0, 0, 0, 0);
  842. layout->addWidget(materialbox);
  843. operatewidget->setLayout(layout);
  844. operatewidget->setFixedSize(476, 476);
  845. }
  846. void MainAndSecondaryCamerasWnd::InitMainCameraBind(CameraBind* pCameraBind)
  847. {
  848. m_pMainCameraBind = pCameraBind;
  849. initFrom();
  850. m_nTimeShowPos = startTimer(600);
  851. ResetIdleTimer(true);
  852. }
  853. void MainAndSecondaryCamerasWnd::UpdateCameraDisplay0(int iCameraId, JVision::ImageInfo imageData)
  854. {
  855. // TODO: 这里需要改动
  856. QImage image(imageData.data, imageData.width, imageData.height, QImage::Format_Indexed8);
  857. ui->LeftOperatewidget->setGeometry(ui->LeftOperatewidget->pos().x(),
  858. ui->LeftOperatewidget->pos().y(),
  859. ui->LeftOperatewidget->width(),
  860. ui->LeftOperatewidget->height());
  861. //ui->LeftOperatewidget->setPixmap(QPixmap::fromImage(image));
  862. emit UpDataImageShowSignals0(QPixmap::fromImage(image));
  863. }
  864. void MainAndSecondaryCamerasWnd::UpdateCameraDisplay1(int iCameraId, JVision::ImageInfo imageData)
  865. {
  866. QImage image(imageData.data, imageData.width, imageData.height, QImage::Format_Indexed8);
  867. ui->RightOperatewidget->setGeometry(ui->RightOperatewidget->pos().x(),
  868. ui->RightOperatewidget->pos().y(),
  869. ui->RightOperatewidget->width(),
  870. ui->RightOperatewidget->height());
  871. //ui->RightOperatewidget->setPixmap(QPixmap::fromImage(image));
  872. emit UpDataImageShowSignals1(QPixmap::fromImage(image));
  873. }
  874. void MainAndSecondaryCamerasWnd::UpdateCameraDisplay2(int iCameraId, JVision::ImageInfo imageData)
  875. {
  876. }
  877. void MainAndSecondaryCamerasWnd::UpdateCameraDisplay3(int iCameraId, JVision::ImageInfo imageData)
  878. {
  879. }
  880. void MainAndSecondaryCamerasWnd::UpdateCameraDisplay4(int iCameraId, JVision::ImageInfo imageData)
  881. {
  882. QImage image(imageData.data, imageData.width, imageData.height, QImage::Format_Indexed8);
  883. ui->RightOperatewidget->setGeometry(ui->RightOperatewidget->pos().x(),
  884. ui->RightOperatewidget->pos().y(),
  885. ui->RightOperatewidget->width(),
  886. ui->RightOperatewidget->height());
  887. //ui->RightOperatewidget->setPixmap(QPixmap::fromImage(image));
  888. emit UpDataImageShowSignals4(QPixmap::fromImage(image));
  889. }
  890. // 更新缩放比例
  891. void MainAndSecondaryCamerasWnd::updateScale(double newScaleFactor, int flag) {
  892. if (flag == 0) {
  893. if (newScaleFactor >= 1.0) {
  894. Left_scaleFactor = newScaleFactor;
  895. } else {
  896. Left_scaleFactor = 1.0; // 最小缩放比例为 1.0
  897. }
  898. } else if (flag == 1) {
  899. if (newScaleFactor >= 1.0) {
  900. Right_scaleFactor = newScaleFactor;
  901. } else {
  902. Right_scaleFactor = 1.0; // 最小缩放比例为 1.0
  903. }
  904. }
  905. applyScale(flag); // 应用缩放
  906. }
  907. // 应用缩放
  908. void MainAndSecondaryCamerasWnd::applyScale(int flag) {
  909. if (flag == 0) {
  910. if (Left_currentMode == ModeImage) {
  911. // 图片模式:缩放图片
  912. int newWidth = Left_currentPixmap.width() * Left_scaleFactor;
  913. int newHeight = Left_currentPixmap.height() * Left_scaleFactor;
  914. QPixmap scaledImage = Left_currentPixmap.scaled(newWidth, newHeight, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  915. ui->LeftOperatewidget->setPixmapAndPoint(scaledImage, Left_previousScaleFactor, Left_scaleFactor, mousePos);
  916. Left_previousScaleFactor = Left_scaleFactor;
  917. } else if (Left_currentMode == ModeView && Left_currentView) {
  918. // View 模式:缩放 view
  919. QTransform transform;
  920. transform.scale(Left_scaleFactor, Left_scaleFactor);
  921. Left_currentView->setTransform(transform);
  922. }
  923. // 更新百分比显示
  924. double percentage = Left_scaleFactor * 100;
  925. QString percentageStr = QString::number((int)percentage);
  926. ui->Leftlabel_Percentage->setText(QString("%1%").arg(percentageStr));
  927. } else if (flag == 1) {
  928. if (Right_currentMode == ModeImage) {
  929. // 图片模式:缩放图片
  930. int newWidth = Right_currentPixmap.width() * Right_scaleFactor;
  931. int newHeight = Right_currentPixmap.height() * Right_scaleFactor;
  932. QPixmap scaledImage = Right_currentPixmap.scaled(newWidth, newHeight, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  933. ui->RightOperatewidget->setPixmapAndPoint(scaledImage, Right_previousScaleFactor, Right_scaleFactor, mousePos);
  934. Right_previousScaleFactor = Right_scaleFactor;
  935. } else if (Right_currentMode == ModeView && Right_currentView) {
  936. // View 模式:缩放 view
  937. QTransform transform;
  938. transform.scale(Right_scaleFactor, Right_scaleFactor);
  939. Right_currentView->setTransform(transform);
  940. }
  941. // 更新百分比显示
  942. double percentage = Right_scaleFactor * 100;
  943. QString percentageStr = QString::number((int)percentage);
  944. ui->Rightlabel_Percentage->setText(QString("%1%").arg(percentageStr));
  945. }
  946. }
  947. void MainAndSecondaryCamerasWnd::HideLayout(QHBoxLayout* layout, bool isHide)
  948. {
  949. for (int i = 0; i < layout->count(); ++i)
  950. {
  951. QWidget* widget = layout->itemAt(i)->widget();
  952. if (widget)
  953. {
  954. if (isHide)
  955. {
  956. widget->hide();
  957. }
  958. else
  959. {
  960. widget->show();
  961. }
  962. }
  963. }
  964. }
  965. void MainAndSecondaryCamerasWnd::UpdataLightJoystickSwitchPage(Group* pGroup)
  966. {
  967. auto Fun = [&](LightJoystickSwitchPage* p, bool bShow)
  968. {
  969. p->UpdatemPageGroup(pGroup);
  970. p->InitMainCameraBind(m_pMainCameraBind);
  971. p->HideOrShowPage(bShow);
  972. };
  973. for (int i = 0; i < m_veCurrentSelectGroup.size(); i++)
  974. {
  975. if (i == 0)
  976. {
  977. bool bShow = false;
  978. if (m_veCurrentSelectGroup[0].nSelectLeft1 == 1)
  979. {
  980. bShow = true;
  981. }
  982. Fun(ui->control_L, bShow);
  983. }
  984. else if (i == 1)
  985. {
  986. bool bShow = false;
  987. if (m_veCurrentSelectGroup[1].nSelectLeft1 == 1)
  988. {
  989. bShow = true;
  990. }
  991. Fun(ui->control_L, bShow);
  992. }
  993. }
  994. }
  995. void MainAndSecondaryCamerasWnd::timerEvent(QTimerEvent* event)
  996. {
  997. int nID = event->timerId();
  998. }
  999. void MainAndSecondaryCamerasWnd::on_LeftZoomUpButton_clicked()
  1000. {
  1001. mousePos = ui->LeftOperatewidget->geometry().center();
  1002. updateScale(Left_scaleFactor * 1.1, 0);
  1003. }
  1004. void MainAndSecondaryCamerasWnd::on_RightZoomUpButton_clicked()
  1005. {
  1006. mousePos = ui->RightOperatewidget->geometry().center();
  1007. updateScale(Right_scaleFactor * 1.1, 1);
  1008. }
  1009. void MainAndSecondaryCamerasWnd::on_LeftZoomOutButton_clicked()
  1010. {
  1011. mousePos = ui->LeftOperatewidget->geometry().center();
  1012. updateScale(Left_scaleFactor * 0.9, 0);
  1013. }
  1014. void MainAndSecondaryCamerasWnd::on_RightZoomOutButton_clicked()
  1015. {
  1016. mousePos = ui->RightOperatewidget->geometry().center();
  1017. updateScale(Right_scaleFactor * 0.9, 1);
  1018. }
  1019. void MainAndSecondaryCamerasWnd::ResetIdleTimer(bool bStart /*= false*/)
  1020. {
  1021. if (bStart)
  1022. {
  1023. if (isActiveWindow())
  1024. {
  1025. m_idleTimer = startTimer(3000);
  1026. }
  1027. }
  1028. else
  1029. {
  1030. killTimer(m_idleTimer);
  1031. m_idleTimer = -1;
  1032. }
  1033. }
  1034. void MainAndSecondaryCamerasWnd::GetCurrentSelectSlots(int groupId, int nIndex)
  1035. {
  1036. if (m_pMainCameraBind == nullptr)
  1037. {
  1038. return;
  1039. }
  1040. // 绑定操作,用来初始化
  1041. ST_CURRENT_SELECT_GROUP _curr;
  1042. _curr.isBond = true;
  1043. m_currentSelectGroup.nGroupId = groupId;
  1044. //2. 开始干活
  1045. int nOnClickGroupId = groupId - 1; // 这里new 有些是0,有些是1 暂时选择
  1046. if (m_pMainCameraBind->m_vecCamera.size() > nOnClickGroupId)
  1047. {
  1048. _curr.nCurrentCameraId = m_pMainCameraBind->m_vecCamera[nOnClickGroupId].iCameraId;
  1049. }
  1050. else
  1051. {
  1052. _curr.nCurrentCameraId = 0;
  1053. }
  1054. _curr.nSelectLeft1 = nIndex; // 是否选中窗口
  1055. Group* pGroup = m_currentSelectGroup.liGroup[nOnClickGroupId];
  1056. _curr.pSelectGroup = pGroup;
  1057. // 1.判断当前是否存储
  1058. if (m_veCurrentSelectGroup.size() >= 2)
  1059. {
  1060. if (pGroup == m_veCurrentSelectGroup[1].pSelectGroup &&
  1061. m_veCurrentSelectGroup[1].nSelectLeft1== nIndex)
  1062. {
  1063. return;
  1064. }
  1065. // 解绑操作,删除第0个 ,, 主要目前为了实现 相机切换
  1066. disconnect(m_veCurrentSelectGroup[0].pSelectGroup, &Group::SetUpDataImageShowSig,
  1067. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0);
  1068. disconnect(m_veCurrentSelectGroup[0].pSelectGroup, &Group::SetUpDataImageShowSig,
  1069. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4);
  1070. disconnect(m_veCurrentSelectGroup[1].pSelectGroup, &Group::SetUpDataImageShowSig,
  1071. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0);
  1072. disconnect(m_veCurrentSelectGroup[1].pSelectGroup, &Group::SetUpDataImageShowSig,
  1073. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4);
  1074. m_veCurrentSelectGroup.erase(m_veCurrentSelectGroup.begin() + 0);// 0个
  1075. if (m_veCurrentSelectGroup[0].nSelectLeft1 == 1)
  1076. {
  1077. connect(m_veCurrentSelectGroup[0].pSelectGroup, &Group::SetUpDataImageShowSig,
  1078. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0);
  1079. // 在绑定
  1080. connect(pGroup, &Group::SetUpDataImageShowSig,
  1081. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4);
  1082. }
  1083. else
  1084. {
  1085. // 直接复制图片?
  1086. if (_curr.nSelectLeft1 == 1)
  1087. {
  1088. connect(m_veCurrentSelectGroup[0].pSelectGroup, &Group::SetUpDataImageShowSig,
  1089. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4);
  1090. }
  1091. else
  1092. {
  1093. loadGroupSettings(groupId, nIndex);
  1094. }
  1095. }
  1096. m_veCurrentSelectGroup.push_back(_curr);
  1097. }
  1098. else
  1099. {
  1100. if (m_veCurrentSelectGroup[0].pSelectGroup != _curr.pSelectGroup)
  1101. {
  1102. if (m_veCurrentSelectGroup.size() == 1)
  1103. {
  1104. connect(pGroup, &Group::SetUpDataImageShowSig,
  1105. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4);
  1106. }
  1107. else
  1108. {
  1109. connect(pGroup, &Group::SetUpDataImageShowSig,
  1110. this, &MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0);
  1111. }
  1112. m_veCurrentSelectGroup.push_back(_curr);
  1113. }
  1114. }
  1115. UpdataLightJoystickSwitchPage(pGroup);
  1116. }
  1117. void MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals0(const QPixmap& imageData)
  1118. {
  1119. //lastIndex = 1;
  1120. QSize size_left = ui->LeftOperatewidget->size();
  1121. QPixmap scaledPixmap_left = m_lastRightPixmap.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  1122. ui->LeftOperatewidget->setPixmap(scaledPixmap_left);
  1123. m_lastRightPixmap = imageData;
  1124. //UpdataGroupSettings(imageData);
  1125. }
  1126. void MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals1(const QPixmap& imageData)
  1127. {
  1128. // lastIndex = 2;
  1129. UpdataGroupSettings(imageData);
  1130. }
  1131. void MainAndSecondaryCamerasWnd::GetUpDataImageShowSignals4(const QPixmap& imageData)
  1132. {
  1133. QSize size_left = ui->RightOperatewidget->size();
  1134. QPixmap scaledPixmap_left = imageData.scaled(size_left, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  1135. ui->RightOperatewidget->setPixmap(scaledPixmap_left);
  1136. //m_lastRightPixmap = imageData;
  1137. }
  1138. void MainAndSecondaryCamerasWnd::wheelEvent(QWheelEvent *event)
  1139. {
  1140. if (ui->LeftOperatewidget->rect().contains(ui->LeftOperatewidget->mapFromGlobal(event->globalPos()))) {
  1141. mousePos = ui->LeftOperatewidget->mapFromGlobal(event->globalPos());
  1142. if (event->angleDelta().y() > 0) {
  1143. updateScale(Left_scaleFactor * 1.1, 0); // 放大
  1144. } else {
  1145. updateScale(Left_scaleFactor * 0.9, 0); // 缩小
  1146. }
  1147. }
  1148. if (ui->RightOperatewidget->rect().contains(ui->RightOperatewidget->mapFromGlobal(event->globalPos()))) {
  1149. mousePos = ui->RightOperatewidget->mapFromGlobal(event->globalPos());
  1150. if (event->angleDelta().y() > 0) {
  1151. updateScale(Right_scaleFactor * 1.1, 1); // 放大
  1152. } else {
  1153. updateScale(Right_scaleFactor * 0.9, 1); // 缩小
  1154. }
  1155. }
  1156. if (ui->scrollArea->rect().contains(ui->scrollArea->mapFromGlobal(event->globalPos()))) {
  1157. // 获取 QScrollArea 的横向滚动条
  1158. QScrollBar *scrollBar = ui->scrollArea->horizontalScrollBar();
  1159. // 根据滚轮滚动方向改变滚动条的值
  1160. if (event->angleDelta().y() > 0) {
  1161. scrollBar->setValue(scrollBar->value() - 50);
  1162. } else {
  1163. scrollBar->setValue(scrollBar->value() + 50);
  1164. }
  1165. }
  1166. QMainWindow::wheelEvent(event);
  1167. }
  1168. bool MainAndSecondaryCamerasWnd::eventFilter(QObject* obj, QEvent* event)
  1169. {
  1170. // 检测用户活动事件
  1171. switch (event->type())
  1172. {
  1173. case QEvent::KeyPress:
  1174. case QEvent::MouseMove:
  1175. case QEvent::MouseButtonPress:
  1176. case QEvent::MouseButtonDblClick:
  1177. case QEvent::Wheel:
  1178. ResetIdleTimer();
  1179. ResetIdleTimer(true);
  1180. break;
  1181. default:
  1182. break;
  1183. }
  1184. return QMainWindow::eventFilter(obj, event);
  1185. }
  1186. void MainAndSecondaryCamerasWnd::showEvent(QShowEvent *event) {
  1187. isUpdatingSettings = false;
  1188. QMainWindow::showEvent(event);
  1189. //loadSettings();
  1190. isUpdatingSettings = false;
  1191. }
  1192. void MainAndSecondaryCamerasWnd::hideEvent(QHideEvent *event) {
  1193. isUpdatingSettings = false;
  1194. QMainWindow::hideEvent(event);
  1195. }
  1196. void MainAndSecondaryCamerasWnd::CheckIs()
  1197. {
  1198. /*QSettings settings("YourCompany", "YourApplication_Button");
  1199. int groupId = settings.value("GroupId_button", 0).toInt();
  1200. if (groupId == lastGroupId) {
  1201. if (lastIndex == 1 ) {
  1202. if(isShow == true){
  1203. isShow = false;
  1204. } else {
  1205. isShow = true;
  1206. }
  1207. }
  1208. if (lastLastIndex == 1 && groupId == lastLastGroupId) {
  1209. if(isShow_L == true){
  1210. isShow_L = false;
  1211. } else {
  1212. isShow_L = true;
  1213. }
  1214. }
  1215. showAndHide();
  1216. showAndHide_L();
  1217. } else if (groupId == lastLastGroupId) {
  1218. if (lastLastIndex == 1) {
  1219. if(isShow_L == true){
  1220. isShow_L = false;
  1221. } else {
  1222. isShow_L = true;
  1223. }
  1224. }
  1225. showAndHide_L();
  1226. }*/
  1227. }