WaferGraphicsView.cpp 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. #include "WaferGraphicsView.h"
  2. #include <QDebug>
  3. #include <QScrollBar>
  4. WaferGraphicsView::WaferGraphicsView(QGraphicsScene* scene, QWidget* parent)
  5. : QGraphicsView(scene, parent), selecting(false), selectionRect(nullptr), scaleFactor(1.0) {
  6. setRenderHint(QPainter::Antialiasing);
  7. // setDragMode(QGraphicsView::ScrollHandDrag); // 支持拖动视图
  8. setTransformationAnchor(QGraphicsView::AnchorUnderMouse); // 缩放时以鼠标为中心
  9. }
  10. void WaferGraphicsView::mousePressEvent(QMouseEvent* event) {
  11. if (event->button() == Qt::LeftButton) {
  12. // 清空选中的 DieItem
  13. for (auto& item : selectedItemsMap) {
  14. DieItem* die = dynamic_cast<DieItem*>(item);
  15. if (die) {
  16. die->setSelected(false); // 取消选中状态
  17. }
  18. }
  19. selectedItemsMap.clear();
  20. // 获取点击位置的 DieItem
  21. QGraphicsItem* item = itemAt(event->pos());
  22. DieItem* die = dynamic_cast<DieItem*>(item);
  23. if (die) {
  24. // 将 DieItem 添加到 map 中
  25. selectedItemsMap.insert(qMakePair(die->getRow(), die->getCol()), die);
  26. die->setSelected(true); // 设置选中状态
  27. }
  28. setCursor(Qt::OpenHandCursor); // 按下时设置为小手
  29. selecting = true;
  30. lastPos = event->pos(); // 记录鼠标位置
  31. } else if (event->button() == Qt::RightButton) {
  32. // 开始框选
  33. selecting = true;
  34. selectionStart = mapToScene(event->pos());
  35. isDragging = false;
  36. if (!selectionRect) {
  37. selectionRect = new QGraphicsRectItem();
  38. selectionRect->setPen(QPen(Qt::NoPen));
  39. selectionRect->setBrush(QBrush(QColor(0, 0, 255, 50))); // 半透明蓝色
  40. scene()->addItem(selectionRect);
  41. }
  42. selectionRect->setRect(QRectF(selectionStart, QSizeF()));
  43. }
  44. QGraphicsView::mousePressEvent(event);
  45. }
  46. void WaferGraphicsView::mouseMoveEvent(QMouseEvent* event) {
  47. if (selecting && selectionRect) {
  48. QPointF currentPos = mapToScene(event->pos());
  49. selectionRect->setRect(QRectF(selectionStart, currentPos).normalized());
  50. isDragging = true;
  51. } else if (selecting) {
  52. // 计算鼠标当前位置与上次位置的差值
  53. QPointF delta = event->pos() - lastPos;
  54. // 平移视图
  55. horizontalScrollBar()->setValue(horizontalScrollBar()->value() - delta.x());
  56. verticalScrollBar()->setValue(verticalScrollBar()->value() - delta.y());
  57. lastPos = event->pos(); // 更新鼠标位置
  58. }
  59. QGraphicsView::mouseMoveEvent(event);
  60. }
  61. void WaferGraphicsView::mouseReleaseEvent(QMouseEvent* event) {
  62. if (event->button() == Qt::LeftButton) {
  63. setCursor(Qt::ArrowCursor); // 松开时恢复为箭头
  64. selecting = false;
  65. } else if (event->button() == Qt::RightButton && selecting) {
  66. selecting = false;
  67. if (selectionRect && isDragging) {
  68. QRectF selectedArea = selectionRect->rect();
  69. scene()->removeItem(selectionRect);
  70. delete selectionRect;
  71. selectionRect = nullptr;
  72. QList<QGraphicsItem*> items = scene()->items(selectedArea, Qt::IntersectsItemShape);
  73. for (QGraphicsItem* item : items) {
  74. DieItem* die = dynamic_cast<DieItem*>(item);
  75. if (die) {
  76. // 将 DieItem 添加到 map 中
  77. selectedItemsMap.insert(qMakePair(die->getRow(), die->getCol()), die);
  78. die->setSelected(true); // 设置选中状态
  79. }
  80. }
  81. }
  82. if (selectionRect) {
  83. scene()->removeItem(selectionRect);
  84. delete selectionRect;
  85. selectionRect = nullptr;
  86. }
  87. // 如果没有进行拖动,则弹出右键菜单
  88. if (!isDragging) {
  89. QMenu menu;
  90. QAction* action1 = menu.addAction("菜单项 1");
  91. QAction* action2 = menu.addAction("菜单项 2");
  92. connect(action1, &QAction::triggered, this, &WaferGraphicsView::handleAction1);
  93. connect(action2, &QAction::triggered, this, &WaferGraphicsView::handleAction2);
  94. menu.exec(event->globalPos());
  95. }
  96. }
  97. QGraphicsView::mouseReleaseEvent(event);
  98. }
  99. void WaferGraphicsView::wheelEvent(QWheelEvent* event) {
  100. if (event->orientation() == Qt::Vertical) {
  101. event->ignore(); // 忽略竖直滚轮事件(即禁用滚动条滑动)
  102. return;
  103. }
  104. event->accept();
  105. }
  106. // 处理右键菜单的动作
  107. void WaferGraphicsView::handleAction1() {
  108. qDebug() << "菜单项 1 被点击";
  109. }
  110. void WaferGraphicsView::handleAction2() {
  111. qDebug() << "菜单项 2 被点击";
  112. }