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

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992, 1993 OPEN SOFTWARE FOUNDATION, INC. 
  3.  * ALL RIGHTS RESERVED 
  4. */ 
  5. /* 
  6.  * Motif Release 1.2.3
  7. */ 
  8. /*   $RCSfile: DialogSEP.h,v $ $Revision: 10.1 $ $Date: 1994/02/03 15:36:10 $ */
  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. #ifndef _XmDialogShellExtP_h
  18. #define _XmDialogShellExtP_h
  19.  
  20. #include <Xm/VendorSEP.h>
  21.  
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25.  
  26.  
  27. #ifndef XmIsDialogShellExt
  28. #define XmIsDialogShellExt(w)    XtIsSubclass(w, xmDialogShellExtObjectClass)
  29. #endif /* XmIsDialogShellExt */
  30.  
  31. externalref WidgetClass xmDialogShellExtObjectClass;
  32.  
  33. typedef struct _XmDialogShellExtClassRec    *XmDialogShellExtObjectClass ;
  34. typedef struct _XmDialogShellExtRec        *XmDialogShellExtObject ;
  35.  
  36.  
  37. typedef struct _XmDialogShellExtClassPart{
  38.    XtPointer extension;   /* Pointer to extension record */
  39. }XmDialogShellExtClassPart, *XmDialogShellExtClassPartPtr;
  40.  
  41. typedef struct _XmDialogShellExtClassRec{
  42.     ObjectClassPart        object_class;
  43.     XmExtClassPart        ext_class;
  44.     XmDesktopClassPart        desktop_class;
  45.     XmShellExtClassPart        shell_class;
  46.     XmVendorShellExtClassPart     vendor_class;
  47.     XmDialogShellExtClassPart     dialog_class;
  48. }XmDialogShellExtClassRec;
  49.  
  50. typedef struct _XmDialogShellExtPart{
  51.     int                  empty;
  52. } XmDialogShellExtPart;
  53.  
  54. externalref XmDialogShellExtClassRec     xmDialogShellExtClassRec;
  55.  
  56. typedef struct _XmDialogShellExtRec{
  57.     ObjectPart            object;
  58.     XmExtPart            ext;
  59.     XmDesktopPart        desktop;
  60.     XmShellExtPart        shell;
  61.     XmVendorShellExtPart     vendor;
  62.     XmDialogShellExtPart     dialog;
  63. }XmDialogShellExtRec;
  64.  
  65.  
  66. /********    Private Function Declarations    ********/
  67. #ifdef _NO_PROTO
  68.  
  69.  
  70. #else
  71.  
  72.  
  73. #endif /* _NO_PROTO */
  74. /********    End Private Function Declarations    ********/
  75.  
  76.  
  77. #ifdef __cplusplus
  78. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  79. #endif
  80.  
  81. #endif /* _XmDialogShellExtP_h */
  82. /* DON'T ADD STUFF AFTER THIS #endif */
  83.