x11drv.h 28 KB
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1
/*
2
 * X11 driver definitions
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * Copyright 1996 Alexandre Julliard
 * Copyright 1999 Patrik Stridvall
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliard's avatar
Alexandre Julliard committed
20 21 22 23 24
 */

#ifndef __WINE_X11DRV_H
#define __WINE_X11DRV_H

25 26 27
#ifndef __WINE_CONFIG_H
# error You must include config.h to use this header
#endif
28

29
#include <limits.h>
30
#include <stdarg.h>
31 32 33 34
#include <X11/Xlib.h>
#include <X11/Xresource.h>
#include <X11/Xutil.h>
#include <X11/Xatom.h>
35

36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
#define BOOL X_BOOL
#define BYTE X_BYTE
#define INT8 X_INT8
#define INT16 X_INT16
#define INT32 X_INT32
#define INT64 X_INT64
#include <X11/Xmd.h>
#include <X11/Xproto.h>
#undef BOOL
#undef BYTE
#undef INT8
#undef INT16
#undef INT32
#undef INT64
#undef LONG64

52 53
#undef Status  /* avoid conflict with wintrnl.h */
typedef int Status;
54

55
#include "windef.h"
56
#include "winbase.h"
57 58
#include "wingdi.h"
#include "winuser.h"
59
#include "wine/gdi_driver.h"
60
#include "wine/list.h"
61

62
#define MAX_DASHLEN 16
Karl Lessard's avatar
Karl Lessard committed
63

64 65
#define WINE_XDND_VERSION 4

Alexandre Julliard's avatar
Alexandre Julliard committed
66 67 68 69
  /* X physical pen */
typedef struct
{
    int          style;
Alexandre Julliard's avatar
Alexandre Julliard committed
70 71
    int          endcap;
    int          linejoin;
Alexandre Julliard's avatar
Alexandre Julliard committed
72 73
    int          pixel;
    int          width;
74
    char         dashes[MAX_DASHLEN];
Alexandre Julliard's avatar
Alexandre Julliard committed
75
    int          dash_len;
Alexandre Julliard's avatar
Alexandre Julliard committed
76
    int          type;          /* GEOMETRIC || COSMETIC */
77
    int          ext;           /* extended pen - 1, otherwise - 0 */
Alexandre Julliard's avatar
Alexandre Julliard committed
78 79 80 81 82 83 84 85 86 87 88
} X_PHYSPEN;

  /* X physical brush */
typedef struct
{
    int          style;
    int          fillStyle;
    int          pixel;
    Pixmap       pixmap;
} X_PHYSBRUSH;

89 90 91 92 93 94 95 96
typedef struct {
    int shift;
    int scale;
    int max;
} ChannelShift;

typedef struct
{
97 98
    ChannelShift physicalRed, physicalGreen, physicalBlue;
    ChannelShift logicalRed, logicalGreen, logicalBlue;
99 100
} ColorShifts;

Alexandre Julliard's avatar
Alexandre Julliard committed
101 102 103
  /* X physical device */
typedef struct
{
104
    struct gdi_physdev dev;
Alexandre Julliard's avatar
Alexandre Julliard committed
105 106
    GC            gc;          /* X Window GC */
    Drawable      drawable;
107
    RECT          dc_rect;       /* DC rectangle relative to drawable */
108
    RECT         *bounds;        /* Graphics bounds */
109
    HRGN          region;        /* Device region (visible region & clip region) */
Alexandre Julliard's avatar
Alexandre Julliard committed
110 111
    X_PHYSPEN     pen;
    X_PHYSBRUSH   brush;
112
    int           depth;       /* bit depth of the DC */
113
    ColorShifts  *color_shifts; /* color shifts of the DC */
114
    int           exposures;   /* count of graphics exposures operations */
Alexandre Julliard's avatar
Alexandre Julliard committed
115 116
} X11DRV_PDEVICE;

117 118 119 120 121 122 123
struct x11drv_gamma_ramp
{
    WORD red[256];
    WORD green[256];
    WORD blue[256];
};

124 125 126 127 128
static inline X11DRV_PDEVICE *get_x11drv_dev( PHYSDEV dev )
{
    return (X11DRV_PDEVICE *)dev;
}

129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
static inline void reset_bounds( RECT *bounds )
{
    bounds->left = bounds->top = INT_MAX;
    bounds->right = bounds->bottom = INT_MIN;
}

static inline void add_bounds_rect( RECT *bounds, const RECT *rect )
{
    if (rect->left >= rect->right || rect->top >= rect->bottom) return;
    bounds->left   = min( bounds->left, rect->left );
    bounds->top    = min( bounds->top, rect->top );
    bounds->right  = max( bounds->right, rect->right );
    bounds->bottom = max( bounds->bottom, rect->bottom );
}

Alexandre Julliard's avatar
Alexandre Julliard committed
144 145
/* Wine driver X11 functions */

146 147 148 149 150 151 152 153 154
extern BOOL X11DRV_Arc( PHYSDEV dev, INT left, INT top, INT right,
                        INT bottom, INT xstart, INT ystart, INT xend, INT yend ) DECLSPEC_HIDDEN;
