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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: glcolor.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:50:37  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: glcolor.cpp,v 1000.1 2004/06/01 20:50:37 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Authors:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *    CGlColor - provides explicit control and conversion for FLTK <-> OpenGL
  38.  *    colors
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <gui/opengl/glcolor.hpp>
  42. #include <FL/Fl.H>
  43. BEGIN_NCBI_SCOPE
  44. CGlColor::CGlColor(void)
  45. {
  46. }
  47. CGlColor::CGlColor(const float* color, size_t size)
  48.     : CRgbaColor(color, size)
  49. {
  50. }
  51. CGlColor::CGlColor(float r, float g, float b)
  52.     : CRgbaColor(r, g, b)
  53. {
  54. }
  55. CGlColor::CGlColor(float r, float g, float b, float a)
  56.     : CRgbaColor(r, g, b, a)
  57. {
  58. }
  59. CGlColor::CGlColor(unsigned char r, unsigned char g, unsigned char b)
  60.     : CRgbaColor(r, g, b)
  61. {
  62. }
  63. CGlColor::CGlColor(unsigned char r, unsigned char g,
  64.                    unsigned char b, unsigned char a)
  65.     : CRgbaColor(r, g, b, a)
  66. {
  67. }
  68. CGlColor::CGlColor(Fl_Color c)
  69. {
  70.     SetFltkColor(c);
  71. }
  72. CGlColor::CGlColor(const string& s)
  73.     : CRgbaColor(s)
  74. {
  75. }
  76. CGlColor::~CGlColor()
  77. {
  78. }
  79. void CGlColor::SetFltkColor(Fl_Color c)
  80. {
  81.     unsigned char   r, g, b;
  82.     Fl::get_color(c, r, g, b);
  83.     Set(r, g, b);
  84. }
  85. Fl_Color CGlColor::GetFltkColor(void) const
  86. {
  87.     return fl_rgb_color(GetRedUC(), GetGreenUC(), GetBlueUC());
  88. }
  89. END_NCBI_SCOPE
  90. /*
  91.  * ===========================================================================
  92.  * $Log: glcolor.cpp,v $
  93.  * Revision 1000.1  2004/06/01 20:50:37  gouriano
  94.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  95.  *
  96.  * Revision 1.8  2004/05/21 22:27:45  gorelenk
  97.  * Added PCH ncbi_pch.hpp
  98.  *
  99.  * Revision 1.7  2003/10/29 22:28:09  yazhuk
  100.  * Moved GetGlColor() to header and made inline
  101.  *
  102.  * Revision 1.6  2003/10/15 13:59:51  rsmith
  103.  * add implementation to create a GlColor from an Fl_Color.
  104.  *
  105.  * Revision 1.5  2003/08/25 18:02:20  rsmith
  106.  * Colors to and from strings.
  107.  *
  108.  * Revision 1.4  2003/06/18 18:16:17  meric
  109.  * Moved inline interface from glcolor.hpp
  110.  *
  111.  * Revision 1.3  2003/05/14 21:21:27  meric
  112.  * modify PrintTo() to optionally skip output of alpha value (not by default)
  113.  *
  114.  * Revision 1.2  2003/05/14 14:54:38  meric
  115.  * modified CGlColor's operator<<() to use a const object reference
  116.  *
  117.  * Revision 1.1  2003/05/14 12:08:07  dicuccio
  118.  * Initial revision
  119.  *
  120.  *
  121.  * ===========================================================================
  122.  */