An attempt at implementing a subclass of QWidget
for Qt3D. The only options to embedd Qt3D into an application with widgets is to use QML (which is not always feasible) or to use a Qt3DWindow
and embedd it using QWidget::createWindowContainer
. This unfortunatley draws the window's content over everything else, even neighboring widgets. This widget is supposed to be a native widget which is embeddable and usable like any other widget.
Although it doesn't use any Qt3D internals anymore it needs QAbstractTexutre
's function handle()
to get a handle to the OpenGL texture. This function is only available from Qt >= 5.13. Any suggestions how to avoid this dependency are welcome.
IMPORTANT: You need to add
QSurfaceFormat format = QSurfaceFormat::defaultFormat();
format.setSamples(4);
format.setVersion(3, 0);
QSurfaceFormat::setDefaultFormat(format);
QApplication::setAttribute(Qt::AA_ShareOpenGLContexts);
to the main
of your project BEFORE calling QApplication(x, y)
or in whatever way you construct your application. This enables context sharing (we need this because Qt3D shares its context wit the native QOpenGLWidget
). I left setting the appropriate format to the user so that they can define the desired number of samples (1 for no multisampling, up to whatever floats your boat, Qt3DWidget will use as many samples as you supply) and set your preferred version (at least 3.0!).
You can either use the static library (libqt3d-widget.a
) in your project, which will be compiled into the executable. Or you use the dynamic linked library (libqt3d-widget.so
).
Note:
If you want to use the dynamic linked library specify
LIBS += -L../path/to/your/libs/folder/ -lqt3d-widget
If you want to use the static library but keep the dynamic library in the same folder you must specify the full file name like so:
LIBS += ../path/to/your/libs/folder/libqt3d-widget.a
Update: The implementation is now not using Qt3D internals anymore but renders to a texture which is then used by OpenGL. Should be compatible with many Qt3D versions.
With QPushButton
inside to show that it's now possible to add widgets inside Qt3D.