Tagged Questions

2
votes
5answers
6k views

calling Qt's QGraphicsView::setViewport with a custom QGLWidget

I've derived from QGLWidget before, like so: class MyGLWidget : public QGLWidget { public: // stuff... virtual void initializeGL() { /* my custom OpenGL initialization routine */ } // more ...
1
vote
2answers
1k views

Transparent QGLWidget on top of QGraphicsView

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 ...
0
votes
0answers
16 views

How to draw Qt widgets using Horde3d and OpenGL?

What I want is a Qt Application that uses Horde3D to display a 3d scene and draw QWidgets on top of the 3D scene using Horde3D(or OpenGL). Basically I want to add UI for my 3D scene. And this UI ...
0
votes
1answer
230 views

Qt - multiple layers containing a QGraphicsView in one 3D scene (QGLWidget)

I'm currently evaluating the possibilities to implement a navigable 3D scene which allows to render multiple 2D layers. To be a bit more precise, I would like to display multiple graphs in a 3D ...