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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Flu_Combo_Tree.h,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 18:21: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_Combo_Tree.h,v $
  15.  * Revision 1000.0  2004/04/12 18:21:24  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_Combo_Tree.h,v 1000.0 2004/04/12 18:21: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_COMBO_TREE_H
  36. #define _FLU_COMBO_TREE_H
  37. #include <gui/widgets/FLU/Flu_Combo_Box.h>
  38. #include <gui/widgets/FLU/Flu_Tree_Browser.h>
  39. //! Just like the Fl_Choice widget except the input area is editable and it can display a tree instead of a list (using Flu_Tree_Browser)
  40. class NCBI_GUIWIDGETS_FLU_EXPORT Flu_Combo_Tree : public Flu_Combo_Box
  41. {
  42. public:
  43.   //! Normal FLTK widget constructor
  44.   Flu_Combo_Tree( int x, int y, int w, int h, const char *l = 0 );
  45.   //! Default destructor
  46.   ~Flu_Combo_Tree();
  47.   //! Publicly exposed tree widget (instance of Flu_Tree_Browser)
  48.   Flu_Tree_Browser tree;
  49.  protected:
  50.   bool _value( const char *v );
  51.   const char* _next();
  52.   const char* _previous();
  53.   inline static void _cb( Fl_Widget *w, void *arg )
  54.     { ((Flu_Combo_Tree*)arg)->cb(); }
  55.   void cb();
  56. };
  57. #endif