extern BOOL X11DRV_Chord( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
                          INT xstart, INT ystart, INT xend, INT yend ) DECLSPEC_HIDDEN;
extern BOOL X11DRV_Ellipse( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN;
extern INT X11DRV_EnumICMProfiles( PHYSDEV dev, ICMENUMPROCW proc, LPARAM lparam ) DECLSPEC_HIDDEN;
extern BOOL X11DRV_ExtFloodFill( PHYSDEV dev, INT x, INT y, COLORREF color, UINT fillType ) DECLSPEC_HIDDEN;
extern BOOL X11DRV_GetDeviceGammaRamp( PHYSDEV dev, LPVOID ramp ) DECLSPEC_HIDDEN;
extern BOOL X11DRV_GetICMProfile( PHYSDEV dev, LPDWORD size, LPWSTR filename ) DECLSPEC_HIDDEN;
155
extern DWORD X11DRV_GetImage( PHYSDEV dev, BITMAPINFO *info,
156
                              struct gdi_image_bits *bits, struct bitblt_coords *src ) DECLSPEC_HIDDEN;
157 158
extern COLORREF X11DRV_GetNearestColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
extern UINT X11DRV_GetSystemPaletteEntries( PHYSDEV dev, UINT start, UINT count, LPPALETTEENTRY entries ) DECLSPEC_HIDDEN;
159 160
extern BOOL X11DRV_GradientFill( PHYSDEV dev, TRIVERTEX *vert_array, ULONG nvert,
                                 void *grad_array, ULONG ngrad, ULONG mode ) DECLSPEC_HIDDEN;
161 162 163 164 165 166 167 168
extern BOOL X11DRV_LineTo( PHYSDEV dev, INT x, INT y) DECLSPEC_HIDDEN;
extern BOOL X11DRV_PaintRgn( PHYSDEV dev, HRGN hrgn ) DECLSPEC_HIDDEN;
extern BOOL X11DRV_PatBlt( PHYSDEV dev, struct bitblt_coords *dst, DWORD rop ) DECLSPEC_HIDDEN;
extern BOOL X11DRV_Pie( PHYSDEV dev, INT left, INT top, INT right,
                        INT bottom, INT xstart, INT ystart, INT xend, INT yend ) DECLSPEC_HIDDEN;
extern BOOL X11DRV_Polygon( PHYSDEV dev, const POINT* pt, INT count ) DECLSPEC_HIDDEN;
extern BOOL X11DRV_PolyPolygon( PHYSDEV dev, const POINT* pt, const INT* counts, UINT polygons) DECLSPEC_HIDDEN;
extern BOOL X11DRV_PolyPolyline( PHYSDEV dev, const POINT* pt, const DWORD* counts, DWORD polylines) DECLSPEC_HIDDEN;
169
extern DWORD X11DRV_PutImage( PHYSDEV dev, HRGN clip, BITMAPINFO *info,
170 171
                              const struct gdi_image_bits *bits, struct bitblt_coords *src,
                              struct bitblt_coords *dst, DWORD rop ) DECLSPEC_HIDDEN;
172 173 174 175 176
extern UINT X11DRV_RealizeDefaultPalette( PHYSDEV dev ) DECLSPEC_HIDDEN;
extern UINT X11DRV_RealizePalette( PHYSDEV dev, HPALETTE hpal, BOOL primary ) DECLSPEC_HIDDEN;
extern BOOL X11DRV_Rectangle(PHYSDEV dev, INT left, INT top, INT right, INT bottom) DECLSPEC_HIDDEN;
extern BOOL X11DRV_RoundRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
                              INT ell_width, INT ell_height ) DECLSPEC_HIDDEN;
177
extern HBRUSH X11DRV_SelectBrush( PHYSDEV dev, HBRUSH hbrush, const struct brush_pattern *pattern ) DECLSPEC_HIDDEN;
178
extern HPEN X11DRV_SelectPen( PHYSDEV dev, HPEN hpen, const struct brush_pattern *pattern ) DECLSPEC_HIDDEN;
179 180
extern COLORREF X11DRV_SetDCBrushColor( PHYSDEV dev, COLORREF crColor ) DECLSPEC_HIDDEN;
extern COLORREF X11DRV_SetDCPenColor( PHYSDEV dev, COLORREF crColor ) DECLSPEC_HIDDEN;
181
extern void X11DRV_SetDeviceClipping( PHYSDEV dev, HRGN rgn ) DECLSPEC_HIDDEN;
182 183 184 185 186
extern BOOL X11DRV_SetDeviceGammaRamp( PHYSDEV dev, LPVOID ramp ) DECLSPEC_HIDDEN;
extern COLORREF X11DRV_SetPixel( PHYSDEV dev, INT x, INT y, COLORREF color ) DECLSPEC_HIDDEN;
extern BOOL X11DRV_StretchBlt( PHYSDEV dst_dev, struct bitblt_coords *dst,
                               PHYSDEV src_dev, struct bitblt_coords *src, DWORD rop ) DECLSPEC_HIDDEN;
