QGLColormap Class ReferenceThe QGLColormap class is used for installing custom colormaps into QGLWidgets. More... #include <qglcolormap.h> Public Members
Detailed DescriptionThe QGLColormap class is used for installing custom colormaps into QGLWidgets.
QGLColormap provides a platform independent way of specifying and installing indexed colormaps into QGLWidgets. QGLColormap 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 <qapplication.h> #include <qglcolormap.h> int main() { QApplication a( argc, argv ); MySuperGLWidget widget( 0 ); // A QGLWidget in color-index mode QGLColormap colormap; // This will fill the colormap with colors ranging from // black to white. for ( int i = 0; i < colormap.size(); i++ ) colormap.setEntry( i, qRgb( i, i, i ) ); widget.setColormap( colormap ); widget.show(); return a.exec(); }
See also QGLWidget::setColormap(), QGLWidget::colormap(), Graphics Classes and Image Processing Classes. Member Function Documentation
Construct a QGLColormap.
|
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt 3.0 | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com