在没有菜单栏的应用程序中关闭 Cocoa 中最前面的窗口

发布于 2024-11-09 10:06:45 字数 524 浏览 5 评论 0原文

我正在 Cocoa 中构建 StatusBar 应用程序,因此我没有菜单。没有菜单意味着没有“文件>关闭”菜单项,该菜单项通常监听快捷键“Command + W”。

从我的 StatusBar 应用程序中,用户可以打开一个窗口来更改首选项,这就是我遇到问题的地方:用户只能通过用鼠标按红点来关闭窗口。然而,像所有应用程序一样,我也想支持“Command + W”快捷键。

目前,我看到解决此问题的两种可能性:

  1. 在窗口上放置一个不可见的按钮来监听快捷方式。
  2. 为快捷方式添加应用程序范围的侦听器并手动联系窗口。

这两种解决方案都感觉像是对系统的滥用。第一个解决方案可能会导致意外行为(如果用户偶然点击不可见按钮,窗口将关闭),而第二个解决方案仍然会导致蜂鸣声,因为窗口不知道它处理这样的快捷方式。

有没有一种优雅的方法来解决这个问题?由于视图应该知道要做什么,因此仅使用 Interface Builder 的解决方案将是完美的。如果没有优雅的方法,有没有办法增强提到的解决方案?

提前致谢!

I am building a StatusBar App in Cocoa, therefore I have no menu. Having no menu implies not having a "File > Close" menu item, which normally listens to the shortcut "Command + W".

From my StatusBar App the user may open a window to change the preferences and that's where I'm running into problems: The user can only close the window by pressing the red dot with the mouse. However, like alle applications I want to support the "Command + W" shortcut as well.

At the moment I see two possibilities to solve this issue:

  1. Place an invisible button on the window which listens to the shortcut.
  2. Add an application-wide listener for the shortcut and contact the window manually.

Both solutions feel like a misuse of the system. The first solution can lead to unexpected behaviour (the window closes if the user hits the invisible button by chance) and the second solution will still result in a beep, since the window does not know that it handles such a shortcut.

Is there an elegant way to solve this problem? Since the view should know what to do, a solution with just Interface Builder would be perfect. If there is no elegant way, is there a way to enhance the solutions mentioned?

Thanks in advance!

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

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

发布评论

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

评论(1

终难愈 2024-11-16 10:06:45

如果你放一个文件>关闭 MainMenu 笔尖中的菜单项,即使菜单不可见,快捷方式也将起作用。

如果您选择为快捷方式实现应用程序范围的侦听器,则可以通过从块返回 nil 来消除蜂鸣声,这样原始事件就不会被传递。

If you put a File > Close menu item in your MainMenu nib, the shortcut will work, even though the menu isn't visible.

If you choose to implement an app-wide listener for the shortcut instead, you can get rid of the beep by returning nil from the block, so that the original event doesn't get passed on.

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