Flu_Choice_Group.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:3k
- /*
- * ===========================================================================
- * PRODUCTION $Log: Flu_Choice_Group.h,v $
- * PRODUCTION Revision 1000.0 2004/04/12 18:21:04 gouriano
- * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.1
- * PRODUCTION
- * ===========================================================================
- */
- /*
- * These files were imported into NCBI's CVS directly from FLU version 2.9.1.
- * Modifications to the source are listed below.
- *
- * ==========================================================================
- * $Log: Flu_Choice_Group.h,v $
- * Revision 1000.0 2004/04/12 18:21:04 gouriano
- * PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.1
- *
- * Revision 1.1 2004/03/11 13:51:54 dicuccio
- * Imported FLU version 2.9.1. Altered export specifiers to match NCBI layout.
- * Altered include paths to match NCBI toolkit layout.
- *
- * ==========================================================================
- */
- // $Id: Flu_Choice_Group.h,v 1000.0 2004/04/12 18:21:04 gouriano Exp $
- /***************************************************************
- * FLU - FLTK Utility Widgets
- * Copyright (C) 2002 Ohio Supercomputer Center, Ohio State University
- *
- * This file and its content is protected by a software license.
- * You should have received a copy of this license with this file.
- * If not, please contact the Ohio Supercomputer Center immediately:
- * Attn: Jason Bryan Re: FLU 1224 Kinnear Rd, Columbus, Ohio 43212
- *
- ***************************************************************/
- #ifndef _FLU_CHOICE_GROUP_H
- #define _FLU_CHOICE_GROUP_H
- #include <stdio.h>
- #include <string.h>
- /* fltk includes */
- #include <FL/Fl.H>
- #include <FL/Fl_Choice.H>
- #include <FL/fl_draw.H>
- #include <FL/Fl_Group.H>
- #include <gui/widgets/FLU/Flu_Enumerations.h>
- //! 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
- class NCBI_GUIWIDGETS_FLU_EXPORT Flu_Choice_Group : public Fl_Group
- {
- public:
- //! Default FLTK constructor
- Flu_Choice_Group( int x, int y, int w, int h, const char *l = 0 );
- //! Get the currently visible child Fl_Group widget
- /*! return c NULL if there are no child Fl_Groups, else the currently selected group */
- inline Fl_Widget* wvalue()
- { return selected; }
- //! Get the index of the currently visible child Fl_Group widget
- /*! return c -1 if there are no child Fl_Groups, else the index of the group */
- int value();
- //! Set the currently visible child Fl_Group widget
- /*! return the index of the child Fl_Group widget that is currently selected, or c -1 if b newvalue cannot be found. */
- int value( Fl_Widget *newvalue );
- //! Set the currently visible child Fl_Group widget
- void value( int v );
- //! Override of Fl_Group::draw()
- void draw();
- //! return the number of entries able to be selected with value(int)
- inline int size()
- { return children()-1; }
- protected:
- static void _choiceCB( Fl_Widget *w, void *arg )
- { ((Flu_Choice_Group*)arg)->choiceCB(); }
- void choiceCB();
- Fl_Choice *choice;
- Fl_Widget *selected;
- };
- #endif