extern BOOL X11DRV_UnrealizePalette( HPALETTE hpal ) DECLSPEC_HIDDEN;
Lionel Ulmer's avatar
Lionel Ulmer committed
187

Alexandre Julliard's avatar
Alexandre Julliard committed
188 189
/* X11 driver internal functions */

190 191 192
extern void X11DRV_Xcursor_Init(void) DECLSPEC_HIDDEN;
extern void X11DRV_XInput2_Init(void) DECLSPEC_HIDDEN;

193 194 195
extern DWORD copy_image_bits( BITMAPINFO *info, BOOL is_r8g8b8, XImage *image,
                              const struct gdi_image_bits *src_bits, struct gdi_image_bits *dst_bits,
                              struct bitblt_coords *coords, const int *mapping, unsigned int zeropad_mask ) DECLSPEC_HIDDEN;
196 197
extern Pixmap create_pixmap_from_image( HDC hdc, const XVisualInfo *vis, const BITMAPINFO *info,
                                        const struct gdi_image_bits *bits, UINT coloruse ) DECLSPEC_HIDDEN;
198 199
extern DWORD get_pixmap_image( Pixmap pixmap, int width, int height, const XVisualInfo *vis,
                               BITMAPINFO *info, struct gdi_image_bits *bits ) DECLSPEC_HIDDEN;
200 201
extern struct window_surface *create_surface( Window window, const XVisualInfo *vis, const RECT *rect,
                                              COLORREF color_key, BOOL use_alpha ) DECLSPEC_HIDDEN;
202
extern void set_surface_color_key( struct window_surface *window_surface, COLORREF color_key ) DECLSPEC_HIDDEN;
203 204

extern RGNDATA *X11DRV_GetRegionData( HRGN hrgn, HDC hdc_lptodp ) DECLSPEC_HIDDEN;
205 206
extern BOOL add_extra_clipping_region( X11DRV_PDEVICE *dev, HRGN rgn ) DECLSPEC_HIDDEN;
extern void restore_clipping_region( X11DRV_PDEVICE *dev ) DECLSPEC_HIDDEN;
207
extern void add_device_bounds( X11DRV_PDEVICE *dev, const RECT *rect ) DECLSPEC_HIDDEN;
208

209 210
extern void execute_rop( X11DRV_PDEVICE *physdev, Pixmap src_pixmap, GC gc, const RECT *visrect, DWORD rop ) DECLSPEC_HIDDEN;

211 212
extern BOOL X11DRV_SetupGCForPatBlt( X11DRV_PDEVICE *physDev, GC gc, BOOL fMapColors ) DECLSPEC_HIDDEN;
extern BOOL X11DRV_SetupGCForBrush( X11DRV_PDEVICE *physDev ) DECLSPEC_HIDDEN;
213 214
extern INT X11DRV_XWStoDS( HDC hdc, INT width ) DECLSPEC_HIDDEN;
extern INT X11DRV_YWStoDS( HDC hdc, INT height ) DECLSPEC_HIDDEN;
215 216 217

extern const int X11DRV_XROPfunction[];

218
extern int client_side_graphics DECLSPEC_HIDDEN;
219
extern int client_side_with_render DECLSPEC_HIDDEN;
220
extern const struct gdi_dc_funcs *X11DRV_XRender_Init(void) DECLSPEC_HIDDEN;
221

222
extern struct opengl_funcs *get_glx_driver(UINT) DECLSPEC_HIDDEN;
223

224
/* IME support */
225 226
extern void IME_SetOpenStatus(BOOL fOpen) DECLSPEC_HIDDEN;
extern void IME_SetCompositionStatus(BOOL fOpen) DECLSPEC_HIDDEN;
227 228 229
extern INT IME_GetCursorPos(void) DECLSPEC_HIDDEN;
extern void IME_SetCursorPos(DWORD pos) DECLSPEC_HIDDEN;
extern void IME_UpdateAssociation(HWND focus) DECLSPEC_HIDDEN;
230 231
extern BOOL IME_SetCompositionString(DWORD dwIndex, LPCVOID lpComp,
                                     DWORD dwCompLen, LPCVOID lpRead,
232 233
                                     DWORD dwReadLen) DECLSPEC_HIDDEN;
extern void IME_SetResultString(LPWSTR lpResult, DWORD dwResultlen) DECLSPEC_HIDDEN;
234

235 236 237 238
extern void X11DRV_XDND_EnterEvent( HWND hWnd, XClientMessageEvent *event ) DECLSPEC_HIDDEN;
extern void X11DRV_XDND_PositionEvent( HWND hWnd, XClientMessageEvent *event ) DECLSPEC_HIDDEN;
extern void X11DRV_XDND_DropEvent( HWND hWnd, XClientMessageEvent *event ) DECLSPEC_HIDDEN;
extern void X11DRV_XDND_LeaveEvent( HWND hWnd, XClientMessageEvent *event ) DECLSPEC_HIDDEN;
239

240 241 242 243
/**************************************************************************
 * X11 GDI driver
 */

