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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Flu_Combo_Box.h,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 18:21:14  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_Box.h,v $
  15.  * Revision 1000.0  2004/04/12 18:21:14  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_Box.h,v 1000.0 2004/04/12 18:21:14 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_BOX_H
  36. #define _FLU_COMBO_BOX_H
  37. #include <FL/Fl_Double_Window.H>
  38. #include <FL/Fl_Input.H>
  39. #include <FL/Fl_Group.H>
  40. #include <gui/widgets/FLU/Flu_Enumerations.h>
  41. //! This is a generic base class for implementing widgets with combo-box-like behavior (i.e. a pulldown menu where the "input" area is editable
  42. class NCBI_GUIWIDGETS_FLU_EXPORT Flu_Combo_Box : public Fl_Group
  43. {
  44. public:
  45.   //! Normal FLTK widget constructor
  46.   Flu_Combo_Box( int x, int y, int w, int h, const char *l = 0 );
  47.   //! Default destructor
  48.   ~Flu_Combo_Box();
  49.   //! Get whether the input field can be edited. Default is c true
  50.   inline bool editable() const
  51.     { return (int)(!input.readonly()); }
  52.   //! Set whether the input field can be edited.
  53.   inline void editable( bool b )
  54.     { input.readonly( (int)(!b) ); }
  55.   //! Get the string in the input field
  56.   inline const char* value() const
  57.     { return input.value(); }
  58.   //! Set the string in the input field and the value of the popup box.
  59.   void value( const char *v );
  60.   //! Set the height of the popup box
  61.   inline void pop_height( int h )
  62.     { popHeight = h; }
  63.   //! Get the height of the popup box
  64.   inline int pop_height()
  65.     { return popHeight; }
  66.   //! Override of Fl_Group::handle()
  67.   int handle( int );
  68.   //! Override of Fl_Group::resize()
  69.   void resize( int X, int Y, int W, int H );
  70.   //! Set the function that will be called when the input area is interacted with
  71.   inline void input_callback( void (*cb)(Fl_Widget*,void*), void* cbd = NULL )
  72.     { _inputCB = cb; _inputCBD = cbd; }
  73.   //! Publicly exposed input widget
  74.   Fl_Input input;
  75. protected:
  76.   void (*_inputCB)(Fl_Widget*,void*);
  77.   void* _inputCBD;
  78.  
  79.   virtual bool _value( const char *v ) = 0;
  80.   virtual const char* _next() = 0;
  81.   virtual const char* _previous() = 0;
  82.   void draw();
  83.   void selected( const char *v );
  84.   void set_combo_widget( Fl_Widget *w );
  85.   uchar _valbox;
  86.   bool _pushed, _popped;
  87.   Fl_Widget *_cbox;
  88.   int popHeight;
  89.   static void input_cb( Fl_Widget*, void* v );
  90.   class NCBI_GUIWIDGETS_FLU_EXPORT Popup : public Fl_Double_Window
  91.     {
  92.     public:
  93.       Popup( Flu_Combo_Box *b, Fl_Widget *c, int H );
  94.       ~Popup();
  95.       int handle( int event );
  96.     protected:
  97.       Flu_Combo_Box *combo;
  98.       bool dragging;
  99.       const char* selected;
  100.     };
  101.   friend class Popup;
  102. };
  103. #endif