DieItem.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #ifndef DIEITEM_H
  2. #define DIEITEM_H
  3. #include <QGraphicsRectItem>
  4. #include <QColor>
  5. #include <QDebug>
  6. #include <QPen>
  7. #include <QMenu>
  8. #include <QGraphicsSceneContextMenuEvent>
  9. enum PICK_DIE_STATUS {
  10. DIE_EXIST,/*原来的*/
  11. PICK_ING,/*正在取*/
  12. NO_EXIST,/*已取走*/
  13. SKIP_DIE,/*跳过的点*/
  14. EDGE_DIE /*边缘无效*/
  15. };
  16. // 自定义矩形代表晶圆单元格
  17. class DieItem : public QObject, public QGraphicsRectItem {
  18. public:
  19. DieItem(int row, int col, PICK_DIE_STATUS status, qreal size, QGraphicsItem* parent = nullptr);
  20. // 获取单元格的行列号
  21. int getRow() const;
  22. int getCol() const;
  23. void setSelected(bool selected);
  24. protected:
  25. // void mousePressEvent(QGraphicsSceneMouseEvent *event) override;
  26. // void contextMenuEvent(QGraphicsSceneContextMenuEvent *event) override;
  27. private:
  28. int row, col;
  29. PICK_DIE_STATUS status;
  30. bool isSelected = false;
  31. // 获取单元格状态颜色
  32. QColor getColorByStatus(PICK_DIE_STATUS status);
  33. // void handleAction1();
  34. // void handleAction2();
  35. };
  36. #endif // DIEITEM_H