244
extern Display *gdi_display DECLSPEC_HIDDEN;  /* display to use for all GDI functions */
245

246 247
/* X11 GDI palette driver */

248
#define X11DRV_PALETTE_FIXED    0x0001 /* read-only colormap - have to use XAllocColor (if not virtual) */
249 250 251 252
#define X11DRV_PALETTE_VIRTUAL  0x0002 /* no mapping needed - pixel == pixel color */

#define X11DRV_PALETTE_PRIVATE  0x1000 /* private colormap, identity mapping */

253
extern UINT16 X11DRV_PALETTE_PaletteFlags DECLSPEC_HIDDEN;
254

255 256 257
extern int *X11DRV_PALETTE_PaletteToXPixel DECLSPEC_HIDDEN;
extern int *X11DRV_PALETTE_XPixelToPalette DECLSPEC_HIDDEN;
extern ColorShifts X11DRV_PALETTE_default_shifts DECLSPEC_HIDDEN;
258

259
extern int X11DRV_PALETTE_mapEGAPixel[16] DECLSPEC_HIDDEN;
260

261 262
extern int X11DRV_PALETTE_Init(void) DECLSPEC_HIDDEN;
extern BOOL X11DRV_IsSolidColor(COLORREF color) DECLSPEC_HIDDEN;
263

264 265 266 267
extern COLORREF X11DRV_PALETTE_ToLogical(X11DRV_PDEVICE *physDev, int pixel) DECLSPEC_HIDDEN;
extern int X11DRV_PALETTE_ToPhysical(X11DRV_PDEVICE *physDev, COLORREF color) DECLSPEC_HIDDEN;
extern COLORREF X11DRV_PALETTE_GetColor( X11DRV_PDEVICE *physDev, COLORREF color ) DECLSPEC_HIDDEN;
extern void X11DRV_PALETTE_ComputeColorShifts(ColorShifts *shifts, unsigned long redMask, unsigned long greenMask, unsigned long blueMask) DECLSPEC_HIDDEN;
268

269 270 271 272 273
/* GDI escapes */

#define X11DRV_ESCAPE 6789
enum x11drv_escape_codes
{
274
    X11DRV_SET_DRAWABLE,     /* set current drawable for a DC */
275
    X11DRV_GET_DRAWABLE,     /* get current drawable for a DC */
276 277
    X11DRV_START_EXPOSURES,  /* start graphics exposures */
    X11DRV_END_EXPOSURES,    /* end graphics exposures */
278
    X11DRV_FLUSH_GL_DRAWABLE /* flush changes made to the gl drawable */
279 280 281 282 283
};

struct x11drv_escape_set_drawable
{
    enum x11drv_escape_codes code;         /* escape code (X11DRV_SET_DRAWABLE) */
284
    HWND                     hwnd;         /* window for this drawable */
285 286
    Drawable                 drawable;     /* X drawable */
    int                      mode;         /* ClipByChildren or IncludeInferiors */
287
    RECT                     dc_rect;      /* DC rectangle relative to drawable */
288
    XID                      fbconfig_id;  /* fbconfig id used by the GL drawable */
289 290
};

291 292 293 294 295 296 297 298
struct x11drv_escape_get_drawable
{
    enum x11drv_escape_codes code;         /* escape code (X11DRV_GET_DRAWABLE) */
    Drawable                 drawable;     /* X drawable */
    Drawable                 gl_drawable;  /* GL drawable */
    int                      pixel_format; /* internal GL pixel format */
};

299 300 301 302 303 304
struct x11drv_escape_flush_gl_drawable
{
    enum x11drv_escape_codes code;         /* escape code (X11DRV_FLUSH_GL_DRAWABLE) */
    Drawable                 gl_drawable;  /* GL drawable */
};

305 306 307 308
/**************************************************************************
 * X11 USER driver
 */

309 310 311
struct x11drv_thread_data
{
    Display *display;
312
    XEvent  *current_event;        /* event currently being processed */
313
    Window   grab_window;          /* window that currently grabs the mouse */
314
    HWND     last_focus;           /* last window that had focus */
315
    XIM      xim;                  /* input method */
316
    HWND     last_xic_hwnd;        /* last xic window */
317
    XFontSet font_set;             /* international text drawing font set */
318
    Window   selection_wnd;        /* window used for selection interactions */
319
    unsigned long warp_serial;     /* serial number of last pointer warp request */
320
    Window   clip_window;          /* window used for cursor clipping */
321
    HWND     clip_hwnd;            /* message window stored in desktop while clipping is active */
322
    DWORD    clip_reset;           /* time when clipping was last reset */
323
    HKL      kbd_layout;           /* active keyboard layout */
324
    enum { xi_unavailable = -1, xi_unknown, xi_disabled, xi_enabled } xi2_state; /* XInput2 state */
325 326 327
    void    *xi2_devices;          /* list of XInput2 devices (valid when state is enabled) */
    int      xi2_device_count;
    int      xi2_core_pointer;     /* XInput2 core pointer id */
328 329
};

