Wafer.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #ifndef WAFER_H
  2. #define WAFER_H
  3. #include <QWidget>
  4. #include <vector>
  5. #include <QMenu>
  6. #include "WaferGraphicsView.h"
  7. #include "DieItem.h"
  8. typedef struct
  9. {
  10. double x;
  11. double y;
  12. }XY_DOUBLE_STRUCT;
  13. typedef struct
  14. {
  15. int nDieMatrixId; //晶圆矩阵Id
  16. int nDieRow; //固晶点在矩阵中所在行
  17. int nDieCol; //固晶点在矩阵中所在列
  18. int iDieIndex; //所在Point点ID
  19. bool bDisable; //不可用点,等同于无效点
  20. PICK_DIE_STATUS eStatus; //晶片状态
  21. XY_DOUBLE_STRUCT stPosition; //程序设置的位置
  22. } WAFER_MATRIX_POINT_INFO_STRUCT;
  23. class Wafer : public QWidget
  24. {
  25. Q_OBJECT
  26. public:
  27. explicit Wafer(int flag, QWidget *parent = nullptr);
  28. void initFrom(QWidget *parent);
  29. void paintInitFrom(QWidget *parent);
  30. QPixmap getGlobalPixmap() const;
  31. QColor getColorByStatus(PICK_DIE_STATUS status);
  32. QGraphicsScene* scene;
  33. WaferGraphicsView *view;
  34. protected:
  35. private slots:
  36. void handleAction1();
  37. void handleAction2();
  38. signals:
  39. void sendCoordinates(int x, int y);
  40. private:
  41. int Flag;
  42. void showContextMenu(const QPoint &pos);
  43. QVector<WAFER_MATRIX_POINT_INFO_STRUCT> waferData;
  44. int rows, cols;
  45. int centerX, centerY;
  46. qreal radius;
  47. QMenu *contextMenu = nullptr;
  48. QPixmap globalPixmap;
  49. };
  50. #endif // WAFER_H