WaferGraphicsView.h 945 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef WAFERGRAPHICSVIEW_H
  2. #define WAFERGRAPHICSVIEW_H
  3. #include <QGraphicsView>
  4. #include <QGraphicsScene>
  5. #include <QGraphicsRectItem>
  6. #include <QMouseEvent>
  7. #include "DieItem.h"
  8. class WaferGraphicsView : public QGraphicsView {
  9. Q_OBJECT
  10. public:
  11. WaferGraphicsView(QGraphicsScene* scene, QWidget* parent = nullptr);
  12. void handleAction1();
  13. void handleAction2();
  14. protected:
  15. void mousePressEvent(QMouseEvent* event) override;
  16. void mouseMoveEvent(QMouseEvent* event) override;
  17. void mouseReleaseEvent(QMouseEvent* event) override;
  18. void wheelEvent(QWheelEvent* event) override;
  19. private:
  20. bool selecting; // 是否正在框选
  21. QPoint lastPos;
  22. QPointF selectionStart; // 框选起点
  23. QGraphicsRectItem* selectionRect; // 框选矩形
  24. double scaleFactor; // 当前缩放比例
  25. bool isDragging = false;
  26. QMap<QPair<int, int>, QGraphicsItem*> selectedItemsMap;
  27. };
  28. #endif // WAFERGRAPHICSVIEW_H