PDA

View Full Version : is there any other way to add widget to QGraphicScene other than proxyWidget



wagmare
27th November 2008, 10:13
hi friends/experts,
I am building graphical app where in scene i have to add a widget which Ui
is a QWebView for browsing ... but using proxy widget its event communication is slower comparing to normal running of QWebView in separate program .... is there a way in QGraphicsScene to add widget as an item without proxy embedding ....

please help

wysota
27th November 2008, 10:49
Not really. But you can add the widget to the view itself. Just make it child of the view's viewport() and use setGeometry/resize/move to position the widget. Of course it will not scale or move when you manipulate the scene.