ControlOperationPage.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. #ifndef VIEWWIDGETGROUP_H
  2. #define VIEWWIDGETGROUP_H
  3. #include <QWidget>
  4. #include <QVBoxLayout>
  5. #include <QstringList.h>
  6. #include "CameraMaterialGroupWnd/MaterialWindow/Wafer.h"
  7. #include "CameraMaterialGroupWnd/MaterialWindow/Waffle.h"
  8. #include "CameraMaterialGroupWnd/MaterialWindow/MaterialBox.h"
  9. #include "OriginalWnd/CameraDataHandleAndShow.h"
  10. #include "CameraMaterialGroupWnd/CameraImage/CameraImageHandler.h"
  11. #include "ImageWidget.h"
  12. #include "../common/GlobalUse/JMouseMonitorThread.h"
  13. #include "../CameraBind.h"
  14. namespace Ui {
  15. class ControlOperationPage;
  16. }
  17. class ControlOperationPage : public QWidget
  18. {
  19. Q_OBJECT
  20. public:
  21. enum kinds{
  22. wafer_kind,
  23. waffle_kind,
  24. materialbox_kind,
  25. bond_kind
  26. };
  27. explicit ControlOperationPage(QWidget *parent = nullptr);
  28. ~ControlOperationPage();
  29. public:
  30. void initForm();
  31. void updateOperateWidget(const QPixmap& pixmap);
  32. void setDataSources(const QStringList& textList);
  33. void clearLayout();
  34. void updateScale(double newScaleFactor);
  35. void applyScale();
  36. void updateMaterialWidget( kinds materialWndType);
  37. void KindsofWidget(kinds kind);
  38. void setWafer(Wafer *wafer);
  39. void setWaffle(Waffle *waffle);
  40. void setMaterialBox(MaterialBox *materialbox);
  41. //void setBond(Bond *bond);
  42. ImageWidget* getOperatewidget();
  43. void resizeSingleUI(bool bMax = false);
  44. void resizeChartsAndCamerasUI();
  45. /**更新硬件指针
  46. */
  47. void UpDateCameraBind(CameraBind* pCameraBind);
  48. void setEnableControls(bool enable);
  49. void setBlueBord();
  50. private slots:
  51. void on_ZoomUpButton_clicked();
  52. void on_ZoomOutButton_clicked();
  53. // void on_RulerButton_clicked();
  54. //void on_PenButton_clicked();
  55. void handleDoubleClick();
  56. void on_switchJoystickBut_clicked();
  57. private slots:
  58. /**位置更新
  59. */
  60. void MouseMovedSlots(const QPoint& delta);
  61. void RequestCursorMoveSlots(const QPoint& pos);
  62. protected:
  63. void timerEvent(QTimerEvent* event) override;
  64. void mousePressEvent(QMouseEvent* event) override;
  65. void mouseMoveEvent(QMouseEvent* event) override;
  66. bool eventFilter(QObject* obj, QEvent* event) override;
  67. private:
  68. void HideLayout(bool bShow);
  69. void ResetIdleTimer(bool bStart = false);
  70. void InitWnd();
  71. /**创建鼠标控制线程,
  72. * @in isStart== false 关闭
  73. */
  74. void CreateMouseMonitor(bool isStart);
  75. /**鼠标操作
  76. */
  77. void LockMouse(bool islockMouse);
  78. private:
  79. template<class T>
  80. void DeduplicationBox(QComboBox* pCom, const T& veTemp, int nIndex);
  81. private:
  82. Ui::ControlOperationPage* ui;
  83. QPixmap m_currentPixmap;
  84. qreal m_scaleFactor;
  85. QPoint m_mousePos;
  86. OperateMode m_currentMode = ModeImage;
  87. QGraphicsView* m_currentView = nullptr;
  88. double m_previousScaleFactor;
  89. Wafer* m_wafer = nullptr; // 声明Wafer指针
  90. Waffle* m_waffle = nullptr; // 声明Waffle指针
  91. MaterialBox* m_materialbox = nullptr; // 声明materialbox指针
  92. //Bond *m_bond;
  93. /**用作定时使用,后面移动到整个类里面,目前先实现功能
  94. */
  95. int m_idleTimer = -1;
  96. private:
  97. JMouseMonitorThread* m_pMousethread = nullptr;
  98. bool m_bMouseRun = false; // 重复点击
  99. bool m_isUserOnclick = false;
  100. /**硬件指针
  101. */
  102. QPointer<CameraBind> m_pCameraBindCopy;
  103. };
  104. #endif // VIEWWIDGETGROUP_H