On Wednesday 22 December 2010 12:46 AM, Michael wrote: > Hallo, > > How do i Print from qml WebView ? There is no Print() Funktion like in > QWebView of QTWebkit. >
There's no way to do this using WebView. WebView uses QGraphicsWebView internally and the QGraphicsView is a child of the WebView item. If you are fine with relying on this implementation detail, then use qFindChildren in C++ to get hold of the Webpage. The other way is to write your own wrapper on QWebView. For that, I would suggest you fork QDeclarativeWebView. Girish _______________________________________________ Qt-qml mailing list [email protected] http://lists.qt.nokia.com/mailman/listinfo/qt-qml
