PDA

View Full Version : qwidget in a browser



john_god
22nd August 2009, 20:03
Just wondering if it's possible to create a widget, or a window with menus or buttons, and use it in a browser, in html or php

bunjee
22nd August 2009, 20:29
Take a look at QWebPluginFactory.

You're supposed to provide your own widget plugin factory.

Don't forget to add
settings()->setAttribute(QWebSettings::PluginsEnabled, true); to your QWebView.

aamer4yu
23rd August 2009, 09:48
May be this blog (http://daniel-albuschat.blogspot.com/2008/12/embedding-qt-widgets-into-qtwebkit.html) can help you with what you need .