2 * X11 graphics driver initialisation functions
4 * Copyright 1996 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32 #include "wine/debug.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(x11drv);
36 Display *gdi_display; /* display to use for all GDI functions */
38 /* a few dynamic device caps */
39 static int log_pixels_x; /* pixels per logical inch in x direction */
40 static int log_pixels_y; /* pixels per logical inch in y direction */
41 static int horz_size; /* horz. size of screen in millimeters */
42 static int vert_size; /* vert. size of screen in millimeters */
43 static int palette_size;
44 static int device_init_done;
45 unsigned int text_caps = (TC_OP_CHARACTER | TC_OP_STROKE | TC_CP_STROKE |
46 TC_CR_ANY | TC_SA_DOUBLE | TC_SA_INTEGER |
47 TC_SA_CONTIN | TC_UA_ABLE | TC_SO_ABLE | TC_RA_ABLE);
48 /* X11R6 adds TC_SF_X_YINDEP, Xrender adds TC_VA_ABLE */
51 static const WCHAR dpi_key_name[] = {'S','o','f','t','w','a','r','e','\\','F','o','n','t','s','\0'};
52 static const WCHAR dpi_value_name[] = {'L','o','g','P','i','x','e','l','s','\0'};
55 /******************************************************************************
58 * get the dpi from the registry
60 static DWORD get_dpi( void )
65 if (RegOpenKeyW(HKEY_CURRENT_CONFIG, dpi_key_name, &hkey) == ERROR_SUCCESS)
67 DWORD type, size, new_dpi;
69 size = sizeof(new_dpi);
70 if(RegQueryValueExW(hkey, dpi_value_name, NULL, &type, (void *)&new_dpi, &size) == ERROR_SUCCESS)
72 if(type == REG_DWORD && new_dpi != 0)
80 /**********************************************************************
83 * Perform initializations needed upon creation of the first device.
85 static void device_init(void)
87 device_init_done = TRUE;
89 /* Initialize XRender */
90 X11DRV_XRender_Init();
92 palette_size = X11DRV_PALETTE_Init();
96 /* Initialize device caps */
97 log_pixels_x = log_pixels_y = get_dpi();
98 horz_size = MulDiv( screen_width, 254, log_pixels_x * 10 );
99 vert_size = MulDiv( screen_height, 254, log_pixels_y * 10 );
101 /* Initialize fonts and text caps */
102 X11DRV_FONT_Init(log_pixels_x, log_pixels_y);
105 /**********************************************************************
106 * X11DRV_GDI_Finalize
108 void X11DRV_GDI_Finalize(void)
110 X11DRV_PALETTE_Cleanup();
111 XCloseDisplay( gdi_display );
115 /**********************************************************************
118 BOOL X11DRV_CreateDC( HDC hdc, X11DRV_PDEVICE **pdev, LPCWSTR driver, LPCWSTR device,
119 LPCWSTR output, const DEVMODEW* initData )
121 X11DRV_PDEVICE *physDev;
123 if (!device_init_done) device_init();
125 physDev = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*physDev) );
126 if (!physDev) return FALSE;
131 if (GetObjectType( hdc ) == OBJ_MEMDC)
133 if (!BITMAP_stock_phys_bitmap.hbitmap)
134 BITMAP_stock_phys_bitmap.hbitmap = GetCurrentObject( hdc, OBJ_BITMAP );
135 physDev->bitmap = &BITMAP_stock_phys_bitmap;
136 physDev->drawable = BITMAP_stock_phys_bitmap.pixmap;
141 physDev->bitmap = NULL;
142 physDev->drawable = root_window;
143 physDev->depth = screen_depth;
145 physDev->region = CreateRectRgn( 0, 0, 0, 0 );
148 physDev->gc = XCreateGC( gdi_display, physDev->drawable, 0, NULL );
149 XSetGraphicsExposures( gdi_display, physDev->gc, False );
150 XSetSubwindowMode( gdi_display, physDev->gc, IncludeInferiors );
151 XFlush( gdi_display );
157 /**********************************************************************
160 BOOL X11DRV_DeleteDC( X11DRV_PDEVICE *physDev )
163 X11DRV_XRender_DeleteDC( physDev );
164 DeleteObject( physDev->region );
166 XFreeGC( gdi_display, physDev->gc );
167 while (physDev->used_visuals-- > 0)
168 XFree(physDev->visuals[physDev->used_visuals]);
170 HeapFree( GetProcessHeap(), 0, physDev );
175 /***********************************************************************
176 * GetDeviceCaps (X11DRV.@)
178 INT X11DRV_GetDeviceCaps( X11DRV_PDEVICE *physDev, INT cap )
185 return DT_RASDISPLAY;
193 return screen_height;
207 /* MSDN: Number of entries in the device's color table, if the device has
208 * a color depth of no more than 8 bits per pixel.For devices with greater
209 * color depths, -1 is returned. */
210 return (screen_depth > 8) ? -1 : (1 << screen_depth);
212 return sizeof(X11DRV_PDEVICE);
214 return (CC_CIRCLES | CC_PIE | CC_CHORD | CC_ELLIPSES | CC_WIDE |
215 CC_STYLED | CC_WIDESTYLED | CC_INTERIORS | CC_ROUNDRECT);
217 return (LC_POLYLINE | LC_MARKER | LC_POLYMARKER | LC_WIDE |
218 LC_STYLED | LC_WIDESTYLED | LC_INTERIORS);
220 return (PC_POLYGON | PC_RECTANGLE | PC_WINDPOLYGON | PC_SCANLINE |
221 PC_WIDE | PC_STYLED | PC_WIDESTYLED | PC_INTERIORS);
227 return (RC_BITBLT | RC_BANDING | RC_SCALING | RC_BITMAP64 | RC_DI_BITMAP |
228 RC_DIBTODEV | RC_BIGFONT | RC_STRETCHBLT | RC_STRETCHDIB | RC_DEVBITS |
229 (palette_size ? RC_PALETTE : 0));
231 return (SB_GRAD_RECT | SB_GRAD_TRI | SB_CONST_ALPHA | SB_PIXEL_ALPHA);
242 FIXME("(%p): CAPS1 is unimplemented, will return 0\n", physDev->hdc );
243 /* please see wingdi.h for the possible bit-flag values that need
244 to be returned. also, see
245 http://msdn.microsoft.com/library/ddkdoc/win95ddk/graphcnt_1m0p.htm */
253 case PHYSICALOFFSETX:
254 case PHYSICALOFFSETY:
263 FIXME("(%p): unsupported capability %d, will return 0\n", physDev->hdc, cap );
269 /**********************************************************************
270 * ExtEscape (X11DRV.@)
272 INT X11DRV_ExtEscape( X11DRV_PDEVICE *physDev, INT escape, INT in_count, LPCVOID in_data,
273 INT out_count, LPVOID out_data )
277 case QUERYESCSUPPORT:
280 switch (*(const INT *)in_data)
283 return DD_HAL_VERSION;
293 const DCICMD *lpCmd = in_data;
294 if (lpCmd->dwVersion != DD_VERSION) break;
295 return X11DRV_DCICommand(in_count, lpCmd, out_data);
300 if (in_data && in_count >= sizeof(enum x11drv_escape_codes))
302 switch(*(const enum x11drv_escape_codes *)in_data)
304 case X11DRV_GET_DISPLAY:
305 if (out_count >= sizeof(Display *))
307 *(Display **)out_data = gdi_display;
311 case X11DRV_GET_DRAWABLE:
312 if (out_count >= sizeof(Drawable))
314 *(Drawable *)out_data = physDev->drawable;
318 case X11DRV_GET_FONT:
319 if (out_count >= sizeof(Font))
321 fontObject* pfo = XFONT_GetFontObject( physDev->font );
322 if (pfo == NULL) return FALSE;
323 *(Font *)out_data = pfo->fs->fid;
327 case X11DRV_SET_DRAWABLE:
328 if (in_count >= sizeof(struct x11drv_escape_set_drawable))
330 const struct x11drv_escape_set_drawable *data = (const struct x11drv_escape_set_drawable *)in_data;
331 if(physDev->xrender) X11DRV_XRender_UpdateDrawable( physDev );
332 physDev->org = data->org;
333 physDev->drawable = data->drawable;
334 physDev->drawable_org = data->drawable_org;
336 XSetSubwindowMode( gdi_display, physDev->gc, data->mode );
341 case X11DRV_START_EXPOSURES:
343 XSetGraphicsExposures( gdi_display, physDev->gc, True );
345 physDev->exposures = 0;
347 case X11DRV_END_EXPOSURES:
348 if (out_count >= sizeof(HRGN))
350 HRGN hrgn = 0, tmp = 0;
353 XSetGraphicsExposures( gdi_display, physDev->gc, False );
354 if (physDev->exposures)
360 XWindowEvent( gdi_display, physDev->drawable, ~0, &event );
361 if (event.type == NoExpose) break;
362 if (event.type == GraphicsExpose)
364 int x = event.xgraphicsexpose.x - physDev->org.x;
365 int y = event.xgraphicsexpose.y - physDev->org.y;
367 TRACE( "got %d,%d %dx%d count %d\n", x, y,
368 event.xgraphicsexpose.width,
369 event.xgraphicsexpose.height,
370 event.xgraphicsexpose.count );
372 if (!tmp) tmp = CreateRectRgn( 0, 0, 0, 0 );
373 SetRectRgn( tmp, x, y,
374 x + event.xgraphicsexpose.width,
375 y + event.xgraphicsexpose.height );
376 if (hrgn) CombineRgn( hrgn, hrgn, tmp, RGN_OR );
382 if (!event.xgraphicsexpose.count) break;
386 ERR( "got unexpected event %d\n", event.type );
390 if (tmp) DeleteObject( tmp );
393 *(HRGN *)out_data = hrgn;
398 if (out_count >= sizeof(struct dce *))
400 *(struct dce **)out_data = physDev->dce;
405 if (in_count >= sizeof(struct x11drv_escape_set_dce))
407 const struct x11drv_escape_set_dce *data = (const struct x11drv_escape_set_dce *)in_data;
408 physDev->dce = data->dce;
412 case X11DRV_GET_GLX_DRAWABLE:
413 if (out_count >= sizeof(Drawable))
417 if(!physDev->bitmap->glxpixmap)
418 physDev->bitmap->glxpixmap = create_glxpixmap(physDev);
420 *(Drawable *)out_data = physDev->bitmap->glxpixmap;
423 *(Drawable *)out_data = physDev->drawable;