Qt classes bindings for Qt WebKit JavaScriptCore?
Qt WebKit
4
Posts
3
Posters
4.5k
Views
1
Watching
-
AFAIK they are not exported.
-
They are obviously not exported by default but you can expose any QObject to WebKit.
For non-gui object, you simply add them with QWebFrame::addToJavaScriptWindowObject(). There are some great hybrid applications (WebKit + C++) build like that.
To embed graphical content, it is a bit more tricky, you need to make you own QWebPluginFactory.