330 331
extern struct x11drv_thread_data *x11drv_init_thread_data(void) DECLSPEC_HIDDEN;
extern DWORD thread_data_tls_index DECLSPEC_HIDDEN;
332

333
static inline struct x11drv_thread_data *x11drv_thread_data(void)
334
{
335
    return TlsGetValue( thread_data_tls_index );
336 337
}

338 339 340 341 342 343 344 345 346 347 348 349 350
/* retrieve the thread display, or NULL if not created yet */
static inline Display *thread_display(void)
{
    struct x11drv_thread_data *data = x11drv_thread_data();
    if (!data) return NULL;
    return data->display;
}

/* retrieve the thread display, creating it if needed */
static inline Display *thread_init_display(void)
{
    return x11drv_init_thread_data()->display;
}
351

352 353 354 355 356 357 358
static inline size_t get_property_size( int format, unsigned long count )
{
    /* format==32 means long, which can be 64 bits... */
    if (format == 32) return count * sizeof(long);
    return count * (format / 8);
}

359
extern XVisualInfo default_visual DECLSPEC_HIDDEN;
360
extern XVisualInfo argb_visual DECLSPEC_HIDDEN;
361
extern Colormap default_colormap DECLSPEC_HIDDEN;
362
extern XPixmapFormatValues **pixmap_formats DECLSPEC_HIDDEN;
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
extern Window root_window DECLSPEC_HIDDEN;
extern int clipping_cursor DECLSPEC_HIDDEN;
extern unsigned int screen_width DECLSPEC_HIDDEN;
extern unsigned int screen_height DECLSPEC_HIDDEN;
extern unsigned int screen_bpp DECLSPEC_HIDDEN;
extern RECT virtual_screen_rect DECLSPEC_HIDDEN;
extern int use_xkb DECLSPEC_HIDDEN;
extern int usexrandr DECLSPEC_HIDDEN;
extern int usexvidmode DECLSPEC_HIDDEN;
extern BOOL ximInComposeMode DECLSPEC_HIDDEN;
extern int use_take_focus DECLSPEC_HIDDEN;
extern int use_primary_selection DECLSPEC_HIDDEN;
extern int use_system_cursors DECLSPEC_HIDDEN;
extern int show_systray DECLSPEC_HIDDEN;
extern int grab_pointer DECLSPEC_HIDDEN;
extern int grab_fullscreen DECLSPEC_HIDDEN;
extern int usexcomposite DECLSPEC_HIDDEN;
extern int managed_mode DECLSPEC_HIDDEN;
extern int decorated_mode DECLSPEC_HIDDEN;
extern int private_color_map DECLSPEC_HIDDEN;
extern int primary_monitor DECLSPEC_HIDDEN;
extern int copy_default_colors DECLSPEC_HIDDEN;
extern int alloc_system_colors DECLSPEC_HIDDEN;
extern int xrender_error_base DECLSPEC_HIDDEN;
extern HMODULE x11drv_module DECLSPEC_HIDDEN;
388

389
/* atoms */
390

