IntrinsicI.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:7k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: IntrinsicI.h,v 1.4 2001/02/09 02:03:55 xorgcvs Exp $ */
  2. /***********************************************************
  3. Copyright 1987, 1988, 1994, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  14. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  21.                         All Rights Reserved
  22. Permission to use, copy, modify, and distribute this software and its
  23. documentation for any purpose and without fee is hereby granted,
  24. provided that the above copyright notice appear in all copies and that
  25. both that copyright notice and this permission notice appear in
  26. supporting documentation, and that the name of Digital not be
  27. used in advertising or publicity pertaining to distribution of the
  28. software without specific, written prior permission.
  29. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  30. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  31. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  32. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  33. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  34. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  35. SOFTWARE.
  36. ******************************************************************/
  37. /* $XFree86: xc/lib/Xt/IntrinsicI.h,v 3.8 2001/12/14 19:56:25 dawes Exp $ */
  38. #ifndef _XtintrinsicI_h
  39. #define _XtintrinsicI_h
  40. #include "Xtos.h"
  41. #include "IntrinsicP.h"
  42. #ifdef WIN32
  43. #define _WILLWINSOCK_
  44. #endif
  45. #include <X11/Xos.h>
  46. #include "Object.h"
  47. #include "RectObj.h"
  48. #include "ObjectP.h"
  49. #include "RectObjP.h"
  50. #include "ConvertI.h"
  51. #include "TranslateI.h"
  52. #define RectObjClassFlag 0x02
  53. #define WidgetClassFlag 0x04
  54. #define CompositeClassFlag 0x08
  55. #define ConstraintClassFlag 0x10
  56. #define ShellClassFlag 0x20
  57. #define WMShellClassFlag 0x40
  58. #define TopLevelClassFlag 0x80
  59. /*
  60.  * The following macros, though very handy, are not suitable for
  61.  * IntrinsicP.h as they violate the rule that arguments are to
  62.  * be evaluated exactly once.
  63.  */
  64. #define XtDisplayOfObject(object) 
  65.     (XtIsWidget(object) ? (object)->core.screen->display : 
  66.     _XtIsHookObject(object) ? ((HookObject)(object))->hooks.screen->display : 
  67.     _XtWindowedAncestor(object)->core.screen->display)
  68. #define XtScreenOfObject(object) 
  69.     (XtIsWidget(object) ? (object)->core.screen : 
  70.     _XtIsHookObject(object) ? ((HookObject)(object))->hooks.screen : 
  71.     _XtWindowedAncestor(object)->core.screen)
  72. #define XtWindowOfObject(object) 
  73.     ((XtIsWidget(object) ? (object) : _XtWindowedAncestor(object)) 
  74.      ->core.window)
  75. #define XtIsManaged(object) 
  76.     (XtIsRectObj(object) ? (object)->core.managed : False)
  77. #define XtIsSensitive(object) 
  78.     (XtIsRectObj(object) ? ((object)->core.sensitive && 
  79.     (object)->core.ancestor_sensitive) : False)
  80. /****************************************************************
  81.  *
  82.  * Byte utilities
  83.  *
  84.  ****************************************************************/
  85. #define _XBCOPYFUNC _XtBcopy
  86. #include <X11/Xfuncs.h>
  87. /* If the alignment characteristics of your machine are right, these may be
  88.    faster */
  89. #ifdef UNALIGNED
  90. #define XtMemmove(dst, src, size)     
  91.     if ((char *)(dst) != (char *)(src)) {     
  92. if (size == sizeof(int))     
  93.     *((int *) (dst)) = *((int *) (src));     
  94. else if (size == sizeof(char))     
  95.     *((char *) (dst)) = *((char *) (src));     
  96. else if (size == sizeof(short))     
  97.     *((short *) (dst)) = *((short *) (src));     
  98. else     
  99.     (void) memcpy((char *) (dst), (char *) (src), (int) (size)); 
  100.     }
  101. #define XtBZero(dst, size)     
  102.     if (size == sizeof(int))     
  103. *((int *) (dst)) = 0;     
  104.     else     
  105. bzero((char *) (dst), (int) (size))
  106. #define XtMemcmp(b1, b2, size)     
  107.     (size == sizeof(int) ?     
  108. *((int *) (b1)) != *((int *) (b2))     
  109.     :   memcmp((char *) (b1), (char *) (b2), (int) (size))  
  110.     )
  111. #else
  112. #define XtMemmove(dst, src, size)
  113.     if ((char *)(dst) != (char *)(src)) {     
  114. (void) memcpy((char *) (dst), (char *) (src), (int) (size)); 
  115.     }
  116. #define XtBZero(dst, size) 
  117. bzero((char *) (dst), (int) (size))
  118. #define XtMemcmp(b1, b2, size) 
  119. memcmp((char *) (b1), (char *) (b2), (int) (size))
  120. #endif
  121. /****************************************************************
  122.  *
  123.  * Stack cache allocation/free
  124.  *
  125.  ****************************************************************/
  126. #define XtStackAlloc(size, stack_cache_array)     
  127.     ((size) <= sizeof(stack_cache_array)   
  128.     ?  (XtPointer)(stack_cache_array)   
  129.     :  XtMalloc((unsigned)(size)))
  130. #define XtStackFree(pointer, stack_cache_array) 
  131.     { if ((pointer) != ((XtPointer)(stack_cache_array))) XtFree(pointer); }
  132. /***************************************************************
  133.  *
  134.  * Filename defines
  135.  *
  136.  **************************************************************/
  137. /* used by XtResolvePathname */
  138. #ifndef XFILESEARCHPATHDEFAULT
  139. #define XFILESEARCHPATHDEFAULT "/usr/lib/X11/%L/%T/%N%S:/usr/lib/X11/%l/%T/%N%S:/usr/lib/X11/%T/%N%S"
  140. #endif
  141. /* the following two were both "X Toolkit " prior to R4 */
  142. #ifndef XTERROR_PREFIX
  143. #define XTERROR_PREFIX ""
  144. #endif
  145. #ifndef XTWARNING_PREFIX
  146. #define XTWARNING_PREFIX ""
  147. #endif
  148. #ifndef ERRORDB
  149. #define ERRORDB "/usr/lib/X11/XtErrorDB"
  150. #endif
  151. extern String XtCXtToolkitError;
  152. extern void _XtAllocError(
  153.     String /* alloc_type */
  154. );
  155. extern void _XtCompileResourceList(
  156.     XtResourceList  /* resources */,
  157.     Cardinal  /* num_resources */
  158. );
  159. extern XtGeometryResult _XtMakeGeometryRequest(
  160.     Widget  /* widget */,
  161.     XtWidgetGeometry* /* request */,
  162.     XtWidgetGeometry* /* reply_return */,
  163.     Boolean* /* clear_rect_obj */
  164. );
  165. extern Boolean _XtIsHookObject(
  166.     Widget      /* widget */
  167. );
  168. extern void _XtAddShellToHookObj(
  169.     Widget      /* widget */
  170. );
  171. /* GCManager.c */
  172. extern void _XtGClistFree(Display *dpy, XtPerDisplay pd);
  173. /** GeoTattler stuff */
  174. #ifdef XT_GEO_TATTLER
  175. extern void _XtGeoTab (int);
  176. extern void _XtGeoTrace (
  177.     Widget widget,
  178.     ...
  179. ) _X_ATTRIBUTE_PRINTF(2,3);
  180. #define CALLGEOTAT(f) f
  181. #else /* XT_GEO_TATTLER */
  182. #define CALLGEOTAT(f)
  183. #endif /* XT_GEO_TATTLER */
  184. #ifndef XTTRACEMEMORY
  185. extern char* __XtMalloc (
  186.     unsigned /* size */
  187. );
  188. extern char* __XtCalloc (
  189.     unsigned /* num */,
  190.     unsigned /* size */
  191. );
  192. #else
  193. #define __XtMalloc XtMalloc
  194. #define __XtCalloc XtCalloc
  195. #endif
  196. #endif /* _XtintrinsicI_h */
  197. /* DON'T ADD STUFF AFTER THIS #endif */