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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: rgba_color.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 19:51:17  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.11
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_UTILS___RGBA_COLOR__HPP
  10. #define GUI_UTILS___RGBA_COLOR__HPP
  11. /*  $Id: rgba_color.hpp,v 1000.3 2004/06/01 19:51:17 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, Peter Meric
  37.  *
  38.  * File Description:
  39.  *    CRgbaColor - colors in the RGB colorspace, including transparency
  40.  */
  41. #include <corelib/ncbistd.hpp>
  42. #include <gui/gui.hpp>
  43. /** @addtogroup GUI_UTILS
  44.  *
  45.  * @{
  46.  */
  47. BEGIN_NCBI_SCOPE
  48. ///
  49. /// class CRgbaColor provides a simple abstraction for managing colors.
  50. ///
  51. class NCBI_GUIUTILS_EXPORT CRgbaColor
  52. {
  53. public:
  54.     /// default ctor
  55.     CRgbaColor();
  56.     /// construct around a given float array
  57.     CRgbaColor(const float* color, size_t size);
  58.     /// construct with explicit (floating point) RGB values
  59.     CRgbaColor(float r, float g, float b);
  60.     /// construct with explicit (floating point) RGB+alpha values
  61.     CRgbaColor(float r, float g, float b, float a);
  62.     /// construct with explicit (unsigned char) RGB values.  These are
  63.     /// normalized to 0-1 internally.
  64.     CRgbaColor(unsigned char r, unsigned char g, unsigned char b);
  65.     /// construct with explicit (unsigned char) RGB+alpha values.  These are
  66.     /// normalized from 0-1 internally.
  67.     CRgbaColor(unsigned char r, unsigned char g,
  68.                unsigned char b, unsigned char a);
  69.     /// construct from a string encoded in the form "r g b"
  70.     explicit CRgbaColor(const string& s);
  71.     /// virtual dtor
  72.     virtual ~CRgbaColor();
  73.     /// set the values from explicit (floating point) RGB values
  74.     void Set(float r, float g, float b);
  75.     /// set the values from explicit (floating point) RGB+alpha values
  76.     void Set(float r, float g, float b, float a);
  77.     /// set the values from explicit (unsigned char) RGB values.  These
  78.     /// are normalized internally to the range 0-1.
  79.     void Set(unsigned char r, unsigned char g, unsigned char b);
  80.     /// set the values from explicit (unsigned char) RGB+alpha values.  These
  81.     /// are normalized internally to the range 0-1.
  82.     void Set(unsigned char r, unsigned char g,
  83.              unsigned char b, unsigned char a);
  84.     /// Set specific channels from floating point values
  85.     void SetRed  (float r);
  86.     void SetGreen(float r);
  87.     void SetBlue (float r);
  88.     void SetAlpha(float r);
  89.     /// Set specific channels from floating unsigned char values.  These
  90.     /// are normalized internally to the range 0-1.
  91.     void SetRed  (unsigned char r);
  92.     void SetGreen(unsigned char r);
  93.     void SetBlue (unsigned char r);
  94.     void SetAlpha(unsigned char r);
  95.     /// Get specific channels in floating point values.
  96.     float GetRed  (void) const;
  97.     float GetGreen(void) const;
  98.     float GetBlue (void) const;
  99.     float GetAlpha(void) const;
  100.     /// Get specific channels in unsigned char values.
  101.     unsigned char GetRedUC  (void) const;
  102.     unsigned char GetGreenUC(void) const;
  103.     unsigned char GetBlueUC (void) const;
  104.     unsigned char GetAlphaUC(void) const;
  105.     /// Access the color array directly.
  106.     const float* GetColorArray(void) const;
  107.     /// print the color to a stream in the form "r g b"
  108.     virtual void PrintTo(CNcbiOstream& strm) const;
  109.     virtual void PrintTo(CNcbiOstream& strm, bool printAlpha) const;
  110.     /// Return a string representation of the current color
  111.     virtual string ToString(bool printAlpha = true) const;
  112.     /// Set the values from an encoded string of the form "r g b"
  113.     virtual void ScanFrom(const string& str);
  114.     // add a color to this color
  115.     CRgbaColor& operator+=(const CRgbaColor& c1);
  116.     // multiply this color by a scalar
  117.     CRgbaColor& operator*=(float f);
  118.     /// return a mapped color string from a named color
  119.     static  const char* ColorStrFromName(const string& desc);
  120.     /// Interpolate two colors. The resulting color returned is
  121.     ///  ( (color1 * alpha) + (color2 * (1 - alpha) )
  122.     static CRgbaColor Interpolate(const CRgbaColor& color1,
  123.                                   const CRgbaColor& color2,
  124.                                   float alpha);
  125.     // lighten a color by a scaling factor.  Scale must range from 0-1.
  126.     // This is equivalent to interpolating the color with white, with the
  127.     // exception that the alpha channel is not altered.
  128.     void Lighten(float scale);
  129.     // lighten a color by a scaling factor.  Scale must range from 0-1.
  130.     // This is equivalent to interpolating the color with black, with the
  131.     // exception that the alpha channel is not altered.
  132.     void Darken(float scale);
  133.     
  134. private:
  135.     float m_Rgba[4];
  136. };
  137. /// global comparison operator
  138. NCBI_GUIUTILS_EXPORT
  139. bool operator==(const CRgbaColor& c1, const CRgbaColor& c2);
  140. /// add two colors
  141. NCBI_GUIUTILS_EXPORT
  142. CRgbaColor operator+(const CRgbaColor& c1, const CRgbaColor& c2);
  143. /// multiply a color by a scalar
  144. NCBI_GUIUTILS_EXPORT
  145. CRgbaColor operator*(const CRgbaColor& c1, float f);
  146. END_NCBI_SCOPE
  147. /* @} */
  148. /*
  149.  * ===========================================================================
  150.  * $Log: rgba_color.hpp,v $
  151.  * Revision 1000.3  2004/06/01 19:51:17  gouriano
  152.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.11
  153.  *
  154.  * Revision 1.11  2004/05/11 13:48:14  dicuccio
  155.  * Added Darken(), Lighten()
  156.  *
  157.  * Revision 1.10  2004/05/03 12:41:10  dicuccio
  158.  * Split library into gui_utils and gui_objutils.  Added #include for gui/gui.hpp
  159.  *
  160.  * Revision 1.9  2004/04/16 14:27:17  dicuccio
  161.  * Added doxygen module tag
  162.  *
  163.  * Revision 1.8  2004/01/27 18:30:02  dicuccio
  164.  * Added comments.  Promoted member operators to global operators.  Added
  165.  * Interpolate()
  166.  *
  167.  * Revision 1.7  2003/12/22 19:16:08  dicuccio
  168.  * Added functions to add/scale colors
  169.  *
  170.  * Revision 1.6  2003/10/30 13:32:52  rsmith
  171.  * Add ColorStrFromName a static function to convert color names to color numbers:
  172.  * e.g. "blue" -> "0 0 255"
  173.  *
  174.  * Revision 1.5  2003/09/01 12:42:34  meric
  175.  * Added ScanFrom(const string&), which is now used by a ctor
  176.  *
  177.  * Revision 1.4  2003/08/25 18:02:19  rsmith
  178.  * Colors to and from strings.
  179.  *
  180.  * Revision 1.3  2003/06/18 17:54:11  meric
  181.  * Moved inline interface to .cpp file
  182.  *
  183.  * Revision 1.2  2003/06/18 17:25:27  meric
  184.  * Final phase of print reorg: remove dependence on gui/opengl and OpenGL
  185.  *
  186.  * Revision 1.1  2003/06/18 16:42:09  meric
  187.  * Initial version
  188.  *
  189.  *
  190.  * ===========================================================================
  191.  */
  192. #endif  // GUI_UTILS___RGBA_COLOR__HPP