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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Flu_Button.h,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:51:23  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*
  10.  * These files were imported into NCBI's CVS directly from FLU version 2.9.1.
  11.  * Modifications to the source are listed below.
  12.  *
  13.  * ==========================================================================
  14.  * $Log: Flu_Button.h,v $
  15.  * Revision 1000.1  2004/06/01 19:51:23  gouriano
  16.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  17.  *
  18.  * Revision 1.2  2004/05/03 12:47:07  dicuccio
  19.  * Added #include for gui/gui.hpp.  gui/utils ->gui/objutils where needed.
  20.  *
  21.  * Revision 1.1  2004/03/11 13:51:54  dicuccio
  22.  * Imported FLU version 2.9.1.  Altered export specifiers to match NCBI layout.
  23.  * Altered include paths to match NCBI toolkit layout.
  24.  *
  25.  * ==========================================================================
  26.  */
  27. // $Id: Flu_Button.h,v 1000.1 2004/06/01 19:51:23 gouriano Exp $
  28. /***************************************************************
  29.  *                FLU - FLTK Utility Widgets 
  30.  *  Copyright (C) 2002 Ohio Supercomputer Center, Ohio State University
  31.  *
  32.  * This file and its content is protected by a software license.
  33.  * You should have received a copy of this license with this file.
  34.  * If not, please contact the Ohio Supercomputer Center immediately:
  35.  * Attn: Jason Bryan Re: FLU 1224 Kinnear Rd, Columbus, Ohio 43212
  36.  * 
  37.  ***************************************************************/
  38. #ifndef _FLU_BUTTON_H
  39. #define _FLU_BUTTON_H
  40. #include <corelib/ncbistd.hpp>
  41. #include <gui/gui.hpp>
  42. #include <FL/Fl_Button.H>
  43. #include <FL/Fl_Image.H>
  44. #include <stdlib.h>
  45. #include <string.h>
  46. #include <stdio.h>
  47. //! This class extends Fl_Button to make a more attractive alternative that hilights as the mouse enters/leaves and automatically grayscales any image for deactivation
  48. class NCBI_GUIWIDGETS_FLU_EXPORT Flu_Button : public Fl_Button
  49. {
  50.  public:
  51.   //! Normal FLTK widget constructor
  52.   Flu_Button( int X,int Y,int W,int H,const char *l = 0 );
  53.   //! Default destructor
  54.   virtual ~Flu_Button();
  55.   //! Override of Fl_Widget::color()
  56.   inline void color( unsigned c )
  57.     { col = (Fl_Color)c; Fl_Button::color(col); }
  58.   //! Override of Fl_Widget::color()
  59.   inline Fl_Color color() const
  60.     { return col; }
  61.   //! Override of Fl_Widget::selection_color()
  62.   inline void selection_color( unsigned c )
  63.     { sCol = (Fl_Color)c; Fl_Button::selection_color(sCol); }
  64.   //! Override of Fl_Widget::selection_color()
  65.   inline Fl_Color selection_color() const
  66.     { return sCol; }
  67.   //! Set the box to use when the mouse is over the button. If this is c FL_NO_BOX, then the regular box() is used
  68.   inline void enter_box( Fl_Boxtype b )
  69.     { eBox = b; }
  70.   //! Get the box to use when the mouse enters
  71.   inline Fl_Boxtype enter_box() const
  72.     { return eBox; }
  73.   //! Override of Fl_Widget::image()
  74.   void image( Fl_Image *i );
  75.   //! Override of Fl_Widget::image()
  76.   inline void image( Fl_Image &i )
  77.     { image( &i ); }
  78.   //! Override of Fl_Button::handle()
  79.   int handle( int event );
  80.   // Override of Fl_Button::draw()
  81.   void draw();
  82.  protected:
  83.   bool retBtn, linkBtn, overLink;
  84.  private:
  85.   void checkLink();
  86.   int labelSize[4];
  87.   bool hover;
  88.   Fl_Color col, sCol;
  89.   Fl_Image *inactiveImg;
  90.   Fl_Boxtype eBox;
  91. };
  92. #endif