我自己的c++ qt 库用于 qtruby、qtpython 等
我正在启动一个研究所项目。我将尝试创建一个“网络印刷机”,这是一种用于在将文本发送到网站之前更正文本(根据语言的印刷规则)的工具。我的选择是 C++ 和 Qt,因为我想创建“多语言”库(我的意思是它可以在 Ruby、Python、PHP 等中使用)。
老实说,我听说过一些有关 QtRuby、QtPython(甚至 PHP Qt...)的信息,但我无法想象如何将我的库与它们绑定。
PS 是的,我用谷歌搜索过。但有经验的人的一些评论会很好:)
I'm starting an institute project. I'll try to create a "web-typograph", a tool that's to be used to correct texts (according to typographic rules of a language) before they're sent to the site. My choice is C++ with Qt because I'd like to create "multilingual" library (I mean it could be used from Ruby, Python, PHP and so on).
Honestly, I heard something about QtRuby, QtPython (even PHP Qt...) but I just can't imagine, how I can bind my library with them.
P.S. Yes, I've googled. But some comments of the experienced would be nice :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PyQt
和 Qt 的其他绑定都是到核心 Qt 库的绑定。要向您自己的(可能基于 Qt 的)类添加绑定,您必须使用 SWIG 或 SIP(PyQt
的工具,可能与 Qt 相关的类更相关)等工具来生成绑定。或者,您可以为您的库创建一个 C API,这样更容易从脚本语言包装和绑定。也就是说,您应该首先了解您需要 Qt 的用途。您是否计划使用 GUI 或使用 Qt 提供的任何其他功能?哪个?
PyQt
and the other bindings to Qt are bindings to the core Qt library. To add bindings to your own (possibly Qt-based) classes, you'll have to use tools like SWIG or SIP (PyQt
's tool which may be more relevant for Qt-related classes) to generate the bindings. Alternatively, you can make a C API to your library which is easier to wrap and bind from scripting languages.That said, you should first understand what you need Qt for at all. Are you planning a GUI or using any other capabilities Qt provides? Which?