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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: colorbutton.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:52:01  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_COLOR_BUTTON__HPP
  10. #define GUI_WIDGETS_COLOR_BUTTON__HPP
  11. /*  $Id: colorbutton.hpp,v 1000.1 2004/06/01 19:52:01 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:  Robert G. Smith
  37.  *
  38.  * File Description:
  39.  *    CColorButton: A widget that carries a CGlColor (RGB value) as state.
  40.  *   When clicked it presents a color chooser to change its state.
  41.  *   It displays its color state in a patch or in text format or both.
  42.  *   Its color state is not the same as its FLTK color(), nor is the text
  43.  *   description of the color the FLTK label.
  44.  */
  45.  
  46.  
  47. #include <gui/opengl/glcolor.hpp>
  48. #include <FL/Fl_Button.H>   // base class
  49. /** @addtogroup GUI_FltkWidgets
  50.  *
  51.  * @{
  52.  */
  53. BEGIN_NCBI_SCOPE
  54. class NCBI_GUIWIDGETS_FL_EXPORT CColorButton : public Fl_Button
  55. {
  56. public:
  57.     CColorButton(int X, int Y, int W, int H, const char *l=0);
  58.     virtual ~CColorButton();
  59.     
  60.     void draw();    // over ride Fl_Button's draw().
  61.     
  62.     enum EDrawColorText {
  63.         eNoText,
  64.         eDecText,
  65.         eHexText
  66.     };
  67.     
  68.     void                SetColorTextType(EDrawColorText e);
  69.     EDrawColorText      GetColorTextType(void) const;
  70.     
  71.     void                SetDrawSwatch(bool b);
  72.     bool                GetDrawSwatch(void) const;
  73.     
  74.     void                SetGlColor(const CGlColor& color);
  75.     const CGlColor&     GetGlColor(void) const;
  76. protected:
  77.     static void clickCB(CColorButton* o, void*);
  78.     
  79.     // over ride the following to change:
  80.     // the click behavior
  81.     virtual void    x_ClickCB(void*);
  82.     // how colors are displayed as strings.
  83.     virtual string  ColorToString(void) const;
  84.     
  85. private:
  86.     static const int    sm_SwatchInset;
  87.     static const int    sm_SwatchMinHeight;
  88.     CGlColor            m_GlColor;
  89.     EDrawColorText      m_ColorTextType;
  90.     bool                m_DrawSwatch;
  91. };
  92. END_NCBI_SCOPE
  93. /* @} */
  94. /*
  95.  * ===========================================================================
  96.  * $Log: colorbutton.hpp,v $
  97.  * Revision 1000.1  2004/06/01 19:52:01  gouriano
  98.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  99.  *
  100.  * Revision 1.3  2004/05/11 18:55:14  dicuccio
  101.  * Added doxygen modules info
  102.  *
  103.  * Revision 1.2  2003/10/23 16:10:22  dicuccio
  104.  * Fixed export specifiers
  105.  *
  106.  * Revision 1.1  2003/09/25 17:11:19  rsmith
  107.  * Initial checkin
  108.  *
  109.  *
  110.  * ===========================================================================
  111.  */
  112. #endif  // GUI_WIDGETS_COLOR_BUTTON__HPP