将 XUL 添加到插件?
我正在开发一个可以查看 TIFF 文件的 Firefox 插件。我无法弄清楚如何执行 UI、按钮、滚动条等。我使用的是 Mac,因此该程序是用 C 或 Objective-C 编写的,以防产生影响。
我认为 XUL 可能是一种实现 UI 的方法。如果我可以将我的插件包装在某种 XUL 包装器中,然后让包装器向编译后的代码发送消息,这可能会解决我的问题。
但是,我不确定 XUL 是否是这样工作的。我见过的所有示例基本上都是 HTML,稍微复杂一些...
或者,我可以用 Java 编写插件,如果将 JAR 文件嵌入到 XUL 中更容易的话。实际上这可能是最好的,因为那样它(可能)就会独立于平台......
I am working on a Firefox Add-on that view TIFF Files. I'm having trouble figuring out how to do the UI, buttons, scrollers etc. I'm on a mac, so the program is being written in either C or Objective-C, in case that makes a difference.
I'm thinking that XUL might be a way to do the UI. If I could wrap my plugin in some sort of XUL wrapper, and then have the wrapper send messages to the compiled code, that might solve my problem.
However, I'm not sure that this is how XUL works. All of the examples I've seen have basically been HTML, made slightly more complicated...
Alternatively, I could write the plugin in Java, if it's easier to embed a JAR file into XUL. Actually that might be the best because then It would (probably) be platform independent...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 XPCOM 技术为 XULRunner 编写 C++ 插件。请参阅此处的优秀教程。不过,文档很少,请注意!
您可以使用 XPIDL 接口创建 C/C++ 代码的接口,以便从 JavaScript 访问语言。
我不认为你可以在 XUL 中嵌入 Java 代码。您可能指的是 JAR 清单。
You can write C++ plugins for XULRunner using the XPCOM technology. See here for a good tutorial. Documentation is scarce though, be warned!
You can create an interface to your C/C++ code to be accessed from JavaScript using the XPIDL interface language.
I don't think you can embed Java code in XUL though. You are probably referring to JAR Manifests.