ControlOperationPage.cpp 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. #include "ControlOperationPage.h"
  2. #include "ui_ControlOperationPage.h"
  3. ControlOperationPage::ControlOperationPage(QWidget* parent)
  4. : QWidget(parent)
  5. , ui(new Ui::ControlOperationPage)
  6. {
  7. ui->setupUi(this);
  8. HideLayout(false);
  9. }
  10. ControlOperationPage::~ControlOperationPage()
  11. {
  12. delete ui;
  13. }
  14. void ControlOperationPage::updateOperateWidget(const QPixmap& pixmap, const QStringList& textList) {
  15. QSize size = ui->Operatewidget->size();
  16. QPixmap scaledPixmap = pixmap.scaled(size, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  17. clearLayout();
  18. ui->Operatewidget->setPixmap(scaledPixmap);
  19. m_currentPixmap = scaledPixmap;
  20. m_scaleFactor = 1.0;
  21. m_previousScaleFactor = 1.0;
  22. ui->label_Percentage->setText("100%");
  23. ui->DataSources->clear();
  24. ui->DataSources->addItems(textList);
  25. m_currentMode = ModeImage;
  26. }
  27. // 清除大窗口上当前的布局
  28. void ControlOperationPage::clearLayout() {
  29. // 获取当前布局
  30. QLayout* layout = ui->Operatewidget->layout();
  31. if (layout) {
  32. QLayoutItem* child;
  33. while ((child = layout->takeAt(0)) != nullptr) {
  34. if (child->widget() != nullptr) {
  35. delete child->widget(); // 删除控件
  36. }
  37. delete child; // 删除布局项
  38. }
  39. delete layout; // 删除布局本身
  40. }
  41. }
  42. void ControlOperationPage::on_ZoomUpButton_clicked() {
  43. m_mousePos = ui->Operatewidget->geometry().center();
  44. updateScale(m_scaleFactor * 1.1);
  45. }
  46. void ControlOperationPage::on_ZoomOutButton_clicked() {
  47. m_mousePos = ui->Operatewidget->geometry().center();
  48. updateScale(m_scaleFactor * 0.9);
  49. }
  50. // 更新缩放比例
  51. void ControlOperationPage::updateScale(double newScaleFactor) {
  52. if (newScaleFactor >= 1.0) {
  53. m_scaleFactor = newScaleFactor;
  54. }
  55. else {
  56. m_scaleFactor = 1.0; // 最小缩放比例为 1.0
  57. }
  58. applyScale(); // 应用缩放
  59. }
  60. // 应用缩放
  61. void ControlOperationPage::applyScale() {
  62. if (m_currentMode == ModeImage) {
  63. // 图片模式:缩放图片
  64. int newWidth = m_currentPixmap.width() * m_scaleFactor;
  65. int newHeight = m_currentPixmap.height() * m_scaleFactor;
  66. QPixmap scaledImage = m_currentPixmap.scaled(newWidth, newHeight, Qt::KeepAspectRatio, Qt::SmoothTransformation);
  67. ui->Operatewidget->setPixmapAndPoint(scaledImage, m_previousScaleFactor, m_scaleFactor, m_mousePos);
  68. m_previousScaleFactor = m_scaleFactor;
  69. }
  70. else if (m_currentMode == ModeView && m_currentView) {
  71. // View 模式:缩放 view
  72. QTransform transform;
  73. transform.scale(m_scaleFactor, m_scaleFactor);
  74. m_currentView->setTransform(transform);
  75. }
  76. // 更新百分比显示
  77. double percentage = m_scaleFactor * 100;
  78. QString percentageStr = QString::number((int)percentage);
  79. ui->label_Percentage->setText(QString("%1%").arg(percentageStr));
  80. }
  81. void ControlOperationPage::handleDoubleClick() {
  82. if (m_currentMode == ModeImage) {
  83. QPixmap scaledImage = m_currentPixmap.scaled(m_currentPixmap.width(), m_currentPixmap.height(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
  84. ui->Operatewidget->setPixmap(scaledImage); // 这里传递缩放后的图片
  85. }
  86. else if (m_currentMode == ModeView && m_currentView) {
  87. QTransform transform;
  88. transform.scale(1, 1);
  89. m_currentView->setTransform(transform);
  90. }
  91. m_scaleFactor = 1.0;
  92. m_previousScaleFactor = 1.0;
  93. ui->label_Percentage->setText("100%");
  94. }
  95. void ControlOperationPage::updateMaterialWidget(kinds materialWndType)
  96. {
  97. clearLayout();
  98. switch (materialWndType)
  99. {
  100. case wafer_kind: KindsofWidget(wafer_kind); break;
  101. case waffle_kind: KindsofWidget(waffle_kind); break;
  102. case materialbox_kind: KindsofWidget(materialbox_kind); break;
  103. case bond_kind:KindsofWidget(bond_kind); break;
  104. }
  105. }
  106. void ControlOperationPage::KindsofWidget(kinds kind)
  107. {
  108. ui->Operatewidget->clearPixmap();
  109. QVBoxLayout* layout = new QVBoxLayout(ui->Operatewidget);
  110. layout->setContentsMargins(0, 0, 0, 0);
  111. m_currentMode = ModeView;
  112. if (kind == wafer_kind)
  113. {
  114. m_wafer->initFrom(ui->Operatewidget);
  115. layout->addWidget(m_wafer->view);
  116. m_currentView = m_wafer->view;
  117. }
  118. else if (kind == waffle_kind)
  119. {
  120. m_waffle->initFrom(ui->Operatewidget);
  121. layout->addWidget(m_waffle->view);
  122. m_currentView = m_waffle->view;
  123. }
  124. else if (kind == materialbox_kind)
  125. {
  126. m_materialbox->initFrom(ui->Operatewidget);
  127. layout->addWidget(m_materialbox->view);
  128. m_currentView = m_materialbox->view;
  129. }
  130. ui->Operatewidget->setLayout(layout);
  131. m_currentMode = ModeView;
  132. m_scaleFactor = 1.0;
  133. applyScale();
  134. }
  135. void ControlOperationPage::setWafer(Wafer* wafer) {
  136. m_wafer = wafer;
  137. updateMaterialWidget(wafer_kind);
  138. }
  139. void ControlOperationPage::setWaffle(Waffle* waffle) {
  140. m_waffle = waffle;
  141. updateMaterialWidget(waffle_kind);
  142. }
  143. void ControlOperationPage::setMaterialBox(MaterialBox* materialbox) {
  144. m_materialbox = materialbox;
  145. updateMaterialWidget(materialbox_kind);
  146. }
  147. //void ControlOperationPage::setBond(Bond *bond){
  148. // m_bond = bond;
  149. //}
  150. void ControlOperationPage::initForm()
  151. {
  152. {
  153. // 后面在做
  154. //if (m_pMainCameraBind != nullptr)
  155. //{
  156. // DeduplicationBox(ui->axisComboBox, m_pMainCameraBind->m_vecCAxis, 0);
  157. // DeduplicationBox(ui->axisTypeComboBox, m_pMainCameraBind->m_vecCAxis, 1);
  158. //}
  159. }
  160. connect(ui->Operatewidget, &ImageWidget::sendDoubleClicksignal, this, &ControlOperationPage::handleDoubleClick);
  161. ui->Operatewidget->setMouseTracking(true);
  162. }
  163. ImageWidget* ControlOperationPage::getOperatewidget()
  164. {
  165. return ui->Operatewidget;
  166. }
  167. void ControlOperationPage::resizeSingleUI() {
  168. ui->DataSources->setGeometry(QRect(20, 20, 400, 32));
  169. ui->Operatewidget->setGeometry(QRect(20, 72, 786, 786));
  170. //ui->line_2->setGeometry(QRect(826, 20, 1, 953));
  171. ui->LiveButton->setGeometry(QRect(436, 20, 60, 32));
  172. ui->Toolbar->setGeometry(QRect(22, 882, 786, 32));
  173. ui->line->setGeometry(QRect(140, 8, 1, 16));
  174. ui->ZoomUpButton->setGeometry(QRect(0, 0, 138, 32));
  175. ui->line_3->setGeometry(QRect(256, 8, 1, 16));
  176. ui->line_4->setGeometry(QRect(395, 8, 1, 16));
  177. ui->line_5->setGeometry(QRect(523, 8, 1, 16));
  178. ui->line_6->setGeometry(QRect(635, 8, 1, 16));
  179. ui->pushButton_2->setGeometry(QRect(637, 0, 149, 32));
  180. ui->ZoomOutButton->setGeometry(QRect(142, 0, 112, 32));
  181. ui->RulerButton->setGeometry(QRect(397, 0, 124, 32));
  182. ui->PenButton->setGeometry(QRect(525, 0, 108, 32));
  183. ui->label_Percentage->setGeometry(QRect(258, 0, 135, 32));
  184. ui->BackGround->setGeometry(QRect(16, 68, 794, 794));
  185. }
  186. void ControlOperationPage::resizeChartsAndCamerasUI() {
  187. }
  188. }
  189. void ControlOperationPage::on_switchJoystickBut_clicked()
  190. {
  191. ResetIdleTimer(true);
  192. }
  193. void ControlOperationPage::timerEvent(QTimerEvent* event)
  194. {
  195. int nID = event->timerId();
  196. if (nID == m_idleTimer)
  197. {
  198. ResetIdleTimer(false);
  199. }
  200. }
  201. void ControlOperationPage::HideLayout(bool bShow)
  202. {
  203. for (int i = 0; i < ui->horizontalLayout->count(); ++i)
  204. {
  205. QWidget* widget = ui->horizontalLayout->itemAt(i)->widget();
  206. if (widget)
  207. {
  208. if (bShow)
  209. {
  210. widget->show();
  211. }
  212. else
  213. {
  214. widget->hide();
  215. }
  216. }
  217. }
  218. }
  219. void ControlOperationPage::ResetIdleTimer(bool bStart /*= false*/)
  220. {
  221. if (bStart)
  222. {
  223. if (isActiveWindow())
  224. {
  225. m_idleTimer = startTimer(3000);
  226. }
  227. }
  228. else
  229. {
  230. killTimer(m_idleTimer);
  231. m_idleTimer = -1;
  232. }
  233. HideLayout(bStart);
  234. }
  235. template<class T>
  236. void ControlOperationPage::DeduplicationBox(QComboBox* pCom, const T& veTemp, int nIndex)
  237. {
  238. QStringList items;
  239. for (int i = 0; i < pCom->count(); ++i)
  240. {
  241. items << pCom->itemText(i);
  242. }
  243. for (auto& a : veTemp)
  244. {
  245. QString strName;
  246. if (nIndex == 0)
  247. {
  248. strName = a->GetModuleType().c_str();
  249. }
  250. else if (nIndex == 1)
  251. {
  252. strName = a->GetStringAxisType().c_str();
  253. }
  254. bool bMa = false; // 是否匹配
  255. for (auto b : items)
  256. {
  257. if (b == strName)
  258. {
  259. bMa = true;
  260. break;
  261. }
  262. }
  263. if (!bMa)
  264. {
  265. pCom->addItem(strName);
  266. }
  267. }
  268. }