如何在 Mac 操作系统上创建无法访问的窗口?

发布于 2024-09-06 21:26:07 字数 330 浏览 3 评论 0原文

我的意思是一个无法通过 Cocoa、Carbon 或其他用于获取 NSWindow *、WindowRef 等的 CoreGraphics API 访问的窗口。

就像 Mac 上的 X11 应用程序一样

这样一个窗口,如果将其窗口 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 技术交流群。

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

发布评论

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

评论(1

远昼 2024-09-13 21:26:07

有 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.

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