mouseDown 时禁用 mouseEntered 事件(NSEvents Mac)
我创建了一个 NSButton 类,当滚动按钮时,它很高兴地检测到 mouseEntered 和 mouseExited 事件。但是,一旦 mouseDown 事件发生,只要鼠标按下,mouseEntered 事件就不再被调用,直到鼠标按钮被抬起。
因此,当调用 mouseDown 事件时,不再调用 mouseEntered 或 MouseExited 事件,滚动到其他按钮时也不会调用 mouseDown ,直到我放开最初的 mouseDown 。
所以我想在鼠标按下时检测鼠标何时进入。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
结果我只需要将 NSTrackingEnabledDuringMouseDrag 添加到我的 NSTrackingAreaOptions 中。 mouseEntered 和 mouseExited 事件现在在用鼠标向下拖动时触发。
Turns out I just needed to add NSTrackingEnabledDuringMouseDrag to my NSTrackingAreaOptions. mouseEntered and mouseExited events now fire when dragging with mouse down.
当 NSButton 接收到鼠标按下事件时,它会输入 私人跟踪循环,处理所有在鼠标抬起之前发布的鼠标事件。您可以设置自己的跟踪循环来根据鼠标位置执行操作:
When an
NSButton
receives a mouse down event, it enters a private tracking loop, handling all the mouse events that are posted until it gets a mouse up. You can set up your own tracking loop to do things based on the mouse location:当按下鼠标左键时,开始拖动。如果我没记错的话,拖动期间不会发送鼠标移动事件,这可能是您没有收到
mouseEntered
和mouseExited
消息的原因之一。但是,如果您实现NSDraggingDestination
协议并将您的视图注册为所拖动数据类型的可能接收者,您将获得draggingEntered
和draggingExited消息代替。
在 拖放编程主题的 rel="nofollow">拖动目标部分。
When the left mouse button is down, dragging begins. If I remember correctly, mouse moved events aren't sent during drags, and that's probably one reason that you don't get
mouseEntered
andmouseExited
messages. However, if you implement theNSDraggingDestination
protocol and register your view as a possible recipient of the type of data being dragged, you'll getdraggingEntered
anddraggingExited
messages instead.Read about it in the Dragging Destinations section of Drag and Drop Programming Topics.