Flu_Combo_Tree.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:2k
- /*
- * ===========================================================================
- * PRODUCTION $Log: Flu_Combo_Tree.h,v $
- * PRODUCTION Revision 1000.0 2004/04/12 18:21:24 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_Combo_Tree.h,v $
- * Revision 1000.0 2004/04/12 18:21:24 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_Combo_Tree.h,v 1000.0 2004/04/12 18:21:24 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_COMBO_TREE_H
- #define _FLU_COMBO_TREE_H
- #include <gui/widgets/FLU/Flu_Combo_Box.h>
- #include <gui/widgets/FLU/Flu_Tree_Browser.h>
- //! 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)
- class NCBI_GUIWIDGETS_FLU_EXPORT Flu_Combo_Tree : public Flu_Combo_Box
- {
- public:
- //! Normal FLTK widget constructor
- Flu_Combo_Tree( int x, int y, int w, int h, const char *l = 0 );
- //! Default destructor
- ~Flu_Combo_Tree();
- //! Publicly exposed tree widget (instance of Flu_Tree_Browser)
- Flu_Tree_Browser tree;
- protected:
- bool _value( const char *v );
- const char* _next();
- const char* _previous();
- inline static void _cb( Fl_Widget *w, void *arg )
- { ((Flu_Combo_Tree*)arg)->cb(); }
- void cb();
- };
- #endif