'\" t .TH TQGLContext 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" license file included in the distribution for a complete license .\" statement. .\" .ad l .nh .SH NAME TQGLContext \- Encapsulates an OpenGL rendering context .SH SYNOPSIS \fC#include \fR .PP Inherits TQGL. .PP .SS "Public Members" .in +1c .ti -1c .BI "\fBTQGLContext\fR ( const TQGLFormat & format, TQPaintDevice * device )" .br .ti -1c .BI "virtual \fB~TQGLContext\fR ()" .br .ti -1c .BI "virtual bool \fBcreate\fR ( const TQGLContext * shareContext = 0 )" .br .ti -1c .BI "bool \fBisValid\fR () const" .br .ti -1c .BI "bool \fBisSharing\fR () const" .br .ti -1c .BI "virtual void \fBreset\fR ()" .br .ti -1c .BI "TQGLFormat \fBformat\fR () const" .br .ti -1c .BI "TQGLFormat \fBrequestedFormat\fR () const" .br .ti -1c .BI "virtual void \fBsetFormat\fR ( const TQGLFormat & format )" .br .ti -1c .BI "virtual void \fBmakeCurrent\fR ()" .br .ti -1c .BI "virtual void \fBswapBuffers\fR () const" .br .ti -1c .BI "TQPaintDevice * \fBdevice\fR () const" .br .ti -1c .BI "TQColor \fBoverlayTransparentColor\fR () const" .br .in -1c .SS "Static Public Members" .in +1c .ti -1c .BI "const TQGLContext * \fBcurrentContext\fR ()" .br .in -1c .SS "Protected Members" .in +1c .ti -1c .BI "virtual bool \fBchooseContext\fR ( const TQGLContext * shareContext = 0 )" .br .ti -1c .BI "virtual void \fBdoneCurrent\fR ()" .br .ti -1c .BI "virtual int \fBchoosePixelFormat\fR ( void * dummyPfd, HDC pdc )" .br .ti -1c .BI "virtual void * \fBchooseVisual\fR ()" .br .ti -1c .BI "virtual void * \fBchooseMacVisual\fR ( GDHandle device )" .br .ti -1c .BI "bool \fBdeviceIsPixmap\fR () const" .br .ti -1c .BI "bool \fBwindowCreated\fR () const" .br .ti -1c .BI "void \fBsetWindowCreated\fR ( bool on )" .br .ti -1c .BI "bool \fBinitialized\fR () const" .br .ti -1c .BI "void \fBsetInitialized\fR ( bool on )" .br .ti -1c .BI "void \fBgenerateFontDisplayLists\fR ( const TQFont & font, int listBase )" .br .in -1c .SH DESCRIPTION The TQGLContext class encapsulates an OpenGL rendering context. .PP An OpenGL* rendering context is a complete set of OpenGL state variables. .PP The context's format is set in the constructor or later with setFormat(). The format options that are actually set are returned by format(); the options you asked for are returned by requestedFormat(). Note that after a TQGLContext object has been constructed, the actual OpenGL context must be created by explicitly calling the create() function. The makeCurrent() function makes this context the current rendering context. You can make \fIno\fR context current using doneCurrent(). The reset() function will reset the context and make it invalid. .PP You can examine properties of the context with, e.g. isValid(), isSharing(), initialized(), windowCreated() and overlayTransparentColor(). .PP If you're using double buffering you can swap the screen contents with the off-screen buffer using swapBuffers(). .PP Please note that TQGLContext is not thread safe. .PP * OpenGL is a trademark of Silicon Graphics, Inc. in the United States and other countries. .PP See also Graphics Classes and Image Processing Classes. .SH MEMBER FUNCTION DOCUMENTATION .SH "TQGLContext::TQGLContext ( const TQGLFormat & format, TQPaintDevice * device )" Constructs an OpenGL context for the paint device \fIdevice\fR, which can be a widget or a pixmap. The \fIformat\fR specifies several display options for the context. .PP If the underlying OpenGL/Window system cannot satisfy all the features requested in \fIformat\fR, the nearest subset of features will be used. After creation, the format() method will return the actual format obtained. .PP Note that after a TQGLContext object has been constructed, create() must be called explicitly to create the actual OpenGL context. The context will be invalid if it was not possible to obtain a GL context at all. .PP See also format() and isValid(). .SH "TQGLContext::~TQGLContext ()\fC [virtual]\fR" Destroys the OpenGL context and frees its resources. .SH "bool TQGLContext::chooseContext ( const TQGLContext * shareContext = 0 )\fC [virtual protected]\fR" This semi-internal function is called by create(). It creates a system-dependent OpenGL handle that matches the format() of \fIshareContext\fR as closely as possible. .PP On Windows, it calls the virtual function choosePixelFormat(), which finds a matching pixel format identifier. On X11, it calls the virtual function chooseVisual() which finds an appropriate X visual. On other platforms it may work differently. .SH "void * TQGLContext::chooseMacVisual ( GDHandle device )\fC [virtual protected]\fR" \fBMac only\fR: This virtual function tries to find a visual that matches the format using the given \fIdevice\fR handle, reducing the demands if the original request cannot be met. .PP The algorithm for reducing the demands of the format is quite simple-minded, so override this method in your subclass if your application has specific requirements on visual selection. .PP See also chooseContext(). .SH "int TQGLContext::choosePixelFormat ( void * dummyPfd, HDC pdc )\fC [virtual protected]\fR" \fBWin32 only\fR This virtual function chooses a pixel format that matches the OpenGL format. Reimplement this function in a subclass if you need a custom context. .PP \fBWarning:\fR The \fIdummyPfd\fR pointer and \fIpdc\fR are used as a \fCPIXELFORMATDESCRIPTOR*\fR. We use \fCvoid\fR to avoid using Windows-specific types in our header files. .PP See also chooseContext(). .SH "void * TQGLContext::chooseVisual ()\fC [virtual protected]\fR" \fBX11 only\fR: This virtual function tries to find a visual that matches the format, reducing the demands if the original request cannot be met. .PP The algorithm for reducing the demands of the format is quite simple-minded, so override this method in your subclass if your application has spcific requirements on visual selection. .PP See also chooseContext(). .SH "bool TQGLContext::create ( const TQGLContext * shareContext = 0 )\fC [virtual]\fR" Creates the GL context. Returns TRUE if it was successful in creating a valid GL rendering context on the paint device specified in the constructor; otherwise returns FALSE (i.e. the context is invalid). .PP After successful creation, format() returns the set of features of the created GL rendering context. .PP If \fIshareContext\fR points to a valid TQGLContext, this method will try to establish OpenGL display list sharing between this context and the \fIshareContext\fR. Note that this may fail if the two contexts have different formats. Use isSharing() to see if sharing succeeded. .PP \fBWarning:\fR Implementation note: initialization of C++ class members usually takes place in the class constructor. TQGLContext is an exception because it must be simple to customize. The virtual functions chooseContext() (and chooseVisual() for X11) can be reimplemented in a subclass to select a particular context. The problem is that virtual functions are not properly called during construction (even though this is correct C++) because C++ constructs class hierarchies from the bottom up. For this reason we need a create() function. .PP See also chooseContext(), format(), and isValid(). .SH "const TQGLContext * TQGLContext::currentContext ()\fC [static]\fR" Returns the current context, i.e. the context to which any OpenGL commands will currently be directed. Returns 0 if no context is current. .PP See also makeCurrent(). .SH "TQPaintDevice * TQGLContext::device () const" Returns the paint device set for this context. .PP See also TQGLContext::TQGLContext(). .SH "bool TQGLContext::deviceIsPixmap () const\fC [protected]\fR" Returns TRUE if the paint device of this context is a pixmap; otherwise returns FALSE. .SH "void TQGLContext::doneCurrent ()\fC [virtual protected]\fR" Makes no GL context the current context. Normally, you do not need to call this function; TQGLContext calls it as necessary. .SH "TQGLFormat TQGLContext::format () const" Returns the frame buffer format that was obtained (this may be a subset of what was requested). .PP See also requestedFormat(). .SH "void TQGLContext::generateFontDisplayLists ( const TQFont & font, int listBase )\fC [protected]\fR" Generates a set of 256 display lists for the 256 first characters in the font \fIfont\fR. The first list will start at index \fIlistBase\fR. .PP See also TQGLWidget::renderText(). .SH "bool TQGLContext::initialized () const\fC [protected]\fR" Returns TRUE if this context has been initialized, i.e. if TQGLWidget::initializeGL() has been performed on it; otherwise returns FALSE. .PP See also setInitialized(). .SH "bool TQGLContext::isSharing () const" Returns TRUE if display list sharing with another context was requested in the create() call and the GL system was able to fulfill this request; otherwise returns FALSE. Note that display list sharing might not be supported between contexts with different formats. .SH "bool TQGLContext::isValid () const" Returns TRUE if a GL rendering context has been successfully created; otherwise returns FALSE. .SH "void TQGLContext::makeCurrent ()\fC [virtual]\fR" Makes this context the current OpenGL rendering context. All GL functions you call operate on this context until another context is made current. .PP In some very rare cases the underlying call may fail. If this occurs an error message is output to stderr. .SH "TQColor TQGLContext::overlayTransparentColor () const" If this context is a valid context in an overlay plane, returns the plane's transparent color. Otherwise returns an invalid color. .PP The returned color's pixel value is the index of the transparent color in the colormap of the overlay plane. (Naturally, the color's RGB values are meaningless.) .PP The returned TQColor object will generally work as expected only when passed as the argument to TQGLWidget::qglColor() or TQGLWidget::qglClearColor(). Under certain circumstances it can also be used to draw transparent graphics with a TQPainter. See the examples/opengl/overlay_x11 example for details. .SH "TQGLFormat TQGLContext::requestedFormat () const" Returns the frame buffer format that was originally requested in the constructor or setFormat(). .PP See also format(). .SH "void TQGLContext::reset ()\fC [virtual]\fR" Resets the context and makes it invalid. .PP See also create() and isValid(). .SH "void TQGLContext::setFormat ( const TQGLFormat & format )\fC [virtual]\fR" Sets a \fIformat\fR for this context. The context is reset. .PP Call create() to create a new GL context that tries to match the new format. .PP .nf .br TQGLContext *cx; .br // ... .br TQGLFormat f; .br f.setStereo( TRUE ); .br cx->setFormat( f ); .br if ( !cx->create() ) .br exit(); // no OpenGL support, or cannot render on the specified paintdevice .br if ( !cx->format().stereo() ) .br exit(); // could not create stereo context .br .fi .PP See also format(), reset(), and create(). .SH "void TQGLContext::setInitialized ( bool on )\fC [protected]\fR" If \fIon\fR is TRUE the context has been initialized, i.e. TQGLContext::setInitialized() has been called on it. If \fIon\fR is FALSE the context has not been initialized. .PP See also initialized(). .SH "void TQGLContext::setWindowCreated ( bool on )\fC [protected]\fR" If \fIon\fR is TRUE the context has had a window created for it. If \fIon\fR is FALSE no window has been created for the context. .PP See also windowCreated(). .SH "void TQGLContext::swapBuffers () const\fC [virtual]\fR" Swaps the screen contents with an off-screen buffer. Only works if the context is in double buffer mode. .PP See also TQGLFormat::setDoubleBuffer(). .SH "bool TQGLContext::windowCreated () const\fC [protected]\fR" Returns TRUE if a window has been created for this context; otherwise returns FALSE. .PP See also setWindowCreated(). .SH "SEE ALSO" .BR http://doc.trolltech.com/tqglcontext.html .BR http://www.trolltech.com/faq/tech.html .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. .SH AUTHOR Generated automatically from the source code. .SH BUGS If you find a bug in Qt, please report it as described in .BR http://doc.trolltech.com/bughowto.html . Good bug reports help us to help you. Thank you. .P The definitive TQt documentation is provided in HTML format; it is located at $TQTDIR/doc/html and can be read using TQt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. .P If you find errors in this manual page, please report them to .BR qt-bugs@trolltech.com . Please include the name of the manual page (tqglcontext.3qt) and the Qt version (3.3.8).