391
enum x11drv_atoms
392
{
393 394 395
    FIRST_XATOM = XA_LAST_PREDEFINED + 1,
    XATOM_CLIPBOARD = FIRST_XATOM,
    XATOM_COMPOUND_TEXT,
396
    XATOM_INCR,
397
    XATOM_MANAGER,
398 399 400 401 402 403 404 405
    XATOM_MULTIPLE,
    XATOM_SELECTION_DATA,
    XATOM_TARGETS,
    XATOM_TEXT,
    XATOM_UTF8_STRING,
    XATOM_RAW_ASCENT,
    XATOM_RAW_DESCENT,
    XATOM_RAW_CAP_HEIGHT,
406 407
    XATOM_Rel_X,
    XATOM_Rel_Y,
408 409
    XATOM_WM_PROTOCOLS,
    XATOM_WM_DELETE_WINDOW,
410
    XATOM_WM_STATE,
411 412 413
    XATOM_WM_TAKE_FOCUS,
    XATOM_DndProtocol,
    XATOM_DndSelection,
414
    XATOM__ICC_PROFILE,
415
    XATOM__MOTIF_WM_HINTS,
416 417
    XATOM__NET_STARTUP_INFO_BEGIN,
    XATOM__NET_STARTUP_INFO,
418
    XATOM__NET_SUPPORTED,
419 420
    XATOM__NET_SYSTEM_TRAY_OPCODE,
    XATOM__NET_SYSTEM_TRAY_S0,
421
    XATOM__NET_SYSTEM_TRAY_VISUAL,
422
    XATOM__NET_WM_ICON,
423
    XATOM__NET_WM_MOVERESIZE,
424
    XATOM__NET_WM_NAME,
425 426
    XATOM__NET_WM_PID,
    XATOM__NET_WM_PING,
427
    XATOM__NET_WM_STATE,
428
    XATOM__NET_WM_STATE_ABOVE,
429
    XATOM__NET_WM_STATE_FULLSCREEN,
430 431
    XATOM__NET_WM_STATE_MAXIMIZED_HORZ,
    XATOM__NET_WM_STATE_MAXIMIZED_VERT,
432 433
    XATOM__NET_WM_STATE_SKIP_PAGER,
    XATOM__NET_WM_STATE_SKIP_TASKBAR,
434 435
    XATOM__NET_WM_USER_TIME,
    XATOM__NET_WM_USER_TIME_WINDOW,
436
    XATOM__NET_WM_WINDOW_OPACITY,
437
    XATOM__NET_WM_WINDOW_TYPE,
438 439
    XATOM__NET_WM_WINDOW_TYPE_DIALOG,
    XATOM__NET_WM_WINDOW_TYPE_NORMAL,
440
    XATOM__NET_WM_WINDOW_TYPE_UTILITY,
441
    XATOM__NET_WORKAREA,
442
    XATOM__XEMBED,
443
    XATOM__XEMBED_INFO,
444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
    XATOM_XdndAware,
    XATOM_XdndEnter,
    XATOM_XdndPosition,
    XATOM_XdndStatus,
    XATOM_XdndLeave,
    XATOM_XdndFinished,
    XATOM_XdndDrop,
    XATOM_XdndActionCopy,
    XATOM_XdndActionMove,
    XATOM_XdndActionLink,
    XATOM_XdndActionAsk,
    XATOM_XdndActionPrivate,
    XATOM_XdndSelection,
    XATOM_XdndTarget,
    XATOM_XdndTypeList,
459
    XATOM_HTML_Format,
460
    XATOM_WCF_BITMAP,
461
    XATOM_WCF_DIB,
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480
    XATOM_WCF_DIBV5,
    XATOM_WCF_DIF,
    XATOM_WCF_DSPBITMAP,
    XATOM_WCF_DSPENHMETAFILE,
    XATOM_WCF_DSPMETAFILEPICT,
    XATOM_WCF_DSPTEXT,
    XATOM_WCF_ENHMETAFILE,
    XATOM_WCF_HDROP,
    XATOM_WCF_LOCALE,
    XATOM_WCF_METAFILEPICT,
    XATOM_WCF_OEMTEXT,
    XATOM_WCF_OWNERDISPLAY,
    XATOM_WCF_PALETTE,
    XATOM_WCF_PENDATA,
    XATOM_WCF_RIFF,
    XATOM_WCF_SYLK,
    XATOM_WCF_TIFF,
    XATOM_WCF_WAVE,
    XATOM_image_bmp,
481
    XATOM_image_gif,
482
    XATOM_image_jpeg,
483
    XATOM_image_png,
484 485
    XATOM_text_html,
    XATOM_text_plain,
486 487
    XATOM_text_rtf,
    XATOM_text_richtext,
488
    XATOM_text_uri_list,
489 490
    NB_XATOMS
};
491

492 493
extern Atom X11DRV_Atoms[NB_XATOMS - FIRST_XATOM] DECLSPEC_HIDDEN;
extern Atom systray_atom DECLSPEC_HIDDEN;
494 495 496

#define x11drv_atom(name) (X11DRV_Atoms[XATOM_##name - FIRST_XATOM])

497 498
/* X11 event driver */

499 500
typedef void (*x11drv_event_handler)( HWND hwnd, XEvent *event );

501
extern void X11DRV_register_event_handler( int type, x11drv_event_handler handler, const char *name ) DECLSPEC_HIDDEN;
502

503 504 505 506 507 508 509 510 511 512 513
extern void X11DRV_ButtonPress( HWND hwnd, XEvent *event ) DECLSPEC_HIDDEN;
extern void X11DRV_ButtonRelease( HWND hwnd, XEvent *event ) DECLSPEC_HIDDEN;
extern void X11DRV_MotionNotify( HWND hwnd, XEvent *event ) DECLSPEC_HIDDEN;
extern void X11DRV_EnterNotify( HWND hwnd, XEvent *event ) DECLSPEC_HIDDEN;
extern void X11DRV_KeyEvent( HWND hwnd, XEvent *event ) DECLSPEC_HIDDEN;
extern void X11DRV_KeymapNotify( HWND hwnd, XEvent *event ) DECLSPEC_HIDDEN;
extern void X11DRV_DestroyNotify( HWND hwnd, XEvent *event ) DECLSPEC_HIDDEN;
extern void X11DRV_SelectionRequest( HWND hWnd, XEvent *event ) DECLSPEC_HIDDEN;
extern void X11DRV_SelectionClear( HWND hWnd, XEvent *event ) DECLSPEC_HIDDEN;
extern void X11DRV_MappingNotify( HWND hWnd, XEvent *event ) DECLSPEC_HIDDEN;
extern void X11DRV_GenericEvent( HWND hwnd, XEvent *event ) DECLSPEC_HIDDEN;
514

515 516 517
extern int xinput2_opcode DECLSPEC_HIDDEN;
extern Bool (*pXGetEventData)( Display *display, XEvent /*XGenericEventCookie*/ *event ) DECLSPEC_HIDDEN;
extern void (*pXFreeEventData)( Display *display, XEvent /*XGenericEventCookie*/ *event ) DECLSPEC_HIDDEN;
518

