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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Flu_Separator.h,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 18:22:09  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_Separator.h,v $
  15.  * Revision 1000.0  2004/04/12 18:22:09  gouriano
  16.  * PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.1
  17.  *
  18.  * Revision 1.1  2004/03/11 13:51:55  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_Separator.h,v 1000.0 2004/04/12 18:22:09 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_SEPARATOR_H
  36. #define _FLU_SEPARATOR_H
  37. /* fltk includes */
  38. #include <FL/Fl.H>
  39. #include <FL/Fl_Widget.H>
  40. #include <FL/fl_draw.H>
  41. #include <gui/widgets/FLU/Flu_Enumerations.h>
  42. //! A simple class that draws a separator line using the current box type
  43. class NCBI_GUIWIDGETS_FLU_EXPORT Flu_Separator : public Fl_Widget
  44. {
  45.  public:
  46.   enum {
  47.     HORIZONTAL,
  48.     VERTICAL
  49.   };
  50.   //! Normal FLTK constructor. Default type() is b HORIZONTAL
  51.   Flu_Separator( int X, int Y, int W, int H, const char *l = 0 );
  52.   //! Get the type
  53.   inline int type() const
  54.     { return _type; }
  55.   //! Set the type
  56.   inline void type( int t )
  57.     { _type = t; }
  58.  protected:
  59.   int _type;
  60.   void draw();
  61. };
  62. #endif