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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Flu_Enumerations.h,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:51:25  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  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_Enumerations.h,v $
  15.  * Revision 1000.1  2004/06/01 19:51:25  gouriano
  16.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  17.  *
  18.  * Revision 1.4  2004/05/03 12:47:07  dicuccio
  19.  * Added #include for gui/gui.hpp.  gui/utils ->gui/objutils where needed.
  20.  *
  21.  * Revision 1.3  2004/03/11 13:51:54  dicuccio
  22.  * Imported FLU version 2.9.1.  Altered export specifiers to match NCBI layout.
  23.  * Altered include paths to match NCBI toolkit layout.
  24.  *
  25.  * ==========================================================================
  26.  */
  27. // $Id: Flu_Enumerations.h,v 1000.1 2004/06/01 19:51:25 gouriano Exp $
  28. /***************************************************************
  29.  *                FLU - FLTK Utility Widgets 
  30.  *  Copyright (C) 2002 Ohio Supercomputer Center, Ohio State University
  31.  *
  32.  * This file and its content is protected by a software license.
  33.  * You should have received a copy of this license with this file.
  34.  * If not, please contact the Ohio Supercomputer Center immediately:
  35.  * Attn: Jason Bryan Re: FLU 1224 Kinnear Rd, Columbus, Ohio 43212
  36.  * 
  37.  ***************************************************************/
  38. #ifndef _FLU_ENUMERATIONS_H
  39. #define _FLU_ENUMERATIONS_H
  40. #include <corelib/ncbistd.hpp>
  41. #include <gui/gui.hpp>
  42. /* these enums are all global to conform to the fltk standard */
  43. /*! Selection modes for FLU widgets that select stuff.
  44.   Used by:
  45.   Flu_Tree_Browser
  46. */
  47. enum {
  48.   FLU_NO_SELECT,
  49.   FLU_SINGLE_SELECT,
  50.   FLU_MULTI_SELECT
  51. };
  52. /*! Data insertion modes for FLU widgets that insert stuff.
  53.   Used by:
  54.   Flu_Tree_Browser
  55. */
  56. enum {
  57.   FLU_INSERT_FRONT,
  58.   FLU_INSERT_BACK,
  59.   FLU_INSERT_SORTED,
  60.   FLU_INSERT_SORTED_REVERSE
  61. };
  62. /*! Selection drag modes for FLU widgets that select stuff (used while the mouse is being dragged).
  63.   Used by:
  64.   Flu_Tree_Browser
  65. */
  66. enum {
  67.   FLU_DRAG_IGNORE,
  68.   FLU_DRAG_TO_SELECT,
  69.   FLU_DRAG_TO_MOVE
  70. };
  71. /*! Callback reasons for FLU widgets that select stuff.
  72.   Used by:
  73.   Flu_Tree_Browser
  74. */
  75. enum {
  76.   FLU_HILIGHTED,
  77.   FLU_UNHILIGHTED,
  78.   FLU_SELECTED,
  79.   FLU_UNSELECTED,
  80.   FLU_OPENED,
  81.   FLU_CLOSED,
  82.   FLU_DOUBLE_CLICK,
  83.   FLU_WIDGET_CALLBACK,
  84.   FLU_MOVED_NODE,
  85.   FLU_NEW_NODE
  86. };
  87. #endif