在 Cocoa 中解码整数和其他掩码
Cocoa 有大量的整数掩码和代码。例如,NSCommandKeyMask 或 NSF1FunctionKey,它们在标头中明确定义和记录。
然而,有些可能是过时的,当访问辅助功能属性时,例如要获取字形 (AXMenuItemCmdGlyph),您会得到一个整数,例如 111,它代表 F1 (0xf704),或 112 代表 F2 (十六进制:0xf705)。
有没有简单的方法来处理掩码和代码?也许能够将 111 转换为相应的十六进制 unicode 0xf704?我的意思是 NSEvent.h 将 NSF1FunctionKey 映射到 0xf704,但是是否有 111 到 NSF1FunctionKey 或 0xf704 的映射?
Cocoa has a plethora of integer masks and codes. For instance, NSCommandKeyMask or NSF1FunctionKey, which are clearly defined and documented in the headers.
However, some can be archaic and when accessing accessibility attributes, for instance to get the glyph (AXMenuItemCmdGlyph), you're given an integer number like 111, which represents F1 (0xf704), or 112 which represents F2 (hex: 0xf705).
Is there an easy way to deal with masks and codes? Perhaps one that's able to convert the 111 into the corresponding hex unicode 0xf704? What I mean is that NSEvent.h maps NSF1FunctionKey to 0xf704, but is there a mapping for 111 to NSF1FunctionKey or 0xf704?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想要菜单项的键等效项的 Unicode 字符,而不是它的字形,请尝试获取 kAXMenuItemCmdCharAttribute 属性 而不是
kAXMenuItemCmdGlyphAttribute
。If you want the Unicode character for the menu item's key equivalent, rather than the glyph for it, try getting the
kAXMenuItemCmdCharAttribute
attribute instead ofkAXMenuItemCmdGlyphAttribute
.