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

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * tkMacOSXPort.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) 1994-1996 Sun Microsystems, Inc.
  9.  * Copyright 2001, Apple Computer, Inc.
  10.  * Copyright (c) 2005-2007 Daniel A. Steffen <das@users.sourceforge.net>
  11.  *
  12.  * See the file "license.terms" for information on usage and redistribution
  13.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  14.  *
  15.  * RCS: @(#) $Id: tkMacOSXPort.h,v 1.3.2.7 2007/04/29 02:26:50 das Exp $
  16.  */
  17. #ifndef _TKMACPORT
  18. #define _TKMACPORT
  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. #include <limits.h>
  36. #include <math.h>
  37. #include <pwd.h>
  38. #include <stdlib.h>
  39. #include <string.h>
  40. #include <sys/types.h>
  41. #include <sys/file.h>
  42. #ifdef HAVE_SYS_SELECT_H
  43. #   include <sys/select.h>
  44. #endif
  45. #include <sys/stat.h>
  46. #ifndef _TCL
  47. #   include <tcl.h>
  48. #endif
  49. #if TIME_WITH_SYS_TIME
  50. #   include <sys/time.h>
  51. #   include <time.h>
  52. #else
  53. #   if HAVE_SYS_TIME_H
  54. # include <sys/time.h>
  55. #   else
  56. # include <time.h>
  57. #   endif
  58. #endif
  59. #include <unistd.h>
  60. #include <X11/Xlib.h>
  61. #include <X11/cursorfont.h>
  62. #include <X11/keysym.h>
  63. #include <X11/Xatom.h>
  64. #include <X11/Xfuncproto.h>
  65. #include <X11/Xutil.h>
  66. #include "tkIntXlibDecls.h"
  67. /*
  68.  * The following macro defines the type of the mask arguments to
  69.  * select:
  70.  */
  71. #ifndef NO_FD_SET
  72. #   define SELECT_MASK fd_set
  73. #else
  74. #   ifndef _AIX
  75. typedef long fd_mask;
  76. #   endif
  77. #   if defined(_IBMR2)
  78. # define SELECT_MASK void
  79. #   else
  80. # define SELECT_MASK int
  81. #   endif
  82. #endif
  83. /*
  84.  * The following macro defines the number of fd_masks in an fd_set:
  85.  */
  86. #ifndef FD_SETSIZE
  87. #   ifdef OPEN_MAX
  88. # define FD_SETSIZE OPEN_MAX
  89. #   else
  90. # define FD_SETSIZE 256
  91. #   endif
  92. #endif
  93. #if !defined(howmany)
  94. #   define howmany(x, y) (((x)+((y)-1))/(y))
  95. #endif
  96. #ifndef NFDBITS
  97. #   define NFDBITS NBBY*sizeof(fd_mask)
  98. #endif
  99. #define MASK_SIZE howmany(FD_SETSIZE, NFDBITS)
  100. /*
  101.  * Define "NBBY" (number of bits per byte) if it's not already defined.
  102.  */
  103. #ifndef NBBY
  104. #   define NBBY 8
  105. #endif
  106. /*
  107.  * The following define causes Tk to use its internal keysym hash table
  108.  */
  109. #define REDO_KEYSYM_LOOKUP
  110. /*
  111.  * Defines for X functions that are used by Tk but are treated as
  112.  * no-op functions on the Macintosh.
  113.  */
  114. #define XFlush(display)
  115. #define XFree(data) {if ((data) != NULL) ckfree((char *) (data));}
  116. #define XGrabServer(display)
  117. #define XNoOp(display) {display->request++;}
  118. #define XUngrabServer(display)
  119. #define XSynchronize(display, bool) {display->request++;}
  120. #define XVisualIDFromVisual(visual) (visual->visualid)
  121. /*
  122.  * The following functions are not used on the Mac, so we stub them out.
  123.  */
  124. #define TkFreeWindowId(dispPtr,w)
  125. #define TkInitXId(dispPtr)
  126. #define TkpButtonSetDefaults(specPtr) {}
  127. #define TkpCmapStressed(tkwin,colormap) (0)
  128. #define TkpFreeColor(tkColPtr)
  129. #define TkSetPixmapColormap(p,c) {}
  130. #define TkpSync(display)
  131. /*
  132.  * The following macro returns the pixel value that corresponds to the
  133.  * RGB values in the given XColor structure.
  134.  */
  135. #define PIXEL_MAGIC ((unsigned char) 0x69)
  136. #define TkpGetPixel(p) ((((((PIXEL_MAGIC << 8) 
  137. | (((p)->red >> 8) & 0xff)) << 8) 
  138. | (((p)->green >> 8) & 0xff)) << 8) 
  139. | (((p)->blue >> 8) & 0xff))
  140. /*
  141.  * This macro stores a representation of the window handle in a string.
  142.  * This should perhaps use the real size of an XID.
  143.  */
  144. #define TkpPrintWindowId(buf,w) 
  145. sprintf((buf), "0x%x", (unsigned int) (w))
  146. /*
  147.  * TkpScanWindowId is just an alias for Tcl_GetInt on Unix.
  148.  */
  149. #define TkpScanWindowId(i,s,wp) 
  150. Tcl_GetInt((i),(s),(int *) (wp))
  151. /*
  152.  * Turn off Tk double-buffering as Aqua windows are already double-buffered.
  153.  */
  154. #define TK_NO_DOUBLE_BUFFERING 1
  155. /*
  156.  * Magic pixel code values for system colors.
  157.  *
  158.  * NOTE: values must be kept in sync with indices into the
  159.  *  systemColorMap array in tkMacOSXColor.c !
  160.  */
  161. #define TRANSPARENT_PIXEL 30
  162. #define HIGHLIGHT_PIXEL 31
  163. #define HIGHLIGHT_SECONDARY_PIXEL 32
  164. #define HIGHLIGHT_TEXT_PIXEL 33
  165. #define HIGHLIGHT_ALTERNATE_PIXEL 34
  166. #define CONTROL_TEXT_PIXEL 35
  167. #define CONTROL_BODY_PIXEL 37
  168. #define CONTROL_FRAME_PIXEL 39
  169. #define WINDOW_BODY_PIXEL 41
  170. #define MENU_ACTIVE_PIXEL 43
  171. #define MENU_ACTIVE_TEXT_PIXEL 45
  172. #define MENU_BACKGROUND_PIXEL 47
  173. #define MENU_DISABLED_PIXEL 49
  174. #define MENU_TEXT_PIXEL 51
  175. #define APPEARANCE_PIXEL 52
  176. #endif /* _TKMACPORT */