QT笔记- QGraphicsView视图- QGraphicsItem::setAcceptHoverEvents()设置开启鼠标悬停事件

说明
        `开启鼠标悬停事件意味着当鼠标悬停在该item之上时,可由hoverMoveEvent()函数接收到鼠标的移动事件。开启方法: setAcceptHoverEvents(true)。
函数
void QGraphicsItem::setAcceptHoverEvents(bool enabled)virtual void QGraphicsItem::hoverMoveEvent(QGraphicsSceneHoverEvent * event)
释义
设置接受悬停事件。enabled设置为true,意味着接收悬停事件。否则不接受。悬停移动事件。重新实现该函数,并且设置setAcceptHoverEvents(true)时,可接收悬停移动事件。通过函数event->pos()可获得鼠标在当前item中的坐标。
示例
略。

QT笔记- QGraphicsView视图- QGraphicsItem::setAcceptHoverEvents()设置开启鼠标悬停事件最先出现在Python成神之路

版权声明:
作者:admin
链接:https://www.techfm.club/p/22097.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>