519
extern DWORD EVENT_x11_time_to_win32_time(Time time) DECLSPEC_HIDDEN;
520

521 522 523
/* X11 driver private messages, must be in the range 0x80001000..0x80001fff */
enum x11drv_window_messages
{
524
    WM_X11DRV_ACQUIRE_SELECTION = 0x80001000,
525
    WM_X11DRV_SET_WIN_REGION,
526
    WM_X11DRV_RESIZE_DESKTOP,
527 528
    WM_X11DRV_SET_CURSOR,
    WM_X11DRV_CLIP_CURSOR
529 530
};

531
/* _NET_WM_STATE properties that we keep track of */
532
enum x11drv_net_wm_state
533
{
534 535
    NET_WM_STATE_FULLSCREEN,
    NET_WM_STATE_ABOVE,
536
    NET_WM_STATE_MAXIMIZED,
537 538 539
    NET_WM_STATE_SKIP_PAGER,
    NET_WM_STATE_SKIP_TASKBAR,
    NB_NET_WM_STATES
540 541
};

542 543 544
/* x11drv private window data */
struct x11drv_win_data
{
545
    Display    *display;        /* display connection for the thread owning the window */
546 547
    XVisualInfo vis;            /* X visual used by this window */
    Colormap    colormap;       /* colormap if non-default visual */
548 549 550 551
    HWND        hwnd;           /* hwnd that this private data belongs to */
    Window      whole_window;   /* X window for the complete window */
    RECT        window_rect;    /* USER window rectangle relative to parent */
    RECT        whole_rect;     /* X window rectangle for the whole window relative to parent */
552
    RECT        client_rect;    /* client area relative to parent */
553
    XIC         xic;            /* X input context */
554 555
    BOOL        managed : 1;    /* is window managed? */
    BOOL        mapped : 1;     /* is window mapped? (in either normal or iconic state) */
556
    BOOL        iconic : 1;     /* is window in iconic state? */
557
    BOOL        embedded : 1;   /* is window an XEMBED client? */
558
    BOOL        shaped : 1;     /* is window using a custom region shape? */
559
    BOOL        layered : 1;    /* is window layered and with valid attributes? */
560
    int         wm_state;       /* current value of the WM_STATE property */
561
    DWORD       net_wm_state;   /* bit mask of active x11drv_net_wm_state values */
562
    Window      embedder;       /* window id of embedder */
563
    unsigned long configure_serial; /* serial number of last configure request */
564
    struct window_surface *surface;
565 566 567 568
    Pixmap         icon_pixmap;
    Pixmap         icon_mask;
    unsigned long *icon_bits;
    unsigned int   icon_size;
569 570
};

571 572
extern struct x11drv_win_data *get_win_data( HWND hwnd ) DECLSPEC_HIDDEN;
extern void release_win_data( struct x11drv_win_data *data ) DECLSPEC_HIDDEN;
573 574 575
extern Window X11DRV_get_whole_window( HWND hwnd ) DECLSPEC_HIDDEN;
extern XIC X11DRV_get_ic( HWND hwnd ) DECLSPEC_HIDDEN;

576
extern void sync_gl_drawable( HWND hwnd, const RECT *visible_rect, const RECT *client_rect ) DECLSPEC_HIDDEN;
577
extern void set_gl_drawable_parent( HWND hwnd, HWND parent ) DECLSPEC_HIDDEN;
578
extern void destroy_gl_drawable( HWND hwnd ) DECLSPEC_HIDDEN;
579

580
extern void wait_for_withdrawn_state( HWND hwnd, BOOL set ) DECLSPEC_HIDDEN;
581 582
extern Window init_clip_window(void) DECLSPEC_HIDDEN;
extern void update_user_time( Time time ) DECLSPEC_HIDDEN;
583
extern void update_net_wm_states( struct x11drv_win_data *data ) DECLSPEC_HIDDEN;
584
extern void make_window_embedded( struct x11drv_win_data *data ) DECLSPEC_HIDDEN;
585
extern void set_window_visual( struct x11drv_win_data *data, const XVisualInfo *vis ) DECLSPEC_HIDDEN;
586 587 588
extern void change_systray_owner( Display *display, Window systray_window ) DECLSPEC_HIDDEN;
extern void update_systray_balloon_position(void) DECLSPEC_HIDDEN;
extern HWND create_foreign_window( Display *display, Window window ) DECLSPEC_HIDDEN;
589

590 591 592 593 594 595 596 597
static inline void mirror_rect( const RECT *window_rect, RECT *rect )
{
    int width = window_rect->right - window_rect->left;
    int tmp = rect->left;
    rect->left = width - rect->right;
    rect->right = width - tmp;
}

598 599
static inline BOOL is_window_rect_mapped( const RECT *rect )
{
600 601 602 603
    return (rect->left < virtual_screen_rect.right &&
            rect->top < virtual_screen_rect.bottom &&
            max( rect->right, rect->left + 1 ) > virtual_screen_rect.left &&
            max( rect->bottom, rect->top + 1 ) > virtual_screen_rect.top);
604 605 606 607 608 609 610 611
}

