需要在非按键窗口接收滑动事件

发布于 2024-11-25 09:49:56 字数 93 浏览 5 评论 0 原文

在我的 Cocoa 应用程序中,我需要处理非键窗口中的滑动手势。不幸的是,手势事件仅传递到关键窗口。制作我的窗户钥匙不是一个选择。

有人知道任何解决方法吗?

In my Cocoa app, I need to handle swipe gestures in a non-key window. Unfortunately, gesture events are only delivered to the key window. Making my window key is not an option.

Any workarounds anyone knows about?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

带上头具痛哭 2024-12-02 09:49:56

我发现的唯一解决方法是让窗口的视图监视 mouseEntered: 事件,并调用 NSApp 的 activateIgnoringOtherApps: 方法。但这不是标准行为。

The only workaround I've found is to have your window's view watch for mouseEntered: events, and call NSApp's activateIgnoringOtherApps: method. This is not standard behaviour, though.

剧终人散尽 2024-12-02 09:49:56

感谢弗朗西斯的来信。我无法找到一种方法来做到这一点。相反,我只是使用滚动视图的scrollWheel:事件并使用我自己的算法来检测滑动。并不完美,但似乎工作正常。

Thanks for the note Francis. I wasn't able to find a way to do this. Instead I just used the scrollview's scrollWheel: events and used my own algorithm to detect swipes. Not perfect but seems to work okay.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文