在 C 中嵌入 XUL 后端
我需要编写一个独立的(不在 XULRunner 下)c/c++ 应用程序(Windows 操作系统),它使用 XUL 作为其后端 GUI 库。
如果可能的话,您能给我一个示例应用程序的链接吗?我看到了一些关于 libXul 的内容,有必要吗?我在哪里可以找到它?
TNX,维蒂尔卡
I need to write a standalone (not under XULRunner) c/c++ application (Windows OS) that uses XUL as its backend GUI library.
If it is possible, can you give me a link to an example application ? I saw something about libXul, is it needed ? where can i find it ?
TNX, Vertilka
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 C++ 应用程序之上创建 XUL GUI 的常用方法是使用封装在 XPCOM 插件中的 C++ 代码编写 XULRunner 应用程序。
您可以通过创建一个安装程序将 XULRunner 运行时与 XPCOM 插件一起复制到用户的计算机来使您的应用程序“独立”。例如,这就是
GStreamerSongBird 的工作原理。The usual way to create a XUL GUI on top of a C++ application is by writing a XULRunner application with the C++ code wrapped in an XPCOM plugin.
You can make your application "stand-alone" by creating an installer program that copies the XULRunner runtime together with the XPCOM plugin to the user's computer. This is how
GStreamerSongBird works, for example.