在 PyQT 和 Boost.Python 之间共享小部件
我想知道是否可以在 PyQt 和 Boost.Python 之间共享小部件。
我将把 Python 解释器嵌入到我使用 Qt 的应用程序中。我希望我的应用程序的用户能够将自己的 UI 小部件嵌入到用 C++ 编程并通过 Boost.Python 公开的 UI 小部件中。
这可能吗?人们将如何做到这一点?
I was wondering if it was possible to share widgets between PyQt and Boost.Python.
I will be embedding a Python interpreter into an application of mine that uses Qt. I would like users of my application to be able to embed their own UI widgets into UI widgets programmed in C++ and exposed via Boost.Python.
Is this possible and how would one go about doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我尝试为此编写一些代理,但尚未完全成功。这是尝试解决此问题的开始,但 dir() 不起作用。直接调用函数有点作用。
这个想法是创建一个封装在 SIP 中的附加 python 对象,如果原始 boost.python 对象没有任何匹配属性,则将任何调用/属性转发到该对象。
不过,我的 Python 大师还不足以让这个工作正常进行。 :
((我正在把它变成一个 wiki,所以 ppl 可以在这里编辑和更新,因为这个代码只是半生不熟的样板文件。)
c++:
Python:
I've tried to write some proxying for this, but I haven't succeeded completely. Here's a start that tries to solve this, but the dir() won't work. Calling functions directly works somewhat.
The idea was to create an additional python object wrapped in SIP and forward any calls/attributes to that object if the original boost.python object does not have any matching attribute.
I'm not enough of a Python guru to make this work properly, though. :(
(I'm turning this into a wiki, so ppl can edit and update here, as this code is just half-baked boilerplate.)
c++:
Python: