home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / include / Xm / PushB.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-30  |  1.6 KB  |  67 lines

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC. 
  3.  * ALL RIGHTS RESERVED 
  4. */ 
  5. /* 
  6.  * Motif Release 1.2
  7. */ 
  8. /*   $RCSfile: PushB.h,v $ $Revision: 10.1 $ $Date: 1994/02/03 15:45:43 $ */
  9. /*
  10. *  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  11. /*
  12. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  13. /*
  14. *  (c) Copyright 1988 MASSACHUSETTS INSTITUTE OF TECHNOLOGY  */
  15. /*
  16. *  (c) Copyright 1988 MICROSOFT CORPORATION */
  17. /***********************************************************************
  18.  *
  19.  * PushButton Widget
  20.  *
  21.  ***********************************************************************/
  22.  
  23. #ifndef _XmPButton_h
  24. #define _XmPButton_h
  25.  
  26. #include <Xm/Xm.h>
  27.  
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31.  
  32. #ifndef XmIsPushButton
  33. #define XmIsPushButton(w) XtIsSubclass(w, xmPushButtonWidgetClass)
  34. #endif /* XmIsPushButton */
  35.  
  36. /* PushButton Widget */
  37.  
  38. externalref WidgetClass xmPushButtonWidgetClass;
  39.  
  40. typedef struct _XmPushButtonClassRec *XmPushButtonWidgetClass;
  41. typedef struct _XmPushButtonRec      *XmPushButtonWidget;
  42.  
  43.  
  44. /********    Public Function Declarations    ********/
  45. #ifdef _NO_PROTO
  46.  
  47. extern Widget XmCreatePushButton() ;
  48.  
  49. #else
  50.  
  51. extern Widget XmCreatePushButton( 
  52.                         Widget parent,
  53.                         char *name,
  54.                         ArgList arglist,
  55.                         Cardinal argcount) ;
  56.  
  57. #endif /* _NO_PROTO */
  58. /********    End Public Function Declarations    ********/
  59.  
  60.  
  61. #ifdef __cplusplus
  62. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  63. #endif
  64.  
  65. #endif /* _XmPButton_h */
  66. /* DON'T ADD ANYTHING AFTER THIS #endif */
  67.