home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / include / Xm / PanedW.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-30  |  1.6 KB  |  63 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: PanedW.h,v $ $Revision: 10.1 $ $Date: 1994/02/03 15:45:01 $ */
  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.  *
  17.  * Vertical Paned Widget (SubClass of CompositeClass)
  18.  *
  19.  ****************************************************************/
  20. #ifndef _XmPanedW_h
  21. #define _XmPanedW_h
  22.  
  23. #include <Xm/Xm.h>
  24.  
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28.  
  29. /* Class record constant */
  30. externalref WidgetClass xmPanedWindowWidgetClass;
  31.  
  32. #ifndef XmIsPanedWindow
  33. #define XmIsPanedWindow(w)    XtIsSubclass(w, xmPanedWindowWidgetClass)
  34. #endif /* XmIsPanedWindow */
  35.  
  36. typedef struct _XmPanedWindowClassRec  *XmPanedWindowWidgetClass;
  37. typedef struct _XmPanedWindowRec    *XmPanedWindowWidget;
  38.  
  39.  
  40. /********    Public Function Declarations    ********/
  41. #ifdef _NO_PROTO
  42.  
  43. extern Widget XmCreatePanedWindow() ;
  44.  
  45. #else
  46.  
  47. extern Widget XmCreatePanedWindow( 
  48.                         Widget parent,
  49.                         char *name,
  50.                         ArgList args,
  51.                         Cardinal argCount) ;
  52.  
  53. #endif /* _NO_PROTO */
  54. /********    End Public Function Declarations    ********/
  55.  
  56.  
  57. #ifdef __cplusplus
  58. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  59. #endif
  60.  
  61. #endif /* _XmPanedWindow_h */
  62. /* DON'T ADD ANYTHING AFTER THIS #endif */
  63.