blob: 470b3346ac8e77b7f536e9e2fb78968bf3e38e1f [file] [log] [blame]
Alexandre Julliard0e270f41996-08-24 18:26:35 +00001/*
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +00002 * X11 driver definitions
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00003 *
4 * Copyright 1996 Alexandre Julliard
5 * Copyright 1999 Patrik Stridvall
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Alexandre Julliard0e270f41996-08-24 18:26:35 +000020 */
21
22#ifndef __WINE_X11DRV_H
23#define __WINE_X11DRV_H
24
Vincent BĂ©ron9a624912002-05-31 23:06:46 +000025#ifndef __WINE_CONFIG_H
26# error You must include config.h to use this header
27#endif
Patrik Stridvall151170c1998-12-26 12:00:43 +000028
Patrik Stridvall151170c1998-12-26 12:00:43 +000029#include <X11/Xlib.h>
30#include <X11/Xresource.h>
31#include <X11/Xutil.h>
32#include <X11/Xatom.h>
Patrik Stridvall3d511612000-04-25 19:55:35 +000033#ifdef HAVE_LIBXXSHM
34# include <X11/extensions/XShm.h>
35#endif /* defined(HAVE_LIBXXSHM) */
Patrik Stridvalle35d6361998-12-07 09:13:40 +000036
Jim Aston2e1cafa1999-03-14 16:35:05 +000037#include "windef.h"
Alexandre Julliard2b5d5642000-06-08 04:57:22 +000038#include "winbase.h"
39#include "gdi.h"
40#include "user.h"
Alexandre Julliarddc4fe772001-06-04 21:55:17 +000041#include "win.h"
Alexandre Julliard43230042001-05-16 19:52:29 +000042#include "thread.h"
Patrik Stridvall8d8703c1999-02-04 14:05:38 +000043
Lionel Ulmerbedf40b2000-05-12 20:18:14 +000044#define MAX_PIXELFORMATS 8
Karl Lessard41875791999-09-03 16:49:17 +000045
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +000046struct tagBITMAPOBJ;
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +000047struct tagCURSORICONINFO;
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +000048struct tagPALETTEOBJ;
Veksler Michaele94e3541999-03-22 12:41:26 +000049struct tagWINDOWPOS;
Alexandre Julliard0e270f41996-08-24 18:26:35 +000050
51 /* X physical pen */
52typedef struct
53{
54 int style;
Alexandre Julliard44ed71f1997-12-21 19:17:50 +000055 int endcap;
56 int linejoin;
Alexandre Julliard0e270f41996-08-24 18:26:35 +000057 int pixel;
58 int width;
59 char * dashes;
60 int dash_len;
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +000061 int type; /* GEOMETRIC || COSMETIC */
Alexandre Julliard0e270f41996-08-24 18:26:35 +000062} X_PHYSPEN;
63
64 /* X physical brush */
65typedef struct
66{
67 int style;
68 int fillStyle;
69 int pixel;
70 Pixmap pixmap;
71} X_PHYSBRUSH;
72
73 /* X physical font */
Alexandre Julliarda3960291999-02-26 11:11:13 +000074typedef UINT X_PHYSFONT;
Alexandre Julliard0e270f41996-08-24 18:26:35 +000075
Huw D M Davies6f7fc502002-01-29 03:07:21 +000076typedef struct tagXRENDERINFO *XRENDERINFO;
77
Alexandre Julliard0e270f41996-08-24 18:26:35 +000078 /* X physical device */
79typedef struct
80{
Alexandre Julliarde21c15e2002-03-28 22:22:05 +000081 HDC hdc;
82 DC *dc; /* direct pointer to DC, should go away */
Alexandre Julliard0e270f41996-08-24 18:26:35 +000083 GC gc; /* X Window GC */
84 Drawable drawable;
Alexandre Julliardd3cab182002-06-10 22:52:47 +000085 POINT org; /* DC origin relative to drawable */
86 POINT drawable_org; /* Origin of drawable relative to screen */
Alexandre Julliard0e270f41996-08-24 18:26:35 +000087 X_PHYSFONT font;
88 X_PHYSPEN pen;
89 X_PHYSBRUSH brush;
Alexandre Julliarda0d77311998-09-13 16:32:00 +000090 int backgroundPixel;
91 int textPixel;
Alexandre Julliard6d027e12001-06-11 20:24:57 +000092 int exposures; /* count of graphics exposures operations */
Lionel Ulmerbedf40b2000-05-12 20:18:14 +000093 XVisualInfo *visuals[MAX_PIXELFORMATS];
94 int used_visuals;
95 int current_pf;
Huw D M Davies6f7fc502002-01-29 03:07:21 +000096 XRENDERINFO xrender;
Alexandre Julliard0e270f41996-08-24 18:26:35 +000097} X11DRV_PDEVICE;
98
Huw D M Davies87f87bf1998-10-28 09:53:53 +000099
Huw D M Davies87f87bf1998-10-28 09:53:53 +0000100 /* GCs used for B&W and color bitmap operations */
101extern GC BITMAP_monoGC, BITMAP_colorGC;
Alexandre Julliardd8a92442002-05-31 18:43:22 +0000102extern Pixmap BITMAP_stock_pixmap; /* pixmap for the default stock bitmap */
Huw D M Davies87f87bf1998-10-28 09:53:53 +0000103
104#define BITMAP_GC(bmp) \
105 (((bmp)->bitmap.bmBitsPixel == 1) ? BITMAP_monoGC : BITMAP_colorGC)
106
Andreas Mohrc941eff2000-09-22 22:37:56 +0000107extern unsigned int X11DRV_server_startticks;
108
Alexandre Julliard0e270f41996-08-24 18:26:35 +0000109/* Wine driver X11 functions */
110
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000111extern BOOL X11DRV_BitBlt( X11DRV_PDEVICE *physDevDst, INT xDst, INT yDst,
112 INT width, INT height, X11DRV_PDEVICE *physDevSrc,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000113 INT xSrc, INT ySrc, DWORD rop );
Alexandre Julliardab246a62002-04-14 19:42:43 +0000114extern BOOL X11DRV_EnumDeviceFonts( X11DRV_PDEVICE *physDev, LPLOGFONTW plf,
Huw D M Davies2aa85ee2001-02-14 22:56:38 +0000115 DEVICEFONTENUMPROC dfeproc, LPARAM lp );
Alexandre Julliardd8a92442002-05-31 18:43:22 +0000116extern LONG X11DRV_GetBitmapBits( HBITMAP hbitmap, void *bits, LONG count );
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000117extern BOOL X11DRV_GetCharWidth( X11DRV_PDEVICE *physDev, UINT firstChar,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000118 UINT lastChar, LPINT buffer );
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000119extern BOOL X11DRV_GetDCOrgEx( X11DRV_PDEVICE *physDev, LPPOINT lpp );
120extern BOOL X11DRV_GetTextExtentPoint( X11DRV_PDEVICE *physDev, LPCWSTR str,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000121 INT count, LPSIZE size );
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000122extern BOOL X11DRV_GetTextMetrics(X11DRV_PDEVICE *physDev, TEXTMETRICW *metrics);
123extern BOOL X11DRV_PatBlt( X11DRV_PDEVICE *physDev, INT left, INT top,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000124 INT width, INT height, DWORD rop );
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000125extern BOOL X11DRV_StretchBlt( X11DRV_PDEVICE *physDevDst, INT xDst, INT yDst,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000126 INT widthDst, INT heightDst,
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000127 X11DRV_PDEVICE *physDevSrc, INT xSrc, INT ySrc,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000128 INT widthSrc, INT heightSrc, DWORD rop );
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000129extern BOOL X11DRV_LineTo( X11DRV_PDEVICE *physDev, INT x, INT y);
130extern BOOL X11DRV_Arc( X11DRV_PDEVICE *physDev, INT left, INT top, INT right,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000131 INT bottom, INT xstart, INT ystart, INT xend,
132 INT yend );
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000133extern BOOL X11DRV_Pie( X11DRV_PDEVICE *physDev, INT left, INT top, INT right,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000134 INT bottom, INT xstart, INT ystart, INT xend,
135 INT yend );
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000136extern BOOL X11DRV_Chord( X11DRV_PDEVICE *physDev, INT left, INT top,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000137 INT right, INT bottom, INT xstart,
138 INT ystart, INT xend, INT yend );
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000139extern BOOL X11DRV_Ellipse( X11DRV_PDEVICE *physDev, INT left, INT top,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000140 INT right, INT bottom );
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000141extern BOOL X11DRV_Rectangle(X11DRV_PDEVICE *physDev, INT left, INT top,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000142 INT right, INT bottom);
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000143extern BOOL X11DRV_RoundRect( X11DRV_PDEVICE *physDev, INT left, INT top,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000144 INT right, INT bottom, INT ell_width,
145 INT ell_height );
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000146extern COLORREF X11DRV_SetPixel( X11DRV_PDEVICE *physDev, INT x, INT y,
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000147 COLORREF color );
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000148extern COLORREF X11DRV_GetPixel( X11DRV_PDEVICE *physDev, INT x, INT y);
149extern BOOL X11DRV_PaintRgn( X11DRV_PDEVICE *physDev, HRGN hrgn );
150extern BOOL X11DRV_Polyline( X11DRV_PDEVICE *physDev,const POINT* pt,INT count);
151extern BOOL X11DRV_Polygon( X11DRV_PDEVICE *physDev, const POINT* pt, INT count );
Vincent BĂ©ron9a624912002-05-31 23:06:46 +0000152extern BOOL X11DRV_PolyPolygon( X11DRV_PDEVICE *physDev, const POINT* pt,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000153 const INT* counts, UINT polygons);
Vincent BĂ©ron9a624912002-05-31 23:06:46 +0000154extern BOOL X11DRV_PolyPolyline( X11DRV_PDEVICE *physDev, const POINT* pt,
François Gouget241c7301998-10-28 10:47:09 +0000155 const DWORD* counts, DWORD polylines);
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000156
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000157extern COLORREF X11DRV_SetBkColor( X11DRV_PDEVICE *physDev, COLORREF color );
158extern COLORREF X11DRV_SetTextColor( X11DRV_PDEVICE *physDev, COLORREF color );
159extern BOOL X11DRV_ExtFloodFill( X11DRV_PDEVICE *physDev, INT x, INT y,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000160 COLORREF color, UINT fillType );
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000161extern BOOL X11DRV_ExtTextOut( X11DRV_PDEVICE *physDev, INT x, INT y,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000162 UINT flags, const RECT *lprect,
Huw D M Daviesc5539241999-12-26 00:47:03 +0000163 LPCWSTR str, UINT count, const INT *lpDx );
Alexandre Julliardd8a92442002-05-31 18:43:22 +0000164extern LONG X11DRV_SetBitmapBits( HBITMAP hbitmap, const void *bits, LONG count );
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000165extern INT X11DRV_SetDIBitsToDevice( X11DRV_PDEVICE *physDev, INT xDest,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000166 INT yDest, DWORD cx, DWORD cy,
167 INT xSrc, INT ySrc,
168 UINT startscan, UINT lines,
Huw D M Davies87f87bf1998-10-28 09:53:53 +0000169 LPCVOID bits, const BITMAPINFO *info,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000170 UINT coloruse );
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000171extern BOOL X11DRV_GetDeviceGammaRamp( X11DRV_PDEVICE *physDev, LPVOID ramp );
172extern BOOL X11DRV_SetDeviceGammaRamp( X11DRV_PDEVICE *physDev, LPVOID ramp );
Huw D M Daviesd6a91b71998-12-02 10:29:04 +0000173
Lionel Ulmerbedf40b2000-05-12 20:18:14 +0000174/* OpenGL / X11 driver functions */
Michael Karcherea9cf5c2002-04-08 22:43:58 +0000175extern int X11DRV_ChoosePixelFormat(X11DRV_PDEVICE *physDev,
176 const PIXELFORMATDESCRIPTOR *pppfd);
Vincent BĂ©ron9a624912002-05-31 23:06:46 +0000177extern int X11DRV_DescribePixelFormat(X11DRV_PDEVICE *physDev,
Michael Karcherea9cf5c2002-04-08 22:43:58 +0000178 int iPixelFormat, UINT nBytes,
179 PIXELFORMATDESCRIPTOR *ppfd);
180extern int X11DRV_GetPixelFormat(X11DRV_PDEVICE *physDev);
181extern BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev);
Lionel Ulmerbedf40b2000-05-12 20:18:14 +0000182
Alexandre Julliard349a9531997-02-02 19:01:52 +0000183/* X11 driver internal functions */
184
Alexandre Julliarda3960291999-02-26 11:11:13 +0000185extern BOOL X11DRV_BITMAP_Init(void);
Huw D M Daviese1e51f92002-04-03 21:18:50 +0000186extern void X11DRV_FONT_Init( int *log_pixels_x, int *log_pixels_y );
Alexandre Julliard349a9531997-02-02 19:01:52 +0000187
Huw D M Davies87f87bf1998-10-28 09:53:53 +0000188struct tagBITMAPOBJ;
189extern XImage *X11DRV_BITMAP_GetXImage( const struct tagBITMAPOBJ *bmp );
Alexandre Julliardc5597352001-05-11 00:17:47 +0000190extern XImage *X11DRV_DIB_CreateXImage( int width, int height, int depth );
Noel Borthwickd05b7be1999-09-20 15:42:47 +0000191extern HBITMAP X11DRV_BITMAP_CreateBitmapHeaderFromPixmap(Pixmap pixmap);
192extern HGLOBAL X11DRV_DIB_CreateDIBFromPixmap(Pixmap pixmap, HDC hdc, BOOL bDeletePixmap);
193extern HBITMAP X11DRV_BITMAP_CreateBitmapFromPixmap(Pixmap pixmap, BOOL bDeletePixmap);
194extern Pixmap X11DRV_DIB_CreatePixmapFromDIB( HGLOBAL hPackedDIB, HDC hdc );
195extern Pixmap X11DRV_BITMAP_CreatePixmapFromBitmap( HBITMAP hBmp, HDC hdc );
Huw D M Davies87f87bf1998-10-28 09:53:53 +0000196
Alexandre Julliard07439cd2002-05-25 22:16:12 +0000197extern RGNDATA *X11DRV_GetRegionData( HRGN hrgn, HDC hdc_lptodp );
Alexandre Julliardd3cab182002-06-10 22:52:47 +0000198extern void X11DRV_SetDrawable( HDC hdc, Drawable drawable, int mode, const POINT *org,
199 const POINT *drawable_org );
Alexandre Julliarddc4fe772001-06-04 21:55:17 +0000200extern void X11DRV_StartGraphicsExposures( HDC hdc );
201extern void X11DRV_EndGraphicsExposures( HDC hdc, HRGN hrgn );
202
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000203extern BOOL X11DRV_SetupGCForPatBlt( X11DRV_PDEVICE *physDev, GC gc, BOOL fMapColors );
204extern BOOL X11DRV_SetupGCForBrush( X11DRV_PDEVICE *physDev );
205extern BOOL X11DRV_SetupGCForPen( X11DRV_PDEVICE *physDev );
206extern BOOL X11DRV_SetupGCForText( X11DRV_PDEVICE *physDev );
Huw D M Davies2bd3acf1998-11-22 17:45:06 +0000207
208extern const int X11DRV_XROPfunction[];
209
Alexandre Julliarda845b881998-06-01 10:44:35 +0000210extern void _XInitImageFuncPtrs(XImage *);
211
Huw D M Davies6f7fc502002-01-29 03:07:21 +0000212extern BOOL X11DRV_XRender_Installed;
213extern void X11DRV_XRender_Init(void);
214extern void X11DRV_XRender_Finalize(void);
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000215extern BOOL X11DRV_XRender_SelectFont(X11DRV_PDEVICE*, HFONT);
216extern void X11DRV_XRender_DeleteDC(X11DRV_PDEVICE*);
217extern BOOL X11DRV_XRender_ExtTextOut(X11DRV_PDEVICE *physDev, INT x, INT y, UINT flags,
Huw D M Davies6f7fc502002-01-29 03:07:21 +0000218 const RECT *lprect, LPCWSTR wstr,
219 UINT count, const INT *lpDx);
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000220extern void X11DRV_XRender_UpdateDrawable(X11DRV_PDEVICE *physDev);
Huw D M Davies6f7fc502002-01-29 03:07:21 +0000221
Huw D M Davies91d16081998-11-06 11:03:00 +0000222/* exported dib functions for now */
223
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +0000224/* Additional info for DIB section objects */
225typedef struct
226{
227 /* Windows DIB section */
228 DIBSECTION dibSection;
229
230 /* Mapping status */
Alexandre Julliard447ddfd2000-12-06 20:15:43 +0000231 int status, p_status;
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +0000232
233 /* Color map info */
234 int nColorMap;
235 int *colorMap;
236
237 /* Cached XImage */
238 XImage *image;
239
Dimitrie O. Paun470acf832000-11-26 03:59:20 +0000240#ifdef HAVE_LIBXXSHM
Karl Lessard41875791999-09-03 16:49:17 +0000241 /* Shared memory segment info */
242 XShmSegmentInfo shminfo;
Dimitrie O. Paun470acf832000-11-26 03:59:20 +0000243#endif
Karl Lessard41875791999-09-03 16:49:17 +0000244
Alexandre Julliard447ddfd2000-12-06 20:15:43 +0000245 /* Aux buffer access function */
246 void (*copy_aux)(void*ctx, int req);
247 void *aux_ctx;
248
249 /* GDI access lock */
250 CRITICAL_SECTION lock;
251
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +0000252} X11DRV_DIBSECTION;
253
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000254extern int *X11DRV_DIB_BuildColorMap( X11DRV_PDEVICE *physDev, WORD coloruse,
Huw D M Davies91d16081998-11-06 11:03:00 +0000255 WORD depth, const BITMAPINFO *info,
256 int *nColors );
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000257extern INT X11DRV_CoerceDIBSection(X11DRV_PDEVICE *physDev,INT,BOOL);
258extern INT X11DRV_LockDIBSection(X11DRV_PDEVICE *physDev,INT,BOOL);
259extern void X11DRV_UnlockDIBSection(X11DRV_PDEVICE *physDev,BOOL);
Ove Kaaven6cba8bf2001-04-16 19:05:37 +0000260extern INT X11DRV_CoerceDIBSection2(HBITMAP bmp,INT,BOOL);
Alexandre Julliard447ddfd2000-12-06 20:15:43 +0000261extern INT X11DRV_LockDIBSection2(HBITMAP bmp,INT,BOOL);
262extern void X11DRV_UnlockDIBSection2(HBITMAP bmp,BOOL);
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +0000263
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000264extern HBITMAP X11DRV_DIB_CreateDIBSection(X11DRV_PDEVICE *physDev, BITMAPINFO *bmi, UINT usage,
Ove Kaaven8b9f3382000-04-29 16:47:07 +0000265 LPVOID *bits, HANDLE section, DWORD offset, DWORD ovr_pitch);
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +0000266extern void X11DRV_DIB_DeleteDIBSection(struct tagBITMAPOBJ *bmp);
Alexandre Julliard447ddfd2000-12-06 20:15:43 +0000267extern INT X11DRV_DIB_Coerce(struct tagBITMAPOBJ *,INT,BOOL);
268extern INT X11DRV_DIB_Lock(struct tagBITMAPOBJ *,INT,BOOL);
269extern void X11DRV_DIB_Unlock(struct tagBITMAPOBJ *,BOOL);
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000270void X11DRV_DIB_CopyDIBSection(X11DRV_PDEVICE *physDevSrc, X11DRV_PDEVICE *physDevDst,
271 DWORD xSrc, DWORD ySrc, DWORD xDest, DWORD yDest,
272 DWORD width, DWORD height);
Alexandre Julliard92083012001-07-29 20:25:14 +0000273struct _DCICMD;
274extern INT X11DRV_DCICommand(INT cbInput, const struct _DCICMD *lpCmd, LPVOID lpOutData);
Ove Kaaven313051f2001-03-20 01:24:08 +0000275
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +0000276/**************************************************************************
277 * X11 GDI driver
278 */
279
Alexandre Julliardc5597352001-05-11 00:17:47 +0000280BOOL X11DRV_GDI_Initialize( Display *display );
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +0000281void X11DRV_GDI_Finalize(void);
282
Alexandre Julliardc5597352001-05-11 00:17:47 +0000283extern Display *gdi_display; /* display to use for all GDI functions */
284
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +0000285/* X11 GDI palette driver */
286
Andreas Mohrc941eff2000-09-22 22:37:56 +0000287#define X11DRV_PALETTE_FIXED 0x0001 /* read-only colormap - have to use XAllocColor (if not virtual) */
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +0000288#define X11DRV_PALETTE_VIRTUAL 0x0002 /* no mapping needed - pixel == pixel color */
289
290#define X11DRV_PALETTE_PRIVATE 0x1000 /* private colormap, identity mapping */
291#define X11DRV_PALETTE_WHITESET 0x2000
292
293extern Colormap X11DRV_PALETTE_PaletteXColormap;
294extern UINT16 X11DRV_PALETTE_PaletteFlags;
295
296extern int *X11DRV_PALETTE_PaletteToXPixel;
297extern int *X11DRV_PALETTE_XPixelToPalette;
298
299extern int X11DRV_PALETTE_mapEGAPixel[16];
300
Alexandre Julliard99bb9f92001-07-28 00:18:02 +0000301extern int X11DRV_PALETTE_Init(void);
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +0000302extern void X11DRV_PALETTE_Cleanup(void);
Alexandre Julliarddec2cee2002-05-02 01:39:48 +0000303extern BOOL X11DRV_IsSolidColor(COLORREF color);
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +0000304
305extern COLORREF X11DRV_PALETTE_ToLogical(int pixel);
Alexandre Julliarde21c15e2002-03-28 22:22:05 +0000306extern int X11DRV_PALETTE_ToPhysical(X11DRV_PDEVICE *physDev, COLORREF color);
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +0000307
Alexandre Julliardced71ed2002-03-23 21:43:56 +0000308/* GDI escapes */
309
310#define X11DRV_ESCAPE 6789
311enum x11drv_escape_codes
312{
313 X11DRV_GET_DISPLAY, /* get X11 display for a DC */
314 X11DRV_GET_DRAWABLE, /* get current drawable for a DC */
315 X11DRV_GET_FONT, /* get current X font for a DC */
316};
317
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +0000318/**************************************************************************
319 * X11 USER driver
320 */
321
Alexandre Julliard43230042001-05-16 19:52:29 +0000322struct x11drv_thread_data
323{
324 Display *display;
325 HANDLE display_fd;
Alexandre Julliarddc4fe772001-06-04 21:55:17 +0000326 int process_event_count; /* recursion count for event processing */
Alexandre Julliard9428f062002-06-14 00:08:40 +0000327 Cursor cursor; /* current cursor */
328 Window cursor_window; /* current window that contains the cursor */
Alexandre Julliard43230042001-05-16 19:52:29 +0000329};
330
331extern struct x11drv_thread_data *x11drv_init_thread_data(void);
332
333inline static struct x11drv_thread_data *x11drv_thread_data(void)
334{
335 struct x11drv_thread_data *data = NtCurrentTeb()->driver_data;
336 if (!data) data = x11drv_init_thread_data();
337 return data;
338}
339
340inline static Display *thread_display(void) { return x11drv_thread_data()->display; }
341
Alexandre Julliard9383eb92000-03-25 14:05:06 +0000342extern Visual *visual;
343extern Window root_window;
Alexandre Julliard646c5622000-07-31 23:32:47 +0000344extern unsigned int screen_width;
345extern unsigned int screen_height;
346extern unsigned int screen_depth;
Huw D M Daviese1e51f92002-04-03 21:18:50 +0000347extern unsigned int text_caps;
Alexandre Julliard59546022002-05-23 16:32:32 +0000348extern int managed_mode;
Alexandre Julliard9383eb92000-03-25 14:05:06 +0000349
Alexandre Julliarddc4fe772001-06-04 21:55:17 +0000350extern Atom wmProtocols;
351extern Atom wmDeleteWindow;
352extern Atom wmTakeFocus;
353extern Atom dndProtocol;
354extern Atom dndSelection;
355extern Atom wmChangeState;
356extern Atom kwmDockWindow;
357extern Atom _kde_net_wm_system_tray_window_for;
358
Patrik Stridvalle35d6361998-12-07 09:13:40 +0000359/* X11 clipboard driver */
360
Noel Borthwickd05b7be1999-09-20 15:42:47 +0000361extern void X11DRV_CLIPBOARD_FreeResources( Atom property );
362extern BOOL X11DRV_CLIPBOARD_RegisterPixmapResource( Atom property, Pixmap pixmap );
Noel Borthwickd05b7be1999-09-20 15:42:47 +0000363extern BOOL X11DRV_CLIPBOARD_IsNativeProperty(Atom prop);
Noel Borthwick29700671999-09-03 15:17:57 +0000364extern UINT X11DRV_CLIPBOARD_MapPropertyToFormat(char *itemFmtName);
365extern Atom X11DRV_CLIPBOARD_MapFormatToProperty(UINT id);
Noel Borthwick29700671999-09-03 15:17:57 +0000366extern void X11DRV_CLIPBOARD_ReleaseSelection(Atom selType, Window w, HWND hwnd);
Alexandre Julliard42d20f92000-08-10 01:16:19 +0000367extern BOOL X11DRV_IsSelectionOwner(void);
368extern BOOL X11DRV_GetClipboardData(UINT wFormat);
Patrik Stridvalle35d6361998-12-07 09:13:40 +0000369
Patrik Stridvalle35d6361998-12-07 09:13:40 +0000370/* X11 event driver */
371
Lionel Ulmeracc74671999-11-07 21:25:57 +0000372typedef enum {
373 X11DRV_INPUT_RELATIVE,
374 X11DRV_INPUT_ABSOLUTE
375} INPUT_TYPE;
Marcus Meissner35870f92000-04-14 14:09:50 +0000376extern INPUT_TYPE X11DRV_EVENT_SetInputMethod(INPUT_TYPE type);
Lionel Ulmeracc74671999-11-07 21:25:57 +0000377
Lionel Ulmer3ba4be41999-12-12 19:42:47 +0000378#ifdef HAVE_LIBXXF86DGA2
379void X11DRV_EVENT_SetDGAStatus(HWND hwnd, int event_base) ;
380#endif
381
Alexandre Julliarddc4fe772001-06-04 21:55:17 +0000382/* x11drv private window data */
383struct x11drv_win_data
384{
385 Window whole_window; /* X window for the complete window */
386 Window client_window; /* X window for the client area */
387 Window icon_window; /* X window for the icon */
388 RECT whole_rect; /* X window rectangle for the whole window relative to parent */
389 RECT client_rect; /* client area relative to whole window */
390 HBITMAP hWMIconBitmap;
391 HBITMAP hWMIconMask;
392};
Patrik Stridvall8d8703c1999-02-04 14:05:38 +0000393
Alexandre Julliarddc4fe772001-06-04 21:55:17 +0000394typedef struct x11drv_win_data X11DRV_WND_DATA;
395
396extern Window X11DRV_get_client_window( HWND hwnd );
397extern Window X11DRV_get_whole_window( HWND hwnd );
Alexandre Julliarddc4fe772001-06-04 21:55:17 +0000398
399inline static Window get_client_window( WND *wnd )
400{
401 struct x11drv_win_data *data = wnd->pDriverData;
402 return data->client_window;
403}
404
405inline static Window get_whole_window( WND *wnd )
406{
407 struct x11drv_win_data *data = wnd->pDriverData;
408 return data->whole_window;
409}
Patrik Stridvall8d8703c1999-02-04 14:05:38 +0000410
Alexandre Julliard9ae0fe52001-04-24 23:28:52 +0000411extern void X11DRV_SetFocus( HWND hwnd );
Alexandre Julliard43230042001-05-16 19:52:29 +0000412extern Cursor X11DRV_GetCursor( Display *display, struct tagCURSORICONINFO *ptr );
413
Alexandre Julliard64896d02002-04-24 21:32:11 +0000414typedef int (*x11drv_error_callback)( Display *display, XErrorEvent *event, void *arg );
415
416extern void X11DRV_expect_error( Display *display, x11drv_error_callback callback, void *arg );
Alexandre Julliarddc4fe772001-06-04 21:55:17 +0000417extern int X11DRV_check_error(void);
418extern void X11DRV_register_window( Display *display, HWND hwnd, struct x11drv_win_data *data );
419extern void X11DRV_set_iconic_state( WND *win );
420extern void X11DRV_window_to_X_rect( WND *win, RECT *rect );
421extern void X11DRV_X_to_window_rect( WND *win, RECT *rect );
Alexandre Julliard43230042001-05-16 19:52:29 +0000422extern void X11DRV_create_desktop_thread(void);
423extern Window X11DRV_create_desktop( XVisualInfo *desktop_vi, const char *geometry );
Alexandre Julliarddc4fe772001-06-04 21:55:17 +0000424extern int X11DRV_sync_whole_window_position( Display *display, WND *win, int zorder );
425extern int X11DRV_sync_client_window_position( Display *display, WND *win );
Alexandre Julliard9ae0fe52001-04-24 23:28:52 +0000426
Alexandre Julliard0e270f41996-08-24 18:26:35 +0000427#endif /* __WINE_X11DRV_H */