辅助功能 API - 可可

发布于 2024-10-17 23:26:29 字数 134 浏览 0 评论 0原文

有没有什么方法(我认为使用辅助功能 API)能够在我的应用程序中按下按钮/按键,然后将鼠标悬停在菜单栏项上并再次按下,然后返回菜单项的名称、它所在的菜单以及应用程序?

我想在 Cocoa/Objective-C (Mac) 中执行此操作。

Is there any way (I think using the Accessibility API) to be able to press a button/keystroke in my app and then hover over a menubar item and press again and then return the name of the menu item, the menu it's in and the app?

I want to do this in Cocoa/Objective-C (Mac).

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

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

发布评论

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

评论(1

绝對不後悔。 2024-10-24 23:26:29

这就是 kAXMenuItemSelectedNotification 通知的用途。玩这个东西的一个简单方法是使用 UI 浏览器

  • 在“目标”弹出菜单中选择一个应用程序。
  • 从“抽屉”弹出菜单中选择“通知”。
  • 单击“选定的菜单项”和“注册”(或只需在表中双击)。
  • 从“查看”菜单中选择“通知日志”。
  • 切换到您选择的应用程序并选择一个菜单项。

这可以让您看到通知何时被触发。您的代码可能如下所示:

AXError err;
AXObserverRef observer;

pid_t currentAppPID = [NSRunningApplication currentApplication].processIdentifier;
if ( (err = AXObserverCreate(currentAppPID, notificationCallback, &observer) != kAXErrorSuccess); // XXX failed

CFRunLoopAddSource(CFRunLoopGetCurrent(), AXObserverGetRunLoopSource(observer), kCFRunLoopDefaultMode);

AXUIElementRef element = AXUIElementCreateApplication(currentAppPID);
if (element == NULL); // XXX failed
if ( (err = AXObserverAddNotification(observer, element, kAXMenuItemSelectedNotification, NULL)) != kAXErrorSuccess); // XXX failed

请注意,您必须单独观察每个正在运行的应用程序(以及启动/退出时的其他应用程序),或者注册 NSWorkspaceDidActivateApplicationNotification 并取消注册/注册最前面的应用程序此时(后者在 10.6 下可能是最简单的,因为您会收到 NSRunningApplication 作为通知的一部分)。

我认为实际选择该项目对用户来说会更容易,但如果您确实想按另一个键来完成操作,您可以观察kAXSelectedChildrenChanged,当选择从一个菜单项到另一个菜单项。

That's what the kAXMenuItemSelectedNotification notification is for. An easy way to play with this stuff is using UI Browser:

  • Pick an application in the "Target" popup menu.
  • Pick "Notifications" from the "Drawer" popup menu.
  • Click "menu item selected" and "Register" (or just double-click in the table).
  • Choose "Notification Log" from the View menu.
  • Switch to the application you chose and pick a menu item.

That lets you see when notifications are triggered. Your code could look something like this:

AXError err;
AXObserverRef observer;

pid_t currentAppPID = [NSRunningApplication currentApplication].processIdentifier;
if ( (err = AXObserverCreate(currentAppPID, notificationCallback, &observer) != kAXErrorSuccess); // XXX failed

CFRunLoopAddSource(CFRunLoopGetCurrent(), AXObserverGetRunLoopSource(observer), kCFRunLoopDefaultMode);

AXUIElementRef element = AXUIElementCreateApplication(currentAppPID);
if (element == NULL); // XXX failed
if ( (err = AXObserverAddNotification(observer, element, kAXMenuItemSelectedNotification, NULL)) != kAXErrorSuccess); // XXX failed

Note that you'll have to observe every running app individually (and additional apps as they launch/quit), or register for NSWorkspaceDidActivateApplicationNotification and deregister/register with the frontmost app at that point (the latter is probably easiest under 10.6 because you get a NSRunningApplication as part of the notification).

I would think actually selecting the item would be easier for a user, but if you really do want to press another key to complete the action, you can observe kAXSelectedChildrenChanged, which will be triggered when the selection moves from one menu item to another.

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