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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Flu_Choice_Group.h,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 18:21:04  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_Choice_Group.h,v $
  15.  * Revision 1000.0  2004/04/12 18:21:04  gouriano
  16.  * PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.1
  17.  *
  18.  * Revision 1.1  2004/03/11 13:51:54  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_Choice_Group.h,v 1000.0 2004/04/12 18:21:04 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_CHOICE_GROUP_H
  36. #define _FLU_CHOICE_GROUP_H
  37. #include <stdio.h>
  38. #include <string.h>
  39. /* fltk includes */
  40. #include <FL/Fl.H>
  41. #include <FL/Fl_Choice.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 an alternative group to Fl_Tabs. It provides an Fl_Choice menu that is used to determine which child Fl_Group is visible
  46. class NCBI_GUIWIDGETS_FLU_EXPORT Flu_Choice_Group : public Fl_Group
  47. {
  48.  public:
  49.   //! Default FLTK constructor
  50.   Flu_Choice_Group( int x, int y, int w, int h, const char *l = 0 );
  51.   //! Get the currently visible child Fl_Group widget
  52.   /*! return c NULL if there are no child Fl_Groups, else the currently selected group */
  53.   inline Fl_Widget* wvalue()
  54.     { return selected; }
  55.   //! Get the index of the currently visible child Fl_Group widget
  56.   /*! return c -1 if there are no child Fl_Groups, else the index of the group */
  57.   int value();
  58.   //! Set the currently visible child Fl_Group widget
  59.   /*! return the index of the child Fl_Group widget that is currently selected, or c -1 if b newvalue cannot be found. */
  60.   int value( Fl_Widget *newvalue );
  61.   //! Set the currently visible child Fl_Group widget
  62.   void value( int v );
  63.   //! Override of Fl_Group::draw()
  64.   void draw();
  65.   //! return the number of entries able to be selected with value(int)
  66.   inline int size()
  67.     { return children()-1; }
  68.  protected:
  69.   static void _choiceCB( Fl_Widget *w, void *arg )
  70.     { ((Flu_Choice_Group*)arg)->choiceCB(); }
  71.   void choiceCB();
  72.   Fl_Choice *choice;
  73.   Fl_Widget *selected;
  74. };
  75. #endif