On Apr 7, 3:39 am, Artur <[email protected]> wrote: > (This project forms the basis of the Calango.js project just > announced). > > Node-Qt exposes graphics- and audio-related bindings to the Qt > library. (Qt is a cross-platform native library containing just about > any API you need, from window manager integration to graphics and > networking; Node-Qt focuses on graphics and audio so as to not overlap > with Node's API).
Hi Artur, Great job on this! I've done something similar in reverse. Qt has QtScript which is Javascript (using JavascriptCore) in Qt. This provides direct signals and slots support and access to the Qt APIs in JS via QtScript. Using this I've gone and used *Qt's event loop* instead of libev, then implemented something similar to node's http API: https://github.com/nikhilm/confkdein11/blob/master/qtjs/oboy/basic.js The cpp files setup the API and I can go into a detailed explanation if anybody wants it. Nikhil -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
