Embed XUL backend in C
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 开发者_JAVA技巧an example application ? I saw something about libXul, is it needed ? where can i find it ?
TNX, Vertilka
I need to write a standalone (not under XULRunner) c/c++ application (Windows OS) that uses XUL as its backend GUI library.
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 GStreamer SongBird works, for example.
精彩评论