win32_x11.c
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:11k
源码类别:

GIS编程

开发平台:

Visual C++

  1. /* Copyright (c) Nate Robins, 1997. */
  2. /* portions Copyright (c) Mark Kilgard, 1998. */
  3. /* This program is freely distributable without licensing fees 
  4.    and is provided without guarantee or warrantee expressed or 
  5.    implied. This program is -not- in the public domain. */
  6. #include "glutint.h"
  7. /* global variable that must be set for some functions to operate
  8.    correctly. */
  9. HDC XHDC;
  10. XVisualInfo*
  11. XGetVisualInfo(Display* display, long mask, XVisualInfo* template, int* nitems)
  12. {
  13.   /* KLUDGE: this function needs XHDC to be set to the HDC currently
  14.      being operated on before it is invoked! */
  15.   PIXELFORMATDESCRIPTOR* pfds = NULL;
  16.   int i, n;
  17.   n = DescribePixelFormat(XHDC, 1, 0, NULL);
  18.   if (n > 0) {
  19.     pfds = (PIXELFORMATDESCRIPTOR*)malloc(sizeof(PIXELFORMATDESCRIPTOR) * n);
  20.     memset(pfds, 0, sizeof(PIXELFORMATDESCRIPTOR) * n);
  21.   }
  22.  
  23.   for (i = 0; i < n; i++) {
  24.     DescribePixelFormat(XHDC, i + 1, sizeof(PIXELFORMATDESCRIPTOR), &pfds[i]);
  25.   }
  26.   *nitems = n;
  27.   return pfds;
  28. }
  29. Colormap
  30. XCreateColormap(Display* display, Window root, Visual* visual, int alloc)
  31. {
  32.   /* KLUDGE: this function needs XHDC to be set to the HDC currently
  33.      being operated on before it is invoked! */
  34.   PIXELFORMATDESCRIPTOR pfd;
  35.   LOGPALETTE *logical;
  36.   HPALETTE    palette;
  37.   int n;
  38.   /* grab the pixel format */
  39.   memset(&pfd, 0, sizeof(PIXELFORMATDESCRIPTOR));
  40.   DescribePixelFormat(XHDC, GetPixelFormat(XHDC), 
  41.       sizeof(PIXELFORMATDESCRIPTOR), &pfd);
  42.   if (!(pfd.dwFlags & PFD_NEED_PALETTE ||
  43.       pfd.iPixelType == PFD_TYPE_COLORINDEX))
  44.   {
  45.     return 0;
  46.   }
  47.   n = 1 << pfd.cColorBits;
  48.   /* allocate a bunch of memory for the logical palette (assume 256
  49.      colors in a Win32 palette */
  50.   logical = (LOGPALETTE*)malloc(sizeof(LOGPALETTE) +
  51. sizeof(PALETTEENTRY) * n);
  52.   memset(logical, 0, sizeof(LOGPALETTE) + sizeof(PALETTEENTRY) * n);
  53.   /* set the entries in the logical palette */
  54.   logical->palVersion = 0x300;
  55.   logical->palNumEntries = n;
  56.   /* start with a copy of the current system palette */
  57.   GetSystemPaletteEntries(XHDC, 0, 256, &logical->palPalEntry[0]);
  58.     
  59.   if (pfd.iPixelType == PFD_TYPE_RGBA) {
  60.     int redMask = (1 << pfd.cRedBits) - 1;
  61.     int greenMask = (1 << pfd.cGreenBits) - 1;
  62.     int blueMask = (1 << pfd.cBlueBits) - 1;
  63.     int i;
  64.     /* fill in an RGBA color palette */
  65.     for (i = 0; i < n; ++i) {
  66.       logical->palPalEntry[i].peRed = 
  67. (((i >> pfd.cRedShift)   & redMask)   * 255) / redMask;
  68.       logical->palPalEntry[i].peGreen = 
  69. (((i >> pfd.cGreenShift) & greenMask) * 255) / greenMask;
  70. logical->palPalEntry[i].peBlue = 
  71. (((i >> pfd.cBlueShift)  & blueMask)  * 255) / blueMask;
  72.       logical->palPalEntry[i].peFlags = 0;
  73.     }
  74.   }
  75.   palette = CreatePalette(logical);
  76.   free(logical);
  77.   SelectPalette(XHDC, palette, FALSE);
  78.   RealizePalette(XHDC);
  79.   return palette;
  80. }
  81. void
  82. XAllocColorCells(Display* display, Colormap colormap, Bool contig, 
  83.  unsigned long plane_masks_return[], unsigned int nplanes,
  84.  unsigned long pixels_return[], unsigned int npixels)
  85. {
  86.   /* NOP -- we did all the allocating in XCreateColormap! */
  87. }
  88. void
  89. XStoreColor(Display* display, Colormap colormap, XColor* color)
  90. {
  91.   /* KLUDGE: set XHDC to 0 if the palette should NOT be realized after
  92.      setting the color.  set XHDC to the correct HDC if it should. */
  93.   PALETTEENTRY pe;
  94.   /* X11 stores color from 0-65535, Win32 expects them to be 0-256, so
  95.      twiddle the bits ( / 256). */
  96.   pe.peRed = color->red / 256;
  97.   pe.peGreen = color->green / 256;
  98.   pe.peBlue = color->blue / 256;
  99.   /* make sure we use this flag, otherwise the colors might get mapped
  100.      to another place in the colormap, and when we glIndex() that
  101.      color, it may have moved (argh!!) */
  102.   pe.peFlags = PC_NOCOLLAPSE;
  103.   /* the pixel field of the XColor structure is the index into the
  104.      colormap */
  105.   SetPaletteEntries(colormap, color->pixel, 1, &pe);
  106.   if (XHDC) {
  107.     UnrealizeObject(colormap);
  108.     SelectPalette(XHDC, colormap, FALSE);
  109.     RealizePalette(XHDC);
  110.   }
  111. }
  112. void
  113. XSetWindowColormap(Display* display, Window window, Colormap colormap)
  114. {
  115.   HDC hdc = GetDC(window);
  116.   /* if the third parameter is FALSE, the logical colormap is copied
  117.      into the device palette when the application is in the
  118.      foreground, if it is TRUE, the colors are mapped into the current
  119.      palette in the best possible way. */
  120.   SelectPalette(hdc, colormap, FALSE);
  121.   RealizePalette(hdc);
  122.   /* note that we don't have to release the DC, since our window class
  123.      uses the WC_OWNDC flag! */
  124. }
  125. Bool
  126. XTranslateCoordinates(Display *display, Window src, Window dst, 
  127.       int src_x, int src_y, 
  128.       int* dest_x_return, int* dest_y_return,
  129.       Window* child_return)
  130. {
  131.   /* KLUDGE: this isn't really a translate coordinates into some other
  132.   windows coordinate system...it only translates coordinates into the
  133.   root window (screen) coordinate system. */
  134.   POINT point;
  135.   point.x = src_x;
  136.   point.y = src_y;
  137.   ClientToScreen(src, &point);
  138.   *dest_x_return = point.x;
  139.   *dest_y_return = point.y;
  140.   /* just to make compilers happy...we don't use the return value. */
  141.   return True;
  142. }
  143. Status
  144. XGetGeometry(Display* display, Window window, Window* root_return, 
  145.      int* x_return, int* y_return, 
  146.      unsigned int* width_return, unsigned int* height_return,
  147.      unsigned int *border_width_return, unsigned int* depth_return)
  148. {
  149.   /* KLUDGE: doesn't return the border_width or depth or root, x & y
  150.      are in screen coordinates. */
  151.   RECT rect;
  152.   POINT point;
  153.   GetClientRect(window, &rect);
  154.   point.x = 0;
  155.   point.y = 0;
  156.   ClientToScreen(window, &point);
  157.   *x_return = point.x;
  158.   *y_return = point.y;
  159.   *width_return = rect.right;
  160.   *height_return = rect.bottom;
  161.   /* just to make compilers happy...we don't use the return value. */
  162.   return 1;  
  163. }
  164. int
  165. DisplayWidthMM(Display* display, int screen)
  166. {
  167.   int width;
  168.   HWND hwnd = GetDesktopWindow();
  169.   HDC hdc = GetDC(hwnd);
  170.   
  171.   width = GetDeviceCaps(hdc, HORZSIZE);
  172.   /* make sure to release this DC (it's the desktops, not ours) */
  173.   ReleaseDC(hwnd, hdc);
  174.   return width;
  175. }
  176. int
  177. DisplayHeightMM(Display* display, int screen)
  178. {
  179.   int height;
  180.   HWND hwnd = GetDesktopWindow();
  181.   HDC hdc = GetDC(hwnd);
  182.   
  183.   height = GetDeviceCaps(hdc, VERTSIZE);
  184.   /* make sure to release this DC (it's the desktops, not ours) */
  185.   ReleaseDC(hwnd, hdc);
  186.   return height;
  187. }
  188. void
  189. XWarpPointer(Display* display, Window src, Window dst, 
  190.      int src_x, int src_y, int src_width, int src_height,
  191.      int dst_x, int dst_y)
  192. {
  193.   /* KLUDGE: this isn't really a warp pointer into some other windows
  194.   coordinate system...it only warps the pointer into the root window
  195.   (screen) coordinate system. */
  196.   POINT point;
  197.   point.x = dst_x;
  198.   point.y = dst_y;
  199.   ClientToScreen(dst, &point);
  200.   SetCursorPos(point.x, point.y);
  201. }
  202. int
  203. XPending(Display* display)
  204. {
  205.   /* similar functionality...I don't think that it is exact, but this
  206.      will have to do. */
  207.   MSG msg;
  208.   return PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE);
  209. }
  210. /* the following function was stolen from the X sources as indicated. */
  211. /* Copyright  Massachusetts Institute of Technology  1985, 1986, 1987 */
  212. /* $XConsortium: XParseGeom.c,v 11.18 91/02/21 17:23:05 rws Exp $ */
  213. /*
  214. Permission to use, copy, modify, distribute, and sell this software and its
  215. documentation for any purpose is hereby granted without fee, provided that
  216. the above copyright notice appear in all copies and that both that
  217. copyright notice and this permission notice appear in supporting
  218. documentation, and that the name of M.I.T. not be used in advertising or
  219. publicity pertaining to distribution of the software without specific,
  220. written prior permission.  M.I.T. makes no representations about the
  221. suitability of this software for any purpose.  It is provided "as is"
  222. without express or implied warranty.
  223. */
  224. /*
  225.  *    XParseGeometry parses strings of the form
  226.  *   "=<width>x<height>{+-}<xoffset>{+-}<yoffset>", where
  227.  *   width, height, xoffset, and yoffset are unsigned integers.
  228.  *   Example:  "=80x24+300-49"
  229.  *   The equal sign is optional.
  230.  *   It returns a bitmask that indicates which of the four values
  231.  *   were actually found in the string.  For each value found,
  232.  *   the corresponding argument is updated;  for each value
  233.  *   not found, the corresponding argument is left unchanged. 
  234.  */
  235. static int
  236. ReadInteger(char *string, char **NextString)
  237. {
  238.     register int Result = 0;
  239.     int Sign = 1;
  240.     
  241.     if (*string == '+')
  242. string++;
  243.     else if (*string == '-')
  244.     {
  245. string++;
  246. Sign = -1;
  247.     }
  248.     for (; (*string >= '0') && (*string <= '9'); string++)
  249.     {
  250. Result = (Result * 10) + (*string - '0');
  251.     }
  252.     *NextString = string;
  253.     if (Sign >= 0)
  254. return (Result);
  255.     else
  256. return (-Result);
  257. }
  258. int XParseGeometry(char *string, int *x, int *y, unsigned int *width, unsigned int *height)
  259. {
  260. int mask = NoValue;
  261. register char *strind;
  262. unsigned int tempWidth, tempHeight;
  263. int tempX, tempY;
  264. char *nextCharacter;
  265. if ( (string == NULL) || (*string == '')) return(mask);
  266. if (*string == '=')
  267. string++;  /* ignore possible '=' at beg of geometry spec */
  268. strind = (char *)string;
  269. if (*strind != '+' && *strind != '-' && *strind != 'x') {
  270. tempWidth = ReadInteger(strind, &nextCharacter);
  271. if (strind == nextCharacter) 
  272.     return (0);
  273. strind = nextCharacter;
  274. mask |= WidthValue;
  275. }
  276. if (*strind == 'x' || *strind == 'X') {
  277. strind++;
  278. tempHeight = ReadInteger(strind, &nextCharacter);
  279. if (strind == nextCharacter)
  280.     return (0);
  281. strind = nextCharacter;
  282. mask |= HeightValue;
  283. }
  284. if ((*strind == '+') || (*strind == '-')) {
  285. if (*strind == '-') {
  286.    strind++;
  287. tempX = -ReadInteger(strind, &nextCharacter);
  288. if (strind == nextCharacter)
  289.     return (0);
  290. strind = nextCharacter;
  291. mask |= XNegative;
  292. }
  293. else
  294. { strind++;
  295. tempX = ReadInteger(strind, &nextCharacter);
  296. if (strind == nextCharacter)
  297.     return(0);
  298. strind = nextCharacter;
  299. }
  300. mask |= XValue;
  301. if ((*strind == '+') || (*strind == '-')) {
  302. if (*strind == '-') {
  303. strind++;
  304. tempY = -ReadInteger(strind, &nextCharacter);
  305. if (strind == nextCharacter)
  306.          return(0);
  307. strind = nextCharacter;
  308. mask |= YNegative;
  309. }
  310. else
  311. {
  312. strind++;
  313. tempY = ReadInteger(strind, &nextCharacter);
  314. if (strind == nextCharacter)
  315.          return(0);
  316. strind = nextCharacter;
  317. }
  318. mask |= YValue;
  319. }
  320. }
  321. /* If strind isn't at the end of the string the it's an invalid
  322. geometry specification. */
  323. if (*strind != '') return (0);
  324. if (mask & XValue)
  325.     *x = tempX;
  326.   if (mask & YValue)
  327.     *y = tempY;
  328. if (mask & WidthValue)
  329.             *width = tempWidth;
  330. if (mask & HeightValue)
  331.             *height = tempHeight;
  332. return (mask);
  333. }