I'm using QGraphicsView to show a 2D image and also have a separate QGLWidget window to display some 3D object. I'm dynamically changing the image displayed in `QGraphicsView' based on the rotation of the 3D object.

I would like to render a semi-transparent 3D object on top of the 2D image, something like Maya 2009 used to do (notice the cube in the upper right corner of the viewport): Maya 2009 screenshot

Is it possible to do this with my current widgets? If not, how could it be done?

One option I can think of would be to render everything in QGLWidget and display the 2D image as a texture on a background plane, but that seems slightly painful.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I have found a way, but it is quite slow: you can simply add another QGraphicsItem to the QGraphicsScene like this

scene->addPixmap(glWidget->renderPixmap());

Transparency can than be set with QGraphicsItem::setOpacity().

There should be a faster way using QPixelBuffer, but I didn't manage to render to it properly yet.

link|improve this answer
This method properly invalidates your whole screen boring it to be re-rendered. This is why it might be slow for you – ries Apr 8 at 15:12
feedback

Set the viewport of your qgraphicsview to the qglwidget, then in your paint method you can directly use gl calls to draw your 3d objects.

See http://doc.qt.nokia.com/4.7-snapshot/qpainter.html#beginNativePainting

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.