从基于 C++/QT 的应用程序访问 NSWindow
我有一个用 C++ 编写的应用程序,并使用 QT 作为框架。编译器是gcc,IDE是QT Creator。
在 Mac OS 上,我需要我的应用程序通过访问 NSWindow 的 collectionBehavior 属性来与 Spaces 交互。所以应该有一种从 C++ 应用程序到 NSWindow 的桥梁。
有人可以给我提示,说明这是否/如何可能通过我当前的 gcc/qtcreator 设置(我认为不可能)或在 xcode 下实现吗?
I have an application that is written in C++ and is using QT as a framework. The compiler is gcc and the IDE is QT Creator.
On Mac OS, I need my app to interface with Spaces by accessing the collectionBehavior property of the NSWindow. So there should be a kind of a bridge from C++ app to NSWindow.
Can someone give me the hint on if/how this could be possible either with my current gcc/qtcreator setup (which I don't think is possible) or under xcode?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 Cocoa Qt(Qt 有 2 个版本 - Cocoa 和 Carbon,请记住!),您可以在 QWidget 类上使用 winId() 来检索本机小部件句柄。
在 Qt Carbon 上,QWidget::winId() 返回 HIViewRef,在 Qt Cocoa 上,它返回 NSView。我猜你可以以某种方式从 NSView 检索 NSWindow
If you're using Cocoa Qt (there are 2 versions of Qt - Cocoa and Carbon, remember that!), you can use winId() on QWidget class to retrieve native widget handle.
On Qt Carbon QWidget::winId() returns HIViewRef, on Qt Cocoa it return NSView. I gues you can retrieve somehow NSWindow from NSView