glcolor.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: glcolor.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:49:38  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.16
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_OPENGL___GL_COLOR__HPP
  10. #define GUI_OPENGL___GL_COLOR__HPP
  11. /*  $Id: glcolor.hpp,v 1000.2 2004/06/01 19:49:38 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *    CGlColor - provides explicit control and conversion for FLTK <-> OpenGL
  40.  *    colors
  41.  */
  42. #include <corelib/ncbistd.hpp>
  43. #include <gui/utils/rgba_color.hpp>
  44. #include <gui/opengl.h>
  45. #include <FL/fl_draw.H>
  46. /** @addtogroup GUI_OPENGL
  47.  *
  48.  * @{
  49.  */
  50. BEGIN_NCBI_SCOPE
  51. class NCBI_GUIOPENGL_EXPORT CGlColor : public CRgbaColor
  52. {
  53. public:
  54.     /// default ctor
  55.     CGlColor();
  56.     /// construct around an FLTK color
  57.     CGlColor(Fl_Color);
  58.     /// construct from a color array
  59.     CGlColor(const float* color, size_t size);
  60.     /// construct from floating point values
  61.     CGlColor(float r, float g, float b);
  62.     CGlColor(float r, float g, float b, float a);
  63.     /// construct from unsigned char vales.  These are normalized internally
  64.     /// to the range 0-1
  65.     CGlColor(unsigned char r, unsigned char g, unsigned char b);
  66.     CGlColor(unsigned char r, unsigned char g,
  67.              unsigned char b, unsigned char a);
  68.     /// construct around a string in the form "r g b"
  69.     explicit CGlColor(const string& s);
  70.     /// virtual dtor
  71.     virtual ~CGlColor();
  72.     /// set from an FLTK color
  73.     void SetFltkColor(Fl_Color c);
  74.     /// return the appropriate Fl_Color
  75.     Fl_Color GetFltkColor(void) const;
  76.     /// return a color array
  77.     const GLfloat* GetGlColor(void) const;
  78.     /// make this color the current color
  79.     void Select();
  80. };
  81. inline void glColorC(const CGlColor& Color)
  82. {   
  83.     glColor4fv(Color.GetGlColor());
  84. }
  85. inline const GLfloat* CGlColor::GetGlColor(void) const
  86. {
  87.     return GetColorArray();
  88. }
  89. inline void CGlColor::Select()
  90. {
  91.     glColor4fv(GetColorArray());
  92. }
  93. END_NCBI_SCOPE
  94. /* @} */
  95. /*
  96.  * ===========================================================================
  97.  * $Log: glcolor.hpp,v $
  98.  * Revision 1000.2  2004/06/01 19:49:38  gouriano
  99.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.16
  100.  *
  101.  * Revision 1.16  2004/05/11 18:54:22  dicuccio
  102.  * Added doxygne modules info
  103.  *
  104.  * Revision 1.15  2004/01/27 18:28:54  dicuccio
  105.  * Added comments.  Moved inline functions out of class body.
  106.  *
  107.  * Revision 1.14  2003/10/29 22:25:01  yazhuk
  108.  * Made some functions inline, added glColorC() function
  109.  *
  110.  * Revision 1.13  2003/09/29 15:20:07  dicuccio
  111.  * Deprecated gui/scope.hpp.  Merged gui/core/types.hpp into gui/types.hpp
  112.  *
  113.  * Revision 1.12  2003/09/04 14:00:26  dicuccio
  114.  * Introduce IDocument and IView as abstract base classes.  Use IDocument instead
  115.  * of CDocument.
  116.  *
  117.  * Revision 1.11  2003/08/25 18:02:20  rsmith
  118.  * Colors to and from strings.
  119.  *
  120.  * Revision 1.10  2003/06/18 18:16:00  meric
  121.  * Moved inline interface to glcolor.cpp
  122.  *
  123.  * Revision 1.9  2003/06/18 16:43:10  meric
  124.  * Move most of functionality to gui/utils in class CRgbaColor
  125.  *
  126.  * Revision 1.8  2003/05/15 12:19:15  dicuccio
  127.  * Fixed compiler warning about signed <-> unsigned comparison
  128.  *
  129.  * Revision 1.7  2003/05/14 21:21:43  meric
  130.  * modify PrintTo() to optionally skip output of alpha value (not by default)
  131.  *
  132.  * Revision 1.6  2003/05/14 14:56:27  meric
  133.  * modified CGlColor's operator<<() to use a const object reference
  134.  *
  135.  * Revision 1.5  2003/05/13 19:22:58  dicuccio
  136.  * Added constructor, stream output (Peter Meric)
  137.  *
  138.  * Revision 1.4  2003/01/13 13:11:42  dicuccio
  139.  * Namespace clean-up.  Retired namespace gui -> converted to namespace ncbi.
  140.  * Moved all FLUID-generated code into namespace ncbi.
  141.  *
  142.  * Revision 1.3  2002/12/19 18:13:03  dicuccio
  143.  * Added export specifiers for Win32.
  144.  *
  145.  * Revision 1.2  2002/11/22 18:56:16  dicuccio
  146.  * Added support for alpha channel - color is now a 4-position item.  Also, added
  147.  * direct accessor for glColor?v().
  148.  *
  149.  * Revision 1.1  2002/11/22 18:06:42  dicuccio
  150.  * Initial revision.
  151.  *
  152.  * ===========================================================================
  153.  */
  154. #endif  // GUI_OPENGL___GL_COLOR__HPP