如何在 Mac 操作系统上创建无法访问的窗口?
我的意思是一个无法通过 Cocoa、Carbon 或其他用于获取 NSWindow *、WindowRef 等的 CoreGraphics API 访问的窗口。
这样一个窗口,如果将其窗口 ID 传递给 [NSApp windowWithWindowID] 或 HIWindowFromCGWindowID(),它们都会返回 NULL。
谢谢!
I mean a window which will not be accessible via Cocoa, Carbon or other CoreGraphics API for obtaining NSWindow *, WindowRef and others.
Like X11 application on Mac does.
Such a window that if you pass its window ID to [NSApp windowWithWindowID] or HIWindowFromCGWindowID() they both return NULL.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有 CoreGraphics 私有 API。其定义可用,感谢逆向工程。如果某个窗口是使用此类 API 创建的,则无法通过 [NSApp windowWithWindowNumber: (NSInteger)windowID] 或 HIWindowFromCGWindowID() 函数访问它。
Xquartz 使用 Xplugin 库,而 Xplugin 库又使用 CoreGraphics Private API。
There's CoreGraphics Private API. Its definition is available thanks to reverse engineering. If some window is created with such API it won't be accessible via [NSApp windowWithWindowNumber: (NSInteger)windowID] or HIWindowFromCGWindowID() functions.
Xquartz uses Xplugin library, which in turn uses CoreGraphics Private API.