Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions |
The TQGLColormap class is used for installing custom colormaps into TQGLWidgets. More...
#include <ntqglcolormap.h>
TQGLColormap provides a platform independent way of specifying and installing indexed colormaps into TQGLWidgets. TQGLColormap is especially useful when using the OpenGL color-index mode.
Under X11 you must use an X server that supports either a PseudoColor or DirectColor visual class. If your X server currently only provides a GrayScale, TrueColor, StaticColor or StaticGray visual, you will not be able to allocate colorcells for writing. If this is the case, try setting your X server to 8 bit mode. It should then provide you with at least a PseudoColor visual. Note that you may experience colormap flashing if your X server is running in 8 bit mode.
Under Windows the size of the colormap is always set to 256 colors. Note that under Windows you can also install colormaps in child widgets.
This class uses explicit sharing (see Shared Classes).
Example of use:
#include <ntqapplication.h> #include <ntqglcolormap.h> int main() { TQApplication a( argc, argv ); MySuperGLWidget widget( 0 ); // A TQGLWidget in color-index mode TQGLColormap colormap; // This will fill the colormap with colors ranging from // black to white. for ( int i = 0; i < colormap.size(); i++ ) colormap.setEntry( i, tqRgb( i, i, i ) ); widget.setColormap( colormap ); widget.show(); return a.exec(); }
See also TQGLWidget::setColormap(), TQGLWidget::colormap(), Graphics Classes, and Image Processing Classes.
Set the cell with index idx in the colormap to color color.
This file is part of the TQt toolkit. Copyright © 1995-2007 Trolltech. All Rights Reserved.
Copyright © 2007 Trolltech | Trademarks | TQt 3.3.8
|