全局热键 eventNotHandledErr 传递给事件处理程序

发布于 2024-10-19 23:01:31 字数 565 浏览 1 评论 0原文

我仔细阅读了大部分关于使用 Carbon 创建全局热键的帖子。热键处理程序函数是否可以返回 eventNotHandledErr 并将事件传递到下一个处理程序?下面是一些伪代码:

OSStatus myHotKeyHandler(EventHandlerCallRef nextHandler, EventRef anEvent, void *userData)
{   
    OSStatus result;

    if ( appX is running || appY is running ) { 
        [(MyAppController *) userData doSomething];
        result = noErr;
    } else {
        result = eventNotHandledErr;    
    }

    return result;
}

如果我不在应用程序 X 或 Y 中,我希望能够传递该事件。这可能吗?

我知道我可以为应用程序切换事件设置通知,但这需要启用辅助设备的访问权限。如果有一种方法可以将事件传递给下一个处理程序,那就太好了。

I've pored through most of the posts regarding the creation of Global Hotkeys using Carbon. Is it possible in the hot key handler function to return eventNotHandledErr and have the event passed on to the next handler? Here's some pseudocode:

OSStatus myHotKeyHandler(EventHandlerCallRef nextHandler, EventRef anEvent, void *userData)
{   
    OSStatus result;

    if ( appX is running || appY is running ) { 
        [(MyAppController *) userData doSomething];
        result = noErr;
    } else {
        result = eventNotHandledErr;    
    }

    return result;
}

In the event that I'm not in application X or Y, I want to be able to pass the event on. Is this possible?

I know I can set up a notification for application switched events, but that requires Enable access for assistive devices to be turned on. If there's a way to pass the event to the next handler, that would be great.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文