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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Flu_Helpers.h,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 18:21:44  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_Helpers.h,v $
  15.  * Revision 1000.0  2004/04/12 18:21:44  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_Helpers.h,v 1000.0 2004/04/12 18:21:44 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_HELPERS_H
  36. #define _FLU_HELPERS_H
  37. #include <FL/Fl.H>
  38. #include <FL/Fl_Window.H>
  39. #include <FL/Fl_Menu_.H>
  40. #include <FL/Fl_Menu_Item.H>
  41. #include <gui/widgets/FLU/Flu_Enumerations.h>
  42. /* Return the index of the full menu entry 'fullname' in the menu 'menu', or
  43.    -1 if 'fullname' does not exist in 'menu'.
  44. */
  45. NCBI_GUIWIDGETS_FLU_EXPORT int fl_Full_Find_In_Menu( const Fl_Menu_* menu, const char* fullname );
  46. inline int fl_Full_Find_In_Menu( const Fl_Menu_& menu, const char* fullname )
  47. { return fl_Full_Find_In_Menu( &menu, fullname ); }
  48. /* Return the index of the menu entry 'name' in the menu 'menu', or
  49.    -1 if 'name' does not exist in 'menu'.
  50. */
  51. NCBI_GUIWIDGETS_FLU_EXPORT int fl_Find_In_Menu( const Fl_Menu_* menu, const char* name );
  52. inline int fl_Find_In_Menu( const Fl_Menu_& menu, const char* name )
  53. { return fl_Find_In_Menu( &menu, name ); }
  54. /* Convenience callback for an Fl_Widget to show an Fl_Window. "arg" MUST be a descendent of Fl_Window */
  55. inline static void fl_Show_Window_Callback( Fl_Widget* w, void* arg )
  56. { ((Fl_Window*)arg)->show(); }
  57. /* Convenience callback for an Fl_Widget to hide an Fl_Window. "arg" MUST be a descendent of Fl_Window */
  58. inline static void fl_Hide_Window_Callback( Fl_Widget* w, void* arg )
  59. { ((Fl_Window*)arg)->hide(); }
  60. /* Convenience callback for an Fl_Widget to hide an Fl_Window. "arg" MUST be a descendent of Fl_Window.
  61.    Before the window is hidden, its user_data() field is set to the widget that invoked the callback.
  62.    The user_data() can then be used to determine which widget closed the window.
  63. */
  64. inline static void fl_Hide_Window_And_Set_User_Data_Callback( Fl_Widget* w, void* arg )
  65. { ((Fl_Window*)arg)->user_data( w ); ((Fl_Window*)arg)->hide(); }
  66. #endif