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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Flu_Toggle_Group.h,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 18:22:24  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.1
  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_Toggle_Group.h,v $
  15.  * Revision 1000.0  2004/04/12 18:22:24  gouriano
  16.  * PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.1
  17.  *
  18.  * Revision 1.1  2004/03/11 13:51:55  dicuccio
  19.  * Imported FLU version 2.9.1.  Altered export specifiers to match NCBI layout.
  20.  * Altered include paths to match NCBI toolkit layout.
  21.  *
  22.  * ==========================================================================
  23.  */
  24. // $Id: Flu_Toggle_Group.h,v 1000.0 2004/04/12 18:22:24 gouriano Exp $
  25. /***************************************************************
  26.  *                FLU - FLTK Utility Widgets 
  27.  *  Copyright (C) 2002 Ohio Supercomputer Center, Ohio State University
  28.  *
  29.  * This file and its content is protected by a software license.
  30.  * You should have received a copy of this license with this file.
  31.  * If not, please contact the Ohio Supercomputer Center immediately:
  32.  * Attn: Jason Bryan Re: FLU 1224 Kinnear Rd, Columbus, Ohio 43212
  33.  * 
  34.  ***************************************************************/
  35. #ifndef _FLU_TOGGLE_GROUP_H
  36. #define _FLU_TOGGLE_GROUP_H
  37. #include <stdio.h>
  38. #include <string.h>
  39. /* fltk includes */
  40. #include <FL/Fl.H>
  41. #include <FL/Fl_Check_Button.H>
  42. #include <FL/fl_draw.H>
  43. #include <FL/Fl_Group.H>
  44. #include <gui/widgets/FLU/Flu_Enumerations.h>
  45. //! This class provides a group that can be toggled active or inactive
  46. class NCBI_GUIWIDGETS_FLU_EXPORT Flu_Toggle_Group : public Fl_Group
  47. {
  48.  public:
  49.   //! Default FLTK constructor
  50.   Flu_Toggle_Group( int x, int y, int w, int h, const char *l = 0 );
  51.   //! Activate the group
  52.   inline void activate()
  53.     { value(1); }
  54.   //! Deactivate the group
  55.   inline void deactivate()
  56.     { value(0); }
  57.   //! Get the activation state of this group.
  58.   inline int active() const
  59.     { return value(); }
  60.   //! Set the activation state of this group. 0 deactivates the group, anything else activates it.
  61.   inline void value( int v )
  62.     { chkBtn->value(v); redraw(); }
  63.   //! Get the activation state of this group.
  64.   inline int value() const
  65.     { return chkBtn->value(); }
  66.   //! Override of Fl_Group::draw()
  67.   void draw();
  68.  protected:
  69.   static void _toggleCB( Fl_Widget *w, void *arg )
  70.     { ((Flu_Toggle_Group*)arg)->toggleCB(); }
  71.   void toggleCB();
  72.   Fl_Check_Button *chkBtn;
  73. };
  74. #endif