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 const struct tagDC_FUNCS *X11DRV_DC_Funcs = NULL; /* hack */
38 Display *gdi_display; /* display to use for all GDI functions */
40 /* a few dynamic device caps */
41 static int log_pixels_x; /* pixels per logical inch in x direction */
42 static int log_pixels_y; /* pixels per logical inch in y direction */
43 static int horz_size; /* horz. size of screen in millimeters */
44 static int vert_size; /* vert. size of screen in millimeters */
45 static int palette_size;
46 unsigned int text_caps = (TC_OP_CHARACTER | TC_OP_STROKE | TC_CP_STROKE |
47 TC_CR_ANY | TC_SA_DOUBLE | TC_SA_INTEGER |
48 TC_SA_CONTIN | TC_UA_ABLE | TC_SO_ABLE | TC_RA_ABLE);
49 /* X11R6 adds TC_SF_X_YINDEP, Xrender adds TC_VA_ABLE */
51 /**********************************************************************
52 * X11DRV_GDI_Initialize
54 BOOL X11DRV_GDI_Initialize( Display *display )
56 Screen *screen = DefaultScreenOfDisplay(display);
58 gdi_display = display;
60 palette_size = X11DRV_PALETTE_Init();
62 if (!X11DRV_BITMAP_Init()) return FALSE;
64 /* Initialize XRender */
65 X11DRV_XRender_Init();
67 /* Initialize fonts and text caps */
69 log_pixels_x = MulDiv( WidthOfScreen(screen), 254, WidthMMOfScreen(screen) * 10 );
70 log_pixels_y = MulDiv( HeightOfScreen(screen), 254, HeightMMOfScreen(screen) * 10 );
71 X11DRV_FONT_Init( &log_pixels_x, &log_pixels_y );
72 horz_size = MulDiv( screen_width, 254, log_pixels_x * 10 );
73 vert_size = MulDiv( screen_height, 254, log_pixels_y * 10 );
77 /**********************************************************************
80 void X11DRV_GDI_Finalize(void)
82 X11DRV_PALETTE_Cleanup();
83 XCloseDisplay( gdi_display );
87 /**********************************************************************
90 BOOL X11DRV_CreateDC( DC *dc, X11DRV_PDEVICE **pdev, LPCWSTR driver, LPCWSTR device,
91 LPCWSTR output, const DEVMODEW* initData )
93 X11DRV_PDEVICE *physDev;
95 if (!X11DRV_DC_Funcs) X11DRV_DC_Funcs = dc->funcs; /* hack */
97 physDev = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*physDev) );
99 ERR("Can't allocate physDev\n");
103 physDev->hdc = dc->hSelf;
104 physDev->dc = dc; /* FIXME */
106 if (GetObjectType( dc->hSelf ) == OBJ_MEMDC)
108 physDev->drawable = BITMAP_stock_pixmap;
113 physDev->drawable = root_window;
114 physDev->depth = screen_depth;
116 physDev->org.x = physDev->org.y = 0;
117 physDev->drawable_org.x = physDev->drawable_org.y = 0;
119 physDev->current_pf = 0;
120 physDev->used_visuals = 0;
123 physDev->gc = XCreateGC( gdi_display, physDev->drawable, 0, NULL );
124 XSetGraphicsExposures( gdi_display, physDev->gc, False );
125 XSetSubwindowMode( gdi_display, physDev->gc, IncludeInferiors );
126 XFlush( gdi_display );
132 /**********************************************************************
135 BOOL X11DRV_DeleteDC( X11DRV_PDEVICE *physDev )
138 X11DRV_XRender_DeleteDC( physDev );
140 XFreeGC( gdi_display, physDev->gc );
141 while (physDev->used_visuals-- > 0)
142 XFree(physDev->visuals[physDev->used_visuals]);
144 HeapFree( GetProcessHeap(), 0, physDev );
149 /***********************************************************************
150 * GetDeviceCaps (X11DRV.@)
152 INT X11DRV_GetDeviceCaps( X11DRV_PDEVICE *physDev, INT cap )
159 return DT_RASDISPLAY;
167 return screen_height;
181 /* MSDN: Number of entries in the device's color table, if the device has
182 * a color depth of no more than 8 bits per pixel.For devices with greater
183 * color depths, -1 is returned. */
184 return (screen_depth > 8) ? -1 : (1 << screen_depth);
186 return sizeof(X11DRV_PDEVICE);
188 return (CC_CIRCLES | CC_PIE | CC_CHORD | CC_ELLIPSES | CC_WIDE |
189 CC_STYLED | CC_WIDESTYLED | CC_INTERIORS | CC_ROUNDRECT);
191 return (LC_POLYLINE | LC_MARKER | LC_POLYMARKER | LC_WIDE |
192 LC_STYLED | LC_WIDESTYLED | LC_INTERIORS);
194 return (PC_POLYGON | PC_RECTANGLE | PC_WINDPOLYGON | PC_SCANLINE |
195 PC_WIDE | PC_STYLED | PC_WIDESTYLED | PC_INTERIORS);
201 return (RC_BITBLT | RC_BANDING | RC_SCALING | RC_BITMAP64 | RC_DI_BITMAP |
202 RC_DIBTODEV | RC_BIGFONT | RC_STRETCHBLT | RC_STRETCHDIB | RC_DEVBITS |
203 (palette_size ? RC_PALETTE : 0));
214 FIXME("(%p): CAPS1 is unimplemented, will return 0\n", physDev->hdc );
215 /* please see wingdi.h for the possible bit-flag values that need
216 to be returned. also, see
217 http://msdn.microsoft.com/library/ddkdoc/win95ddk/graphcnt_1m0p.htm */
225 case PHYSICALOFFSETX:
226 case PHYSICALOFFSETY:
235 FIXME("(%p): unsupported capability %d, will return 0\n", physDev->hdc, cap );
241 /**********************************************************************
242 * ExtEscape (X11DRV.@)
244 INT X11DRV_ExtEscape( X11DRV_PDEVICE *physDev, INT escape, INT in_count, LPCVOID in_data,
245 INT out_count, LPVOID out_data )
249 case QUERYESCSUPPORT:
252 switch (*(INT *)in_data)
255 return DD_HAL_VERSION;
265 const DCICMD *lpCmd = in_data;
266 if (lpCmd->dwVersion != DD_VERSION) break;
267 return X11DRV_DCICommand(in_count, lpCmd, out_data);
272 if (in_data && in_count >= sizeof(enum x11drv_escape_codes))
274 switch(*(enum x11drv_escape_codes *)in_data)
276 case X11DRV_GET_DISPLAY:
277 if (out_count >= sizeof(Display *))
279 *(Display **)out_data = gdi_display;
283 case X11DRV_GET_DRAWABLE:
284 if (out_count >= sizeof(Drawable))
286 *(Drawable *)out_data = physDev->drawable;
290 case X11DRV_GET_FONT:
291 if (out_count >= sizeof(Font))
293 fontObject* pfo = XFONT_GetFontObject( physDev->font );
294 if (pfo == NULL) return FALSE;
295 *(Font *)out_data = pfo->fs->fid;
299 case X11DRV_SET_DRAWABLE:
300 if (in_count >= sizeof(struct x11drv_escape_set_drawable))
302 struct x11drv_escape_set_drawable *data = (struct x11drv_escape_set_drawable *)in_data;
303 if(physDev->xrender) X11DRV_XRender_UpdateDrawable( physDev );
304 physDev->org = data->org;
305 physDev->drawable = data->drawable;
306 physDev->drawable_org = data->drawable_org;
308 XSetSubwindowMode( gdi_display, physDev->gc, data->mode );
313 case X11DRV_START_EXPOSURES:
315 XSetGraphicsExposures( gdi_display, physDev->gc, True );
317 physDev->exposures = 0;
319 case X11DRV_END_EXPOSURES:
320 if (out_count >= sizeof(HRGN))
322 HRGN hrgn = 0, tmp = 0;
325 XSetGraphicsExposures( gdi_display, physDev->gc, False );
326 if (physDev->exposures)
332 XWindowEvent( gdi_display, physDev->drawable, ~0, &event );
333 if (event.type == NoExpose) break;
334 if (event.type == GraphicsExpose)
336 int x = event.xgraphicsexpose.x - physDev->org.x;
337 int y = event.xgraphicsexpose.y - physDev->org.y;
339 TRACE( "got %d,%d %dx%d count %d\n", x, y,
340 event.xgraphicsexpose.width,
341 event.xgraphicsexpose.height,
342 event.xgraphicsexpose.count );
344 if (!tmp) tmp = CreateRectRgn( 0, 0, 0, 0 );
345 SetRectRgn( tmp, x, y,
346 x + event.xgraphicsexpose.width,
347 y + event.xgraphicsexpose.height );
348 if (hrgn) CombineRgn( hrgn, hrgn, tmp, RGN_OR );
354 if (!event.xgraphicsexpose.count) break;
358 ERR( "got unexpected event %d\n", event.type );
362 if (tmp) DeleteObject( tmp );
365 *(HRGN *)out_data = hrgn;