static inline BOOL is_window_rect_fullscreen( const RECT *rect )
{
    return (rect->left <= 0 && rect->right >= screen_width &&
            rect->top <= 0 && rect->bottom >= screen_height);
}

612
/* X context to associate a hwnd to an X window */
613
extern XContext winContext DECLSPEC_HIDDEN;
614 615 616 617
/* X context to associate a struct x11drv_win_data to an hwnd */
extern XContext win_data_context DECLSPEC_HIDDEN;
/* X context to associate an X cursor to a Win32 cursor handle */
extern XContext cursor_context DECLSPEC_HIDDEN;
618 619 620 621 622 623 624 625 626 627 628

extern void X11DRV_InitClipboard(void) DECLSPEC_HIDDEN;
extern int CDECL X11DRV_AcquireClipboard(HWND hWndClipWindow) DECLSPEC_HIDDEN;
extern void X11DRV_ResetSelectionOwner(void) DECLSPEC_HIDDEN;
extern void CDECL X11DRV_SetFocus( HWND hwnd ) DECLSPEC_HIDDEN;
extern void set_window_cursor( Window window, HCURSOR handle ) DECLSPEC_HIDDEN;
extern void sync_window_cursor( Window window ) DECLSPEC_HIDDEN;
extern LRESULT clip_cursor_notify( HWND hwnd, HWND new_clip_hwnd ) DECLSPEC_HIDDEN;
extern void ungrab_clipping_window(void) DECLSPEC_HIDDEN;
extern void reset_clipping_window(void) DECLSPEC_HIDDEN;
extern BOOL clip_fullscreen_window( HWND hwnd, BOOL reset ) DECLSPEC_HIDDEN;
629
extern void move_resize_window( HWND hwnd, int dir ) DECLSPEC_HIDDEN;
630
extern void X11DRV_InitKeyboard( Display *display ) DECLSPEC_HIDDEN;
631
extern DWORD CDECL X11DRV_MsgWaitForMultipleObjectsEx( DWORD count, const HANDLE *handles, DWORD timeout,
632
                                                       DWORD mask, DWORD flags ) DECLSPEC_HIDDEN;
633

634 635
typedef int (*x11drv_error_callback)( Display *display, XErrorEvent *event, void *arg );

636 637 638 639 640
extern void X11DRV_expect_error( Display *display, x11drv_error_callback callback, void *arg ) DECLSPEC_HIDDEN;
extern int X11DRV_check_error(void) DECLSPEC_HIDDEN;
extern void X11DRV_X_to_window_rect( struct x11drv_win_data *data, RECT *rect ) DECLSPEC_HIDDEN;
extern void xinerama_init( unsigned int width, unsigned int height ) DECLSPEC_HIDDEN;

641 642 643 644 645 646 647 648
struct x11drv_mode_info
{
    unsigned int width;
    unsigned int height;
    unsigned int bpp;
    unsigned int refresh_rate;
};

649 650
extern void X11DRV_init_desktop( Window win, unsigned int width, unsigned int height ) DECLSPEC_HIDDEN;
extern void X11DRV_resize_desktop(unsigned int width, unsigned int height) DECLSPEC_HIDDEN;
651
BOOL is_desktop_fullscreen(void) DECLSPEC_HIDDEN;
652 653 654 655
extern void X11DRV_Settings_AddDepthModes(void) DECLSPEC_HIDDEN;
extern void X11DRV_Settings_AddOneMode(unsigned int width, unsigned int height, unsigned int bpp, unsigned int freq) DECLSPEC_HIDDEN;
unsigned int X11DRV_Settings_GetModeCount(void) DECLSPEC_HIDDEN;
void X11DRV_Settings_Init(void) DECLSPEC_HIDDEN;
656 657 658 659 660
struct x11drv_mode_info *X11DRV_Settings_SetHandlers(const char *name,
                                                     int (*pNewGCM)(void),
                                                     LONG (*pNewSCM)(int),
                                                     unsigned int nmodes,
                                                     int reserve_depths) DECLSPEC_HIDDEN;
661

662
void X11DRV_XF86VM_Init(void) DECLSPEC_HIDDEN;
663
void X11DRV_XRandR_Init(void) DECLSPEC_HIDDEN;
664

665
/* XIM support */
666 667 668 669 670
extern BOOL X11DRV_InitXIM( const char *input_style ) DECLSPEC_HIDDEN;
extern XIC X11DRV_CreateIC(XIM xim, struct x11drv_win_data *data) DECLSPEC_HIDDEN;
extern void X11DRV_SetupXIM(void) DECLSPEC_HIDDEN;
extern void X11DRV_XIMLookupChars( const char *str, DWORD count ) DECLSPEC_HIDDEN;
extern void X11DRV_ForceXIMReset(HWND hwnd) DECLSPEC_HIDDEN;
671
extern void X11DRV_SetPreeditState(HWND hwnd, BOOL fOpen) DECLSPEC_HIDDEN;
672

673 674
#define XEMBED_MAPPED  (1 << 0)

675
#endif  /* __WINE_X11DRV_H */