tkUnixPort.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:5k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * tkUnixPort.h --
  3.  *
  4.  * This file is included by all of the Tk C files.  It contains
  5.  * information that may be configuration-dependent, such as
  6.  * #includes for system include files and a few other things.
  7.  *
  8.  * Copyright (c) 1991-1993 The Regents of the University of California.
  9.  * Copyright (c) 1994-1996 Sun Microsystems, Inc.
  10.  *
  11.  * See the file "license.terms" for information on usage and redistribution
  12.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  13.  *
  14.  * RCS: @(#) $Id: tkUnixPort.h,v 1.8.2.2 2006/09/06 22:01:26 hobbs Exp $
  15.  */
  16. #ifndef _UNIXPORT
  17. #define _UNIXPORT
  18. #define __UNIX__ 1
  19. /*
  20.  * Macro to use instead of "void" for arguments that must have
  21.  * type "void *" in ANSI C;  maps them to type "char *" in
  22.  * non-ANSI systems.  This macro may be used in some of the include
  23.  * files below, which is why it is defined here.
  24.  */
  25. #ifndef VOID
  26. #   ifdef __STDC__
  27. #       define VOID void
  28. #   else
  29. #       define VOID char
  30. #   endif
  31. #endif
  32. #include <stdio.h>
  33. #include <ctype.h>
  34. #include <fcntl.h>
  35. #ifndef NO_LIMITS_H
  36. #   include <limits.h>
  37. #else
  38. #   include "../compat/limits.h"
  39. #endif
  40. #include <math.h>
  41. #include <pwd.h>
  42. #ifdef NO_STDLIB_H
  43. #   include "../compat/stdlib.h"
  44. #else
  45. #   include <stdlib.h>
  46. #endif
  47. #include <string.h>
  48. #include <sys/types.h>
  49. #include <sys/file.h>
  50. #ifdef HAVE_SYS_SELECT_H
  51. #   include <sys/select.h>
  52. #endif
  53. #include <sys/stat.h>
  54. #ifndef _TCL
  55. #   include <tcl.h>
  56. #endif
  57. #if TIME_WITH_SYS_TIME
  58. #   include <sys/time.h>
  59. #   include <time.h>
  60. #else
  61. #   if HAVE_SYS_TIME_H
  62. #       include <sys/time.h>
  63. #   else
  64. #       include <time.h>
  65. #   endif
  66. #endif
  67. #ifndef NO_UNISTD_H
  68. #   include <unistd.h>
  69. #else
  70. #   include "../compat/unistd.h"
  71. #endif
  72. #include <X11/Xlib.h>
  73. #include <X11/cursorfont.h>
  74. #include <X11/keysym.h>
  75. #include <X11/Xatom.h>
  76. #include <X11/Xproto.h>
  77. #include <X11/Xresource.h>
  78. #include <X11/Xutil.h>
  79. /*
  80.  * The following macro defines the type of the mask arguments to
  81.  * select:
  82.  */
  83. #ifndef NO_FD_SET
  84. #   define SELECT_MASK fd_set
  85. #else
  86. #   ifndef _AIX
  87. typedef long fd_mask;
  88. #   endif
  89. #   if defined(_IBMR2)
  90. # define SELECT_MASK void
  91. #   else
  92. # define SELECT_MASK int
  93. #   endif
  94. #endif
  95. /*
  96.  * The following macro defines the number of fd_masks in an fd_set:
  97.  */
  98. #ifndef FD_SETSIZE
  99. #   ifdef OPEN_MAX
  100. # define FD_SETSIZE OPEN_MAX
  101. #   else
  102. # define FD_SETSIZE 256
  103. #   endif
  104. #endif
  105. #if !defined(howmany)
  106. #   define howmany(x, y) (((x)+((y)-1))/(y))
  107. #endif
  108. #ifndef NFDBITS
  109. #   define NFDBITS NBBY*sizeof(fd_mask)
  110. #endif
  111. #define MASK_SIZE howmany(FD_SETSIZE, NFDBITS)
  112. /*
  113.  * Define "NBBY" (number of bits per byte) if it's not already defined.
  114.  */
  115. #ifndef NBBY
  116. #   define NBBY 8
  117. #endif
  118. /*
  119.  * These macros are just wrappers for the equivalent X Region calls.
  120.  */
  121. #define TkClipBox(rgn, rect) XClipBox((Region) rgn, rect)
  122. #define TkCreateRegion() (TkRegion) XCreateRegion()
  123. #define TkDestroyRegion(rgn) XDestroyRegion((Region) rgn)
  124. #define TkIntersectRegion(a, b, r) XIntersectRegion((Region) a, 
  125. (Region) b, (Region) r)
  126. #define TkRectInRegion(r, x, y, w, h) XRectInRegion((Region) r, x, y, w, h)
  127. #define TkSetRegion(d, gc, rgn) XSetRegion(d, gc, (Region) rgn)
  128. #define TkSubtractRegion(a, b, r) XSubtractRegion((Region) a, 
  129. (Region) b, (Region) r)
  130. #define TkUnionRectWithRegion(rect, src, ret) XUnionRectWithRegion(rect, 
  131. (Region) src, (Region) ret)
  132. /*
  133.  * The TkPutImage macro strips off the color table information, which isn't
  134.  * needed for X.
  135.  */
  136. #define TkPutImage(colors, ncolors, display, pixels, gc, image, destx, desty, srcx, srcy, width, height) 
  137. XPutImage(display, pixels, gc, image, destx, desty, srcx, 
  138. srcy, width, height);
  139. /*
  140.  * Supply macros for seek offsets, if they're not already provided by
  141.  * an include file.
  142.  */
  143. #ifndef SEEK_SET
  144. #   define SEEK_SET 0
  145. #endif
  146. #ifndef SEEK_CUR
  147. #   define SEEK_CUR 1
  148. #endif
  149. #ifndef SEEK_END
  150. #   define SEEK_END 2
  151. #endif
  152. /*
  153.  * Declarations for various library procedures that may not be declared
  154.  * in any other header file.
  155.  */
  156. /*
  157.  * These functions do nothing under Unix, so we just eliminate calls to them.
  158.  */
  159. #define TkpButtonSetDefaults(specPtr) {}
  160. #define TkpDestroyButton(butPtr) {}
  161. #define TkSelUpdateClipboard(a,b) {}
  162. #define TkSetPixmapColormap(p,c) {}
  163. /*
  164.  * These calls implement native bitmaps which are not supported under
  165.  * UNIX.  The macros eliminate the calls.
  166.  */
  167. #define TkpDefineNativeBitmaps()
  168. #define TkpCreateNativeBitmap(display, source) None
  169. #define TkpGetNativeAppBitmap(display, name, w, h) None
  170. /*
  171.  * This macro stores a representation of the window handle in a string.
  172.  * This should perhaps use the real size of an XID.
  173.  */
  174. #define TkpPrintWindowId(buf,w) 
  175. sprintf((buf), "%#08lx", (unsigned long) (w))
  176. /*
  177.  * The following declaration is used to get access to a private Tcl interface
  178.  * that is needed for portability reasons.
  179.  */
  180. #ifndef _TCLINT
  181. #include <tclInt.h>
  182. #endif
  183. #endif /* _UNIXPORT */