tkWinPort.h
上传用户:kellyonhid
上传日期:2013-10-12
资源大小:932k
文件大小:3k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. /*
  2.  * tkWinPort.h --
  3.  *
  4.  * This header file handles porting issues that occur because of
  5.  * differences between Windows and Unix. It should be the only
  6.  * file that contains #ifdefs to handle different flavors of OS.
  7.  *
  8.  * Copyright (c) 1995-1996 Sun Microsystems, Inc.
  9.  *
  10.  * See the file "license.terms" for information on usage and redistribution
  11.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12.  *
  13.  * SCCS: @(#) tkWinPort.h 1.25 97/04/21 17:08:42
  14.  */
  15. #ifndef _WINPORT
  16. #define _WINPORT
  17. #include <X11/Xlib.h>
  18. #include <X11/cursorfont.h>
  19. #include <X11/keysym.h>
  20. #include <X11/Xatom.h>
  21. #include <X11/Xutil.h>
  22. #include <malloc.h>
  23. #include <errno.h>
  24. #include <ctype.h>
  25. #include <math.h>
  26. #include <stdlib.h>
  27. #include <string.h>
  28. #include <limits.h>
  29. #include <fcntl.h>
  30. #include <io.h>
  31. #include <sys/stat.h>
  32. #include <time.h>
  33. #ifdef _MSC_VER
  34. #    define hypot _hypot
  35. #endif /* _MSC_VER */
  36. #define strncasecmp strnicmp
  37. #define strcasecmp stricmp
  38. #define NBBY 8
  39. #define OPEN_MAX 32
  40. /*
  41.  * The following define causes Tk to use its internal keysym hash table
  42.  */
  43. #define REDO_KEYSYM_LOOKUP
  44. /*
  45.  * The following macro checks to see whether there is buffered
  46.  * input data available for a stdio FILE.
  47.  */
  48. #ifdef _MSC_VER
  49. #    define TK_READ_DATA_PENDING(f) ((f)->_cnt > 0)
  50. #else /* _MSC_VER */
  51. #    define TK_READ_DATA_PENDING(f) ((f)->level > 0)
  52. #endif /* _MSC_VER */
  53. /*
  54.  * The following stubs implement various calls that don't do anything
  55.  * under Windows.
  56.  */
  57. #define TkFreeWindowId(dispPtr,w)
  58. #define TkInitXId(dispPtr)
  59. #define TkpCmapStressed(tkwin,colormap) (0)
  60. #define XFlush(display)
  61. #define XGrabServer(display)
  62. #define XUngrabServer(display)
  63. #define TkpSync(display)
  64. /*
  65.  * The following functions are implemented as macros under Windows.
  66.  */
  67. #define XFree(data) {if ((data) != NULL) ckfree((char *) (data));}
  68. #define XNoOp(display) {display->request++;}
  69. #define XSynchronize(display, bool) {display->request++;}
  70. #define XSync(display, bool) {display->request++;}
  71. #define XVisualIDFromVisual(visual) (visual->visualid)
  72. /*
  73.  * The following Tk functions are implemented as macros under Windows.
  74.  */
  75. #define TkGetNativeProlog(interp) TkGetProlog(interp)
  76. #define TkpGetPixel(p) (((((p)->red >> 8) & 0xff) 
  77. | ((p)->green & 0xff00) | (((p)->blue << 8) & 0xff0000)) | 0x20000000)
  78. /*
  79.  * These calls implement native bitmaps which are not currently 
  80.  * supported under Windows.  The macros eliminate the calls.
  81.  */
  82. #define TkpDefineNativeBitmaps()
  83. #define TkpCreateNativeBitmap(display, source) None
  84. #define TkpGetNativeAppBitmap(display, name, w, h) None
  85. /*
  86.  * Define timezone for gettimeofday.
  87.  */
  88. struct timezone {
  89.     int tz_minuteswest;
  90.     int tz_dsttime;
  91. };
  92. extern int gettimeofday(struct timeval *, struct timezone *);
  93. EXTERN void panic _ANSI_ARGS_(TCL_VARARGS(char *,format));
  94. #endif /* _WINPORT */