home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / X / mit / lib / Xt / Composite.h.orig < prev    next >
Encoding:
Text File  |  1991-06-11  |  2.0 KB  |  68 lines

  1. /* $XConsortium: Composite.h,v 1.11 91/06/11 18:19:08 converse Exp $ */
  2.  
  3. /***********************************************************
  4. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,
  5. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  6.  
  7.                         All Rights Reserved
  8.  
  9. Permission to use, copy, modify, and distribute this software and its 
  10. documentation for any purpose and without fee is hereby granted, 
  11. provided that the above copyright notice appear in all copies and that
  12. both that copyright notice and this permission notice appear in 
  13. supporting documentation, and that the names of Digital or MIT not be
  14. used in advertising or publicity pertaining to distribution of the
  15. software without specific, written prior permission.  
  16.  
  17. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  18. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  19. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  20. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  21. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  22. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  23. SOFTWARE.
  24.  
  25. ******************************************************************/
  26.  
  27. #ifndef _XtComposite_h
  28. #define _XtComposite_h
  29.  
  30. typedef struct _CompositeClassRec *CompositeWidgetClass;
  31.  
  32. _XFUNCPROTOBEGIN
  33.  
  34. extern void XtManageChildren(
  35. #if NeedFunctionPrototypes
  36.     WidgetList         /* children */,
  37.     Cardinal         /* num_children */
  38. #endif
  39. );
  40.  
  41. extern void XtManageChild(
  42. #if NeedFunctionPrototypes
  43.     Widget         /* child */
  44. #endif
  45. );
  46.  
  47. extern void XtUnmanageChildren(
  48. #if NeedFunctionPrototypes
  49.     WidgetList         /* children */,
  50.     Cardinal         /* num_children */
  51. #endif
  52. );
  53.  
  54. extern void XtUnmanageChild(
  55. #if NeedFunctionPrototypes
  56.     Widget         /* child */
  57. #endif
  58. );
  59.  
  60. _XFUNCPROTOEND
  61.  
  62. #ifndef COMPOSITE
  63. externalref WidgetClass compositeWidgetClass;
  64. #endif
  65.  
  66. #endif /* _XtComposite_h */
  67. /* DON'T ADD STUFF AFTER THIS #endif */
  68.