DraggableLine.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #ifndef DRAGGABLELINE_H
  2. #define DRAGGABLELINE_H
  3. #include <QApplication>
  4. #include <QWidget>
  5. #include <QPainter>
  6. #include <QMouseEvent>
  7. #include <QString>
  8. #include <QGraphicsView>
  9. #include <QGraphicsScene>
  10. #include <QGraphicsRectItem>
  11. #include <QMouseEvent>
  12. #include <QLabel>
  13. #include <QPointer>
  14. #include <QGraphicsItem>
  15. #include <QPainter>
  16. #include <QColor>
  17. #include <QGraphicsSceneEvent>
  18. #include <QDebug>
  19. #include <QFrame>
  20. // 1. 创建自定义线段类(继承QGraphicsLineItem)
  21. class DraggableLine : public QGraphicsLineItem {
  22. public:
  23. explicit DraggableLine(QGraphicsItem* parent = nullptr)
  24. : QGraphicsLineItem(parent) {
  25. setFlag(QGraphicsItem::ItemIsMovable, false); // 禁用整体移动
  26. setAcceptHoverEvents(true);
  27. }
  28. // 2. 鼠标事件处理
  29. protected:
  30. void mousePressEvent(QGraphicsSceneMouseEvent* event) override;
  31. void mouseMoveEvent(QGraphicsSceneMouseEvent* event) override;
  32. void mouseReleaseEvent(QGraphicsSceneMouseEvent*) override;
  33. // 3. 可视化增强(绘制端点)
  34. void paint(QPainter* painter, const QStyleOptionGraphicsItem*, QWidget*) override ;
  35. private:
  36. bool draggingStart = false;
  37. bool draggingEnd = false;
  38. double distance(const QPointF& p1, const QPointF& p2);
  39. };
  40. #endif // DRAGGABLELINE_H