The QGLWidget class is a widget for rendering OpenGL graphics. This class is part of the Qt OpenGL Extension. More...
#include <qgl.h>
Inherits QWidget and QGL.
The QGLWidget class is a widget for rendering OpenGL graphics.
QGLWidget provides functionality for displaying OpenGL graphics integrated in a Qt application. It is very simple to use: you inherit from it and use the subclass like any other QWidget, only that instead of drawing the widget's contents using QPainter & al., you use the standard OpenGL rendering commands.
QGLWidget provides three convenient virtual functions that you can reimplement in your subclass to perform the typical OpenGL tasks:
Here is a rough outline of how your QGLWidget subclass may look:
class MyGLDrawer : public QGLWidget { Q_OBJECT // must include this if you use Qt signals/slots public: MyGLDrawer( QWidget *parent, const char *name ) : QGLWidget(parent,name) {} protected: void initializeGL() { // Set up the rendering context, define display lists etc.: ... glClearColor( 0.0, 0.0, 0.0, 0.0 ); glEnable(GL_DEPTH_TEST); ... } void resizeGL( int w, int h ) { // setup viewport, projection etc.: glViewport( 0, 0, (GLint)w, (GLint)h ); ... glFrustum( ... ); ... } void paintGL() { // draw the scene: ... glRotatef( ... ); glMaterialfv( ... ); glBegin( GL_QUADS ); glVertex3f( ... ); glVertex3f( ... ); ... glEnd(); ... } };
If you need to trigger a repaint from other places than paintGL() (a typical example is when using timers to animate scenes), you should call the widget's updateGL() function.
When paintGL(), resizeGL() or initializeGL() is called, your widget's OpenGL rendering context has been made current. If you need to call the standard OpenGL API functions from other places (e.g. in your widget's constructor), you must call makeCurrent() first.
QGLWidget provides advanced functions for requesting a new display format, and you can even set a new rendering context.
You can achieve sharing of OpenGL display lists between QGLWidgets, see the documentation of the QGLWidget constructors for details.
Constructs an OpenGL widget with a parent widget and a name.
The default format is used. The widget will be invalid if the system has no OpenGL support.
The parent, name and f arguments are passed to the QWidget constructor.
If the shareWidget parameter points to a valid QGLWidget, this widget will share OpenGL display lists with shareWidget. Note: If this widget and shareWidget has different formats, display list sharing may fail. You can check whether display list sharing succeeded by using the isSharing() method.
Note: Initialization of OpenGL rendering state etc. should be done by overriding the initializeGL() function, not in the constructor of your QGLWidget subclass.
See also: QGLFormat::defaultFormat().
Constructs an OpenGL widget with a parent widget and a name.
The format argument specifies the desired rendering options. If the underlying OpenGL/Window system cannot satisfy all the features requested in format, the nearest subset of features will be used. After creation, the format() method will return the actual format obtained.
The widget will be invalid if the system has no OpenGL support.
The parent, name and f arguments are passed to the QWidget constructor.
If the shareWidget parameter points to a valid QGLWidget, this widget will share OpenGL display lists with shareWidget. Note: If this widget and shareWidget has different formats, display list sharing may fail. You can check whether display list sharing succeeded by using the isSharing() method.
Note: Initialization of OpenGL rendering state etc. should be done by overriding the initializeGL() function, not in the constructor of your QGLWidget subclass.
See also: QGLFormat::defaultFormat() and isValid().
Destroys the widget.
[protected]
Returns TRUE if the widget is doing automatic GL buffer swapping.
See also: setAutoBufferSwap().
Returns the current context.
See also: setContext().
Returns TRUE if the contained GL rendering context has double buffering.
See also: QGLFormat::doubleBuffer().
Returns the format of the contained GL rendering context.
See also: setFormat().
[virtual protected]
Executes the virtual function paintGL(), initializing first as necessary.
[virtual protected]
Initializes OpenGL for this widget's context. Calls the virtual function initializeGL().
[virtual protected]
This virtual function is called one time before the first call to paintGL() or resizeGL(), and then one time whenever the widget has been assigned a new QGLContext. Reimplement it in a subclass.
This function should take care of setting any required OpenGL context rendering flags, defining display lists, etc.
There is no need to call makeCurrent() because this has already been done when this function is called.
Returns TRUE if display list sharing with another QGLWidget was requested in the constructor, and the GL system was able to provide it. The GL system may fail to provide display list sharing if the two QGLWidgets use different formats.
See also: format().
Returns TRUE if the widget has a valid GL rendering context. A widget will be invalid if the system has no OpenGL support
[virtual]
Makes this widget the current widget for OpenGL operations. I.e. makes this widget's rendering context the current OpenGL rendering context.
[virtual protected]
Handles paint events. Will cause the virtual paintGL() fucntion to be called, initializing first as necessary.
Reimplemented from QWidget.
[virtual protected]
This virtual function is called whenever the widget needs to be painted. Reimplement it in a subclass.
There is no need to call makeCurrent() because this has already been done when this function is called.
[virtual]
Renders the current scene on a pixmap and returns it.
You may use this method on both visible and invisible QGLWidgets.
This method will create a pixmap and a temporary QGLContext to render on it. Then, initializeGL(), resizeGL(), and paintGL() are called on this context. Finally, the widget's original GL context is restored.
The size of the pixmap will be width w and height h. If any of those are 0 (the default), the pixmap will have the same size as the widget.
If useContext is TRUE, this method will try to be more efficient by using the existing GL context to render the pixmap. The default is FALSE. Use only if you know what you are doing.
Bugs and limitations:
[virtual protected]
Handles resize events. Calls the virtual function resizeGL().
Reimplemented from QWidget.
[virtual protected]
This virtual function is called whenever the widget has been resized. Reimplement it in a subclass.
There is no need to call makeCurrent() because this has already been done when this function is called.
[protected]
Turns on or off the automatic GL buffer swapping. If on, and the widget is using a double-buffered format, the background and foreground GL buffers will automatically be swapped after each time the paintGL() function has been called.
The buffer auto-swapping is on by default.
See also: autoBufferSwap(), doubleBuffer() and swapBuffers().
[virtual]
Sets a new context for this widget. The QGLContext context must be created using new. QGLWidget will delete context when another context is set or when the widget is destroyed.
If context is invalid, QGLContext::create() is performed on it. The initializeGL() function will then be executed for the new context before the first resizeGL() or paintGL().
If context is invalid, this method will try to keep any existing display list sharing with other QGLWidgets this widget currently has, or (if shareContext points to a valid context) start display list sharing with that context, but it may fail. Use isSharing() to test.
If deleteOldContext is TRUE (the default), the existing context will be deleted. You may use FALSE here if you have kept a pointer to the old context (as returned by context()), and want to restore that context later.
See also: context(), setFormat() and isSharing().
[virtual]
Sets a new format for this widget.
If the underlying OpenGL/Window system cannot satisfy all the features requested in format, the nearest subset of features will be used. After creation, the format() method will return the actual rendering context format obtained.
The widget will be assigned a new QGLContext, and the initializeGL() function will be executed for this new context before the first resizeGL() or paintGL().
This method will try to keep any existing display list sharing with other QGLWidgets, but it may fail. Use isSharing() to test.
See also: format(), setContext(), isSharing() and isValid().
[virtual]
Swaps the screen contents with an off-screen buffer. Works only if the widget's format specifies double buffer mode.
Normally, there is no need to explicitly call this function, because it is done automatically after each widget repaint, i.e. after each time paintGL() has been executed.
See also: doubleBuffer(), setAutoBufferSwap() and QGLFormat::setDoubleBuffer().
[virtual slot]
Updates the widget by calling glDraw().
Search the documentation, FAQ, qt-interest archive and more (uses
www.troll.no):
This file is part of the Qt toolkit, copyright © 1995-99 Troll Tech, all rights reserved.
It was generated from the following files:
Copyright © 1999 Troll Tech | Trademarks | Qt version 1.45
|