0

我将实现一个 npruntime 插件,它可以在 Chrome、Mozilla FF(windows/mac) 和 Safari(windows/mac) 上运行。该插件可以绘制图像并将具有一些 UI 控制。如果可能的话,我不想为每个操作系统平台重新编程插件。

使用 firebreath(framework for plugin) + Qt lib 似乎是处理我一直在研究的这些问题的唯一方法。

除了使用 firebreath 和 Qt lib 之外,还有其他方法吗?任何建议都会有所帮助。

谢谢。

4

1 回答 1

1

It depends on your UI requirements, but a relatively straight-forward way would be to do the drawing with OpenGL and provide the UI in the web-page.

To get started with OpenGL with FireBreath on Windows see here, for OS X see here.

There is also the QtBrowserPlugin, but apparently it's still broken on OS X.

于 2012-01-27T20:54:43.193 回答