d3dx9: Fix the expected_length computation for non-square DDS files.
[wine] / dlls / winex11.drv / clipboard.c
1 /*
2  * X11 clipboard windows driver
3  *
4  * Copyright 1994 Martin Ayotte
5  *           1996 Alex Korobka
6  *           1999 Noel Borthwick
7  *           2003 Ulrich Czekalla for CodeWeavers
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22  *
23  * NOTES:
24  *    This file contains the X specific implementation for the windows
25  *    Clipboard API.
26  *
27  *    Wine's internal clipboard is exposed to external apps via the X
28  *    selection mechanism.
29  *    Currently the driver asserts ownership via two selection atoms:
30  *    1. PRIMARY(XA_PRIMARY)
31  *    2. CLIPBOARD
32  *
33  *    In our implementation, the CLIPBOARD selection takes precedence over PRIMARY,
34  *    i.e. if a CLIPBOARD selection is available, it is used instead of PRIMARY.
35  *    When Wine takes ownership of the clipboard, it takes ownership of BOTH selections.
36  *    While giving up selection ownership, if the CLIPBOARD selection is lost,
37  *    it will lose both PRIMARY and CLIPBOARD and empty the clipboard.
38  *    However if only PRIMARY is lost, it will continue to hold the CLIPBOARD selection
39  *    (leaving the clipboard cache content unaffected).
40  *
41  *      Every format exposed via a windows clipboard format is also exposed through
42  *    a corresponding X selection target. A selection target atom is synthesized
43  *    whenever a new Windows clipboard format is registered via RegisterClipboardFormat,
44  *    or when a built-in format is used for the first time.
45  *    Windows native format are exposed by prefixing the format name with "<WCF>"
46  *    This allows us to uniquely identify windows native formats exposed by other
47  *    running WINE apps.
48  *
49  *      In order to allow external applications to query WINE for supported formats,
50  *    we respond to the "TARGETS" selection target. (See EVENT_SelectionRequest
51  *    for implementation) We use the same mechanism to query external clients for
52  *    availability of a particular format, by caching the list of available targets
53  *    by using the clipboard cache's "delayed render" mechanism. If a selection client
54  *    does not support the "TARGETS" selection target, we actually attempt to retrieve
55  *    the format requested as a fallback mechanism.
56  *
57  *      Certain Windows native formats are automatically converted to X native formats
58  *    and vice versa. If a native format is available in the selection, it takes
59  *    precedence, in order to avoid unnecessary conversions.
60  *
61  * FIXME: global format list needs a critical section
62  */
63
64 #include "config.h"
65 #include "wine/port.h"
66
67 #include <string.h>
68 #include <stdarg.h>
69 #include <stdio.h>
70 #include <stdlib.h>
71 #ifdef HAVE_UNISTD_H
72 # include <unistd.h>
73 #endif
74 #include <fcntl.h>
75 #include <limits.h>
76 #include <time.h>
77 #include <assert.h>
78
79 #include "windef.h"
80 #include "winbase.h"
81 #include "x11drv.h"
82 #include "wine/list.h"
83 #include "wine/debug.h"
84 #include "wine/unicode.h"
85 #include "wine/server.h"
86
87 WINE_DEFAULT_DEBUG_CHANNEL(clipboard);
88
89 /* Maximum wait time for selection notify */
90 #define SELECTION_RETRIES 500  /* wait for .5 seconds */
91 #define SELECTION_WAIT    1000 /* us */
92
93 /* Selection masks */
94 #define S_NOSELECTION    0
95 #define S_PRIMARY        1
96 #define S_CLIPBOARD      2
97
98 typedef struct
99 {
100     HWND hWndOpen;
101     HWND hWndOwner;
102     HWND hWndViewer;
103     UINT seqno;
104     UINT flags;
105 } CLIPBOARDINFO, *LPCLIPBOARDINFO;
106
107 struct tagWINE_CLIPDATA; /* Forward */
108
109 typedef HANDLE (*DRVEXPORTFUNC)(Display *display, Window requestor, Atom aTarget, Atom rprop,
110     struct tagWINE_CLIPDATA* lpData, LPDWORD lpBytes);
111 typedef HANDLE (*DRVIMPORTFUNC)(Display *d, Window w, Atom prop);
112
113 typedef struct tagWINE_CLIPFORMAT {
114     struct list entry;
115     UINT        wFormatID;
116     UINT        drvData;
117     DRVIMPORTFUNC  lpDrvImportFunc;
118     DRVEXPORTFUNC  lpDrvExportFunc;
119 } WINE_CLIPFORMAT, *LPWINE_CLIPFORMAT;
120
121 typedef struct tagWINE_CLIPDATA {
122     struct list entry;
123     UINT        wFormatID;
124     HANDLE      hData;
125     UINT        wFlags;
126     UINT        drvData;
127     LPWINE_CLIPFORMAT lpFormat;
128 } WINE_CLIPDATA, *LPWINE_CLIPDATA;
129
130 #define CF_FLAG_UNOWNED      0x0001 /* cached data is not owned */
131 #define CF_FLAG_SYNTHESIZED  0x0002 /* Implicitly converted data */
132
133 static int selectionAcquired = 0;              /* Contains the current selection masks */
134 static Window selectionWindow = None;          /* The top level X window which owns the selection */
135 static Atom selectionCacheSrc = XA_PRIMARY;    /* The selection source from which the clipboard cache was filled */
136
137 void CDECL X11DRV_EmptyClipboard(BOOL keepunowned);
138 void CDECL X11DRV_EndClipboardUpdate(void);
139 static HANDLE X11DRV_CLIPBOARD_ImportClipboardData(Display *d, Window w, Atom prop);
140 static HANDLE X11DRV_CLIPBOARD_ImportEnhMetaFile(Display *d, Window w, Atom prop);
141 static HANDLE X11DRV_CLIPBOARD_ImportMetaFilePict(Display *d, Window w, Atom prop);
142 static HANDLE X11DRV_CLIPBOARD_ImportXAPIXMAP(Display *d, Window w, Atom prop);
143 static HANDLE X11DRV_CLIPBOARD_ImportImageBmp(Display *d, Window w, Atom prop);
144 static HANDLE X11DRV_CLIPBOARD_ImportXAString(Display *d, Window w, Atom prop);
145 static HANDLE X11DRV_CLIPBOARD_ImportUTF8(Display *d, Window w, Atom prop);
146 static HANDLE X11DRV_CLIPBOARD_ImportCompoundText(Display *d, Window w, Atom prop);
147 static HANDLE X11DRV_CLIPBOARD_ExportClipboardData(Display *display, Window requestor, Atom aTarget,
148     Atom rprop, LPWINE_CLIPDATA lpData, LPDWORD lpBytes);
149 static HANDLE X11DRV_CLIPBOARD_ExportString(Display *display, Window requestor, Atom aTarget,
150     Atom rprop, LPWINE_CLIPDATA lpData, LPDWORD lpBytes);
151 static HANDLE X11DRV_CLIPBOARD_ExportXAPIXMAP(Display *display, Window requestor, Atom aTarget,
152     Atom rprop, LPWINE_CLIPDATA lpdata, LPDWORD lpBytes);
153 static HANDLE X11DRV_CLIPBOARD_ExportImageBmp(Display *display, Window requestor, Atom aTarget,
154     Atom rprop, LPWINE_CLIPDATA lpdata, LPDWORD lpBytes);
155 static HANDLE X11DRV_CLIPBOARD_ExportMetaFilePict(Display *display, Window requestor, Atom aTarget,
156     Atom rprop, LPWINE_CLIPDATA lpdata, LPDWORD lpBytes);
157 static HANDLE X11DRV_CLIPBOARD_ExportEnhMetaFile(Display *display, Window requestor, Atom aTarget,
158     Atom rprop, LPWINE_CLIPDATA lpdata, LPDWORD lpBytes);
159 static HANDLE X11DRV_CLIPBOARD_ExportTextHtml(Display *display, Window requestor, Atom aTarget,
160     Atom rprop, LPWINE_CLIPDATA lpdata, LPDWORD lpBytes);
161 static WINE_CLIPFORMAT *X11DRV_CLIPBOARD_InsertClipboardFormat(UINT id, Atom prop);
162 static BOOL X11DRV_CLIPBOARD_RenderSynthesizedText(Display *display, UINT wFormatID);
163 static void X11DRV_CLIPBOARD_FreeData(LPWINE_CLIPDATA lpData);
164 static BOOL X11DRV_CLIPBOARD_IsSelectionOwner(void);
165 static int X11DRV_CLIPBOARD_QueryAvailableData(Display *display, LPCLIPBOARDINFO lpcbinfo);
166 static BOOL X11DRV_CLIPBOARD_ReadSelectionData(Display *display, LPWINE_CLIPDATA lpData);
167 static BOOL X11DRV_CLIPBOARD_ReadProperty(Display *display, Window w, Atom prop,
168     unsigned char** data, unsigned long* datasize);
169 static BOOL X11DRV_CLIPBOARD_RenderFormat(Display *display, LPWINE_CLIPDATA lpData);
170 static HANDLE X11DRV_CLIPBOARD_SerializeMetafile(INT wformat, HANDLE hdata, LPDWORD lpcbytes, BOOL out);
171 static BOOL X11DRV_CLIPBOARD_SynthesizeData(UINT wFormatID);
172 static BOOL X11DRV_CLIPBOARD_RenderSynthesizedFormat(Display *display, LPWINE_CLIPDATA lpData);
173 static BOOL X11DRV_CLIPBOARD_RenderSynthesizedDIB(Display *display);
174 static BOOL X11DRV_CLIPBOARD_RenderSynthesizedBitmap(Display *display);
175 static BOOL X11DRV_CLIPBOARD_RenderSynthesizedEnhMetaFile(Display *display);
176 static void X11DRV_HandleSelectionRequest( HWND hWnd, XSelectionRequestEvent *event, BOOL bIsMultiple );
177
178 /* Clipboard formats */
179
180 static const struct
181 {
182     UINT          id;
183     UINT          data;
184     DRVIMPORTFUNC import;
185     DRVEXPORTFUNC export;
186 } builtin_formats[] =
187 {
188     { CF_TEXT, XA_STRING, X11DRV_CLIPBOARD_ImportXAString, X11DRV_CLIPBOARD_ExportString},
189     { CF_BITMAP, XATOM_WCF_BITMAP, X11DRV_CLIPBOARD_ImportClipboardData, NULL},
190     { CF_METAFILEPICT, XATOM_WCF_METAFILEPICT, X11DRV_CLIPBOARD_ImportMetaFilePict, X11DRV_CLIPBOARD_ExportMetaFilePict },
191     { CF_SYLK, XATOM_WCF_SYLK, X11DRV_CLIPBOARD_ImportClipboardData, X11DRV_CLIPBOARD_ExportClipboardData },
192     { CF_DIF, XATOM_WCF_DIF, X11DRV_CLIPBOARD_ImportClipboardData, X11DRV_CLIPBOARD_ExportClipboardData },
193     { CF_TIFF, XATOM_WCF_TIFF, X11DRV_CLIPBOARD_ImportClipboardData, X11DRV_CLIPBOARD_ExportClipboardData },
194     { CF_OEMTEXT, XATOM_WCF_OEMTEXT, X11DRV_CLIPBOARD_ImportClipboardData, X11DRV_CLIPBOARD_ExportClipboardData },
195     { CF_DIB, XA_PIXMAP, X11DRV_CLIPBOARD_ImportXAPIXMAP, X11DRV_CLIPBOARD_ExportXAPIXMAP },
196     { CF_PALETTE, XATOM_WCF_PALETTE, X11DRV_CLIPBOARD_ImportClipboardData, X11DRV_CLIPBOARD_ExportClipboardData },
197     { CF_PENDATA, XATOM_WCF_PENDATA, X11DRV_CLIPBOARD_ImportClipboardData, X11DRV_CLIPBOARD_ExportClipboardData },
198     { CF_RIFF, XATOM_WCF_RIFF, X11DRV_CLIPBOARD_ImportClipboardData, X11DRV_CLIPBOARD_ExportClipboardData },
199     { CF_WAVE, XATOM_WCF_WAVE, X11DRV_CLIPBOARD_ImportClipboardData, X11DRV_CLIPBOARD_ExportClipboardData },
200     { CF_UNICODETEXT, XATOM_UTF8_STRING, X11DRV_CLIPBOARD_ImportUTF8, X11DRV_CLIPBOARD_ExportString },
201     /* If UTF8_STRING is not available, attempt COMPOUND_TEXT */
202     { CF_UNICODETEXT, XATOM_COMPOUND_TEXT, X11DRV_CLIPBOARD_ImportCompoundText, X11DRV_CLIPBOARD_ExportString },
203     { CF_ENHMETAFILE, XATOM_WCF_ENHMETAFILE, X11DRV_CLIPBOARD_ImportEnhMetaFile, X11DRV_CLIPBOARD_ExportEnhMetaFile },
204     { CF_HDROP, XATOM_WCF_HDROP, X11DRV_CLIPBOARD_ImportClipboardData, X11DRV_CLIPBOARD_ExportClipboardData },
205     { CF_LOCALE, XATOM_WCF_LOCALE, X11DRV_CLIPBOARD_ImportClipboardData, X11DRV_CLIPBOARD_ExportClipboardData },
206     { CF_DIBV5, XATOM_WCF_DIBV5, X11DRV_CLIPBOARD_ImportClipboardData, X11DRV_CLIPBOARD_ExportClipboardData },
207     { CF_OWNERDISPLAY, XATOM_WCF_OWNERDISPLAY, X11DRV_CLIPBOARD_ImportClipboardData, X11DRV_CLIPBOARD_ExportClipboardData },
208     { CF_DSPTEXT, XATOM_WCF_DSPTEXT, X11DRV_CLIPBOARD_ImportClipboardData, X11DRV_CLIPBOARD_ExportClipboardData },
209     { CF_DSPBITMAP, XATOM_WCF_DSPBITMAP, X11DRV_CLIPBOARD_ImportClipboardData, X11DRV_CLIPBOARD_ExportClipboardData },
210     { CF_DSPMETAFILEPICT, XATOM_WCF_DSPMETAFILEPICT, X11DRV_CLIPBOARD_ImportClipboardData, X11DRV_CLIPBOARD_ExportClipboardData },
211     { CF_DSPENHMETAFILE, XATOM_WCF_DSPENHMETAFILE, X11DRV_CLIPBOARD_ImportClipboardData, X11DRV_CLIPBOARD_ExportClipboardData },
212     { CF_DIB, XATOM_image_bmp, X11DRV_CLIPBOARD_ImportImageBmp, X11DRV_CLIPBOARD_ExportImageBmp },
213 };
214
215 static struct list format_list = LIST_INIT( format_list );
216
217 #define GET_ATOM(prop)  (((prop) < FIRST_XATOM) ? (Atom)(prop) : X11DRV_Atoms[(prop) - FIRST_XATOM])
218
219 /* Maps X properties to Windows formats */
220 static const WCHAR wszRichTextFormat[] = {'R','i','c','h',' ','T','e','x','t',' ','F','o','r','m','a','t',0};
221 static const WCHAR wszGIF[] = {'G','I','F',0};
222 static const WCHAR wszJFIF[] = {'J','F','I','F',0};
223 static const WCHAR wszPNG[] = {'P','N','G',0};
224 static const WCHAR wszHTMLFormat[] = {'H','T','M','L',' ','F','o','r','m','a','t',0};
225 static const struct
226 {
227     LPCWSTR lpszFormat;
228     UINT   prop;
229 } PropertyFormatMap[] =
230 {
231     { wszRichTextFormat, XATOM_text_rtf },
232     { wszRichTextFormat, XATOM_text_richtext },
233     { wszGIF, XATOM_image_gif },
234     { wszJFIF, XATOM_image_jpeg },
235     { wszPNG, XATOM_image_png },
236     { wszHTMLFormat, XATOM_HTML_Format }, /* prefer this to text/html */
237 };
238
239
240 /*
241  * Cached clipboard data.
242  */
243 static struct list data_list = LIST_INIT( data_list );
244 static UINT ClipDataCount = 0;
245
246 /*
247  * Clipboard sequence number
248  */
249 static UINT wSeqNo = 0;
250
251 /**************************************************************************
252  *                Internal Clipboard implementation methods
253  **************************************************************************/
254
255 static Window thread_selection_wnd(void)
256 {
257     struct x11drv_thread_data *thread_data = x11drv_init_thread_data();
258     Window w = thread_data->selection_wnd;
259
260     if (!w)
261     {
262         XSetWindowAttributes attr;
263
264         attr.event_mask = (ExposureMask | KeyPressMask | KeyReleaseMask | PointerMotionMask |
265                        ButtonPressMask | ButtonReleaseMask | EnterWindowMask | PropertyChangeMask);
266
267         wine_tsx11_lock();
268         w = XCreateWindow(thread_data->display, root_window, 0, 0, 1, 1, 0, screen_depth,
269                           InputOutput, CopyFromParent, CWEventMask, &attr);
270         wine_tsx11_unlock();
271
272         if (w)
273             thread_data->selection_wnd = w;
274         else
275             FIXME("Failed to create window. Fetching selection data will fail.\n");
276     }
277
278     return w;
279 }
280
281 static const char *debugstr_format( UINT id )
282 {
283     WCHAR buffer[256];
284
285     if (GetClipboardFormatNameW( id, buffer, 256 ))
286         return wine_dbg_sprintf( "%04x %s", id, debugstr_w(buffer) );
287
288     switch (id)
289     {
290 #define BUILTIN(id) case id: return #id;
291     BUILTIN(CF_TEXT)
292     BUILTIN(CF_BITMAP)
293     BUILTIN(CF_METAFILEPICT)
294     BUILTIN(CF_SYLK)
295     BUILTIN(CF_DIF)
296     BUILTIN(CF_TIFF)
297     BUILTIN(CF_OEMTEXT)
298     BUILTIN(CF_DIB)
299     BUILTIN(CF_PALETTE)
300     BUILTIN(CF_PENDATA)
301     BUILTIN(CF_RIFF)
302     BUILTIN(CF_WAVE)
303     BUILTIN(CF_UNICODETEXT)
304     BUILTIN(CF_ENHMETAFILE)
305     BUILTIN(CF_HDROP)
306     BUILTIN(CF_LOCALE)
307     BUILTIN(CF_DIBV5)
308     BUILTIN(CF_OWNERDISPLAY)
309     BUILTIN(CF_DSPTEXT)
310     BUILTIN(CF_DSPBITMAP)
311     BUILTIN(CF_DSPMETAFILEPICT)
312     BUILTIN(CF_DSPENHMETAFILE)
313 #undef BUILTIN
314     default: return wine_dbg_sprintf( "%04x", id );
315     }
316 }
317
318 /**************************************************************************
319  *              X11DRV_InitClipboard
320  */
321 void X11DRV_InitClipboard(void)
322 {
323     UINT i;
324     WINE_CLIPFORMAT *format;
325
326     /* Register built-in formats */
327     for (i = 0; i < sizeof(builtin_formats)/sizeof(builtin_formats[0]); i++)
328     {
329         if (!(format = HeapAlloc( GetProcessHeap(), 0, sizeof(*format )))) break;
330         format->wFormatID       = builtin_formats[i].id;
331         format->drvData         = GET_ATOM(builtin_formats[i].data);
332         format->lpDrvImportFunc = builtin_formats[i].import;
333         format->lpDrvExportFunc = builtin_formats[i].export;
334         list_add_tail( &format_list, &format->entry );
335     }
336
337     /* Register known mapping between window formats and X properties */
338     for (i = 0; i < sizeof(PropertyFormatMap)/sizeof(PropertyFormatMap[0]); i++)
339         X11DRV_CLIPBOARD_InsertClipboardFormat( RegisterClipboardFormatW(PropertyFormatMap[i].lpszFormat),
340                                                 GET_ATOM(PropertyFormatMap[i].prop));
341
342     /* Set up a conversion function from "HTML Format" to "text/html" */
343     format = X11DRV_CLIPBOARD_InsertClipboardFormat( RegisterClipboardFormatW(wszHTMLFormat),
344                                                      GET_ATOM(XATOM_text_html));
345     format->lpDrvExportFunc = X11DRV_CLIPBOARD_ExportTextHtml;
346 }
347
348
349 /**************************************************************************
350  *                intern_atoms
351  *
352  * Intern atoms for formats that don't have one yet.
353  */
354 static void intern_atoms(void)
355 {
356     LPWINE_CLIPFORMAT format;
357     int i, count, len;
358     char **names;
359     Atom *atoms;
360     Display *display;
361     WCHAR buffer[256];
362
363     count = 0;
364     LIST_FOR_EACH_ENTRY( format, &format_list, WINE_CLIPFORMAT, entry )
365         if (!format->drvData) count++;
366     if (!count) return;
367
368     display = thread_init_display();
369
370     names = HeapAlloc( GetProcessHeap(), 0, count * sizeof(*names) );
371     atoms = HeapAlloc( GetProcessHeap(), 0, count * sizeof(*atoms) );
372
373     i = 0;
374     LIST_FOR_EACH_ENTRY( format, &format_list, WINE_CLIPFORMAT, entry )
375         if (!format->drvData) {
376             GetClipboardFormatNameW( format->wFormatID, buffer, 256 );
377             len = WideCharToMultiByte(CP_UNIXCP, 0, buffer, -1, NULL, 0, NULL, NULL);
378             names[i] = HeapAlloc(GetProcessHeap(), 0, len);
379             WideCharToMultiByte(CP_UNIXCP, 0, buffer, -1, names[i++], len, NULL, NULL);
380         }
381
382     wine_tsx11_lock();
383     XInternAtoms( display, names, count, False, atoms );
384     wine_tsx11_unlock();
385
386     i = 0;
387     LIST_FOR_EACH_ENTRY( format, &format_list, WINE_CLIPFORMAT, entry )
388         if (!format->drvData) {
389             HeapFree(GetProcessHeap(), 0, names[i]);
390             format->drvData = atoms[i++];
391         }
392
393     HeapFree( GetProcessHeap(), 0, names );
394     HeapFree( GetProcessHeap(), 0, atoms );
395 }
396
397
398 /**************************************************************************
399  *              register_format
400  *
401  * Register a custom X clipboard format.
402  */
403 static WINE_CLIPFORMAT *register_format( UINT id, Atom prop )
404 {
405     LPWINE_CLIPFORMAT lpFormat;
406
407     /* walk format chain to see if it's already registered */
408     LIST_FOR_EACH_ENTRY( lpFormat, &format_list, WINE_CLIPFORMAT, entry )
409         if (lpFormat->wFormatID == id) return lpFormat;
410
411     return X11DRV_CLIPBOARD_InsertClipboardFormat(id, prop);
412 }
413
414
415 /**************************************************************************
416  *                X11DRV_CLIPBOARD_LookupProperty
417  */
418 static LPWINE_CLIPFORMAT X11DRV_CLIPBOARD_LookupProperty(LPWINE_CLIPFORMAT current, UINT drvData)
419 {
420     for (;;)
421     {
422         struct list *ptr = current ? &current->entry : &format_list;
423         BOOL need_intern = FALSE;
424
425         while ((ptr = list_next( &format_list, ptr )))
426         {
427             LPWINE_CLIPFORMAT lpFormat = LIST_ENTRY( ptr, WINE_CLIPFORMAT, entry );
428             if (lpFormat->drvData == drvData) return lpFormat;
429             if (!lpFormat->drvData) need_intern = TRUE;
430         }
431         if (!need_intern) return NULL;
432         intern_atoms();
433         /* restart the search for the new atoms */
434     }
435 }
436
437
438 /**************************************************************************
439  *               X11DRV_CLIPBOARD_LookupData
440  */
441 static LPWINE_CLIPDATA X11DRV_CLIPBOARD_LookupData(DWORD wID)
442 {
443     WINE_CLIPDATA *data;
444
445     LIST_FOR_EACH_ENTRY( data, &data_list, WINE_CLIPDATA, entry )
446         if (data->wFormatID == wID) return data;
447
448     return NULL;
449 }
450
451
452 /**************************************************************************
453  *              InsertClipboardFormat
454  */
455 static WINE_CLIPFORMAT *X11DRV_CLIPBOARD_InsertClipboardFormat( UINT id, Atom prop )
456 {
457     LPWINE_CLIPFORMAT lpNewFormat;
458
459     /* allocate storage for new format entry */
460     lpNewFormat = HeapAlloc(GetProcessHeap(), 0, sizeof(WINE_CLIPFORMAT));
461
462     if(lpNewFormat == NULL) 
463     {
464         WARN("No more memory for a new format!\n");
465         return NULL;
466     }
467     lpNewFormat->wFormatID = id;
468     lpNewFormat->drvData = prop;
469     lpNewFormat->lpDrvImportFunc = X11DRV_CLIPBOARD_ImportClipboardData;
470     lpNewFormat->lpDrvExportFunc = X11DRV_CLIPBOARD_ExportClipboardData;
471
472     list_add_tail( &format_list, &lpNewFormat->entry );
473
474     TRACE("Registering format %s drvData %d\n",
475           debugstr_format(lpNewFormat->wFormatID), lpNewFormat->drvData);
476
477     return lpNewFormat;
478 }
479
480
481
482
483 /**************************************************************************
484  *                      X11DRV_CLIPBOARD_GetClipboardInfo
485  */
486 static BOOL X11DRV_CLIPBOARD_GetClipboardInfo(LPCLIPBOARDINFO cbInfo)
487 {
488     BOOL bRet = FALSE;
489
490     SERVER_START_REQ( set_clipboard_info )
491     {
492         req->flags = 0;
493
494         if (wine_server_call_err( req ))
495         {
496             ERR("Failed to get clipboard owner.\n");
497         }
498         else
499         {
500             cbInfo->hWndOpen = wine_server_ptr_handle( reply->old_clipboard );
501             cbInfo->hWndOwner = wine_server_ptr_handle( reply->old_owner );
502             cbInfo->hWndViewer = wine_server_ptr_handle( reply->old_viewer );
503             cbInfo->seqno = reply->seqno;
504             cbInfo->flags = reply->flags;
505
506             bRet = TRUE;
507         }
508     }
509     SERVER_END_REQ;
510
511     return bRet;
512 }
513
514
515 /**************************************************************************
516  *      X11DRV_CLIPBOARD_ReleaseOwnership
517  */
518 static BOOL X11DRV_CLIPBOARD_ReleaseOwnership(void)
519 {
520     BOOL bRet = FALSE;
521
522     SERVER_START_REQ( set_clipboard_info )
523     {
524         req->flags = SET_CB_RELOWNER | SET_CB_SEQNO;
525
526         if (wine_server_call_err( req ))
527         {
528             ERR("Failed to set clipboard.\n");
529         }
530         else
531         {
532             bRet = TRUE;
533         }
534     }
535     SERVER_END_REQ;
536
537     return bRet;
538 }
539
540
541
542 /**************************************************************************
543  *                      X11DRV_CLIPBOARD_InsertClipboardData
544  *
545  * Caller *must* have the clipboard open and be the owner.
546  */
547 static BOOL X11DRV_CLIPBOARD_InsertClipboardData(UINT wFormatID, HANDLE hData, DWORD flags,
548                                                  LPWINE_CLIPFORMAT lpFormat, BOOL override)
549 {
550     LPWINE_CLIPDATA lpData = X11DRV_CLIPBOARD_LookupData(wFormatID);
551
552     TRACE("format=%04x lpData=%p hData=%p flags=0x%08x lpFormat=%p override=%d\n",
553         wFormatID, lpData, hData, flags, lpFormat, override);
554
555     /* make sure the format exists */
556     if (!lpFormat) register_format( wFormatID, 0 );
557
558     if (lpData && !override)
559         return TRUE;
560
561     if (lpData)
562     {
563         X11DRV_CLIPBOARD_FreeData(lpData);
564
565         lpData->hData = hData;
566     }
567     else
568     {
569         lpData = HeapAlloc(GetProcessHeap(), 0, sizeof(WINE_CLIPDATA));
570
571         lpData->wFormatID = wFormatID;
572         lpData->hData = hData;
573         lpData->lpFormat = lpFormat;
574         lpData->drvData = 0;
575
576         list_add_tail( &data_list, &lpData->entry );
577         ClipDataCount++;
578     }
579
580     lpData->wFlags = flags;
581
582     return TRUE;
583 }
584
585
586 /**************************************************************************
587  *                      X11DRV_CLIPBOARD_FreeData
588  *
589  * Free clipboard data handle.
590  */
591 static void X11DRV_CLIPBOARD_FreeData(LPWINE_CLIPDATA lpData)
592 {
593     TRACE("%04x\n", lpData->wFormatID);
594
595     if ((lpData->wFormatID >= CF_GDIOBJFIRST &&
596         lpData->wFormatID <= CF_GDIOBJLAST) || 
597         lpData->wFormatID == CF_BITMAP || 
598         lpData->wFormatID == CF_DIB || 
599         lpData->wFormatID == CF_PALETTE)
600     {
601       if (lpData->hData)
602         DeleteObject(lpData->hData);
603
604       if ((lpData->wFormatID == CF_DIB) && lpData->drvData)
605           XFreePixmap(gdi_display, lpData->drvData);
606     }
607     else if (lpData->wFormatID == CF_METAFILEPICT)
608     {
609       if (lpData->hData)
610       {
611         DeleteMetaFile(((METAFILEPICT *)GlobalLock( lpData->hData ))->hMF );
612         GlobalFree(lpData->hData);
613       }
614     }
615     else if (lpData->wFormatID == CF_ENHMETAFILE)
616     {
617         if (lpData->hData)
618             DeleteEnhMetaFile(lpData->hData);
619     }
620     else if (lpData->wFormatID < CF_PRIVATEFIRST ||
621              lpData->wFormatID > CF_PRIVATELAST)
622     {
623       if (lpData->hData)
624         GlobalFree(lpData->hData);
625     }
626
627     lpData->hData = 0;
628     lpData->drvData = 0;
629 }
630
631
632 /**************************************************************************
633  *                      X11DRV_CLIPBOARD_UpdateCache
634  */
635 static BOOL X11DRV_CLIPBOARD_UpdateCache(LPCLIPBOARDINFO lpcbinfo)
636 {
637     BOOL bret = TRUE;
638
639     if (!X11DRV_CLIPBOARD_IsSelectionOwner())
640     {
641         if (!X11DRV_CLIPBOARD_GetClipboardInfo(lpcbinfo))
642         {
643             ERR("Failed to retrieve clipboard information.\n");
644             bret = FALSE;
645         }
646         else if (wSeqNo < lpcbinfo->seqno)
647         {
648             X11DRV_EmptyClipboard(TRUE);
649
650             if (X11DRV_CLIPBOARD_QueryAvailableData(thread_init_display(), lpcbinfo) < 0)
651             {
652                 ERR("Failed to cache clipboard data owned by another process.\n");
653                 bret = FALSE;
654             }
655             else
656             {
657                 X11DRV_EndClipboardUpdate();
658             }
659
660             wSeqNo = lpcbinfo->seqno;
661         }
662     }
663
664     return bret;
665 }
666
667
668 /**************************************************************************
669  *                      X11DRV_CLIPBOARD_RenderFormat
670  */
671 static BOOL X11DRV_CLIPBOARD_RenderFormat(Display *display, LPWINE_CLIPDATA lpData)
672 {
673     BOOL bret = TRUE;
674
675     TRACE(" 0x%04x hData(%p)\n", lpData->wFormatID, lpData->hData);
676
677     if (lpData->hData) return bret; /* Already rendered */
678
679     if (lpData->wFlags & CF_FLAG_SYNTHESIZED)
680         bret = X11DRV_CLIPBOARD_RenderSynthesizedFormat(display, lpData);
681     else if (!X11DRV_CLIPBOARD_IsSelectionOwner())
682     {
683         if (!X11DRV_CLIPBOARD_ReadSelectionData(display, lpData))
684         {
685             ERR("Failed to cache clipboard data owned by another process. Format=%04x\n",
686                 lpData->wFormatID);
687             bret = FALSE;
688         }
689     }
690     else
691     {
692         CLIPBOARDINFO cbInfo;
693
694         if (X11DRV_CLIPBOARD_GetClipboardInfo(&cbInfo) && cbInfo.hWndOwner)
695         {
696             /* Send a WM_RENDERFORMAT message to notify the owner to render the
697              * data requested into the clipboard.
698              */
699             TRACE("Sending WM_RENDERFORMAT message to hwnd(%p)\n", cbInfo.hWndOwner);
700             SendMessageW(cbInfo.hWndOwner, WM_RENDERFORMAT, lpData->wFormatID, 0);
701
702             if (!lpData->hData) bret = FALSE;
703         }
704         else
705         {
706             ERR("hWndClipOwner is lost!\n");
707             bret = FALSE;
708         }
709     }
710
711     return bret;
712 }
713
714
715 /**************************************************************************
716  *                      CLIPBOARD_ConvertText
717  * Returns number of required/converted characters - not bytes!
718  */
719 static INT CLIPBOARD_ConvertText(WORD src_fmt, void const *src, INT src_size,
720                                  WORD dst_fmt, void *dst, INT dst_size)
721 {
722     UINT cp;
723
724     if(src_fmt == CF_UNICODETEXT)
725     {
726         switch(dst_fmt)
727         {
728         case CF_TEXT:
729             cp = CP_ACP;
730             break;
731         case CF_OEMTEXT:
732             cp = CP_OEMCP;
733             break;
734         default:
735             return 0;
736         }
737         return WideCharToMultiByte(cp, 0, src, src_size, dst, dst_size, NULL, NULL);
738     }
739
740     if(dst_fmt == CF_UNICODETEXT)
741     {
742         switch(src_fmt)
743         {
744         case CF_TEXT:
745             cp = CP_ACP;
746             break;
747         case CF_OEMTEXT:
748             cp = CP_OEMCP;
749             break;
750         default:
751             return 0;
752         }
753         return MultiByteToWideChar(cp, 0, src, src_size, dst, dst_size);
754     }
755
756     if(!dst_size) return src_size;
757
758     if(dst_size > src_size) dst_size = src_size;
759
760     if(src_fmt == CF_TEXT )
761         CharToOemBuffA(src, dst, dst_size);
762     else
763         OemToCharBuffA(src, dst, dst_size);
764
765     return dst_size;
766 }
767
768
769 /**************************************************************************
770  *                      X11DRV_CLIPBOARD_RenderSynthesizedFormat
771  */
772 static BOOL X11DRV_CLIPBOARD_RenderSynthesizedFormat(Display *display, LPWINE_CLIPDATA lpData)
773 {
774     BOOL bret = FALSE;
775
776     TRACE("\n");
777
778     if (lpData->wFlags & CF_FLAG_SYNTHESIZED)
779     {
780         UINT wFormatID = lpData->wFormatID;
781
782         if (wFormatID == CF_UNICODETEXT || wFormatID == CF_TEXT || wFormatID == CF_OEMTEXT)
783             bret = X11DRV_CLIPBOARD_RenderSynthesizedText(display, wFormatID);
784         else 
785         {
786             switch (wFormatID)
787             {
788                 case CF_DIB:
789                     bret = X11DRV_CLIPBOARD_RenderSynthesizedDIB( display );
790                     break;
791
792                 case CF_BITMAP:
793                     bret = X11DRV_CLIPBOARD_RenderSynthesizedBitmap( display );
794                     break;
795
796                 case CF_ENHMETAFILE:
797                     bret = X11DRV_CLIPBOARD_RenderSynthesizedEnhMetaFile( display );
798                     break;
799
800                 case CF_METAFILEPICT:
801                     FIXME("Synthesizing CF_METAFILEPICT not implemented\n");
802                     break;
803
804                 default:
805                     FIXME("Called to synthesize unknown format 0x%08x\n", wFormatID);
806                     break;
807             }
808         }
809
810         lpData->wFlags &= ~CF_FLAG_SYNTHESIZED;
811     }
812
813     return bret;
814 }
815
816
817 /**************************************************************************
818  *                      X11DRV_CLIPBOARD_RenderSynthesizedText
819  *
820  * Renders synthesized text
821  */
822 static BOOL X11DRV_CLIPBOARD_RenderSynthesizedText(Display *display, UINT wFormatID)
823 {
824     LPCSTR lpstrS;
825     LPSTR  lpstrT;
826     HANDLE hData;
827     INT src_chars, dst_chars, alloc_size;
828     LPWINE_CLIPDATA lpSource = NULL;
829
830     TRACE("%04x\n", wFormatID);
831
832     if ((lpSource = X11DRV_CLIPBOARD_LookupData(wFormatID)) &&
833         lpSource->hData)
834         return TRUE;
835
836     /* Look for rendered source or non-synthesized source */
837     if ((lpSource = X11DRV_CLIPBOARD_LookupData(CF_UNICODETEXT)) &&
838         (!(lpSource->wFlags & CF_FLAG_SYNTHESIZED) || lpSource->hData))
839     {
840         TRACE("UNICODETEXT -> %04x\n", wFormatID);
841     }
842     else if ((lpSource = X11DRV_CLIPBOARD_LookupData(CF_TEXT)) &&
843         (!(lpSource->wFlags & CF_FLAG_SYNTHESIZED) || lpSource->hData))
844     {
845         TRACE("TEXT -> %04x\n", wFormatID);
846     }
847     else if ((lpSource = X11DRV_CLIPBOARD_LookupData(CF_OEMTEXT)) &&
848         (!(lpSource->wFlags & CF_FLAG_SYNTHESIZED) || lpSource->hData))
849     {
850         TRACE("OEMTEXT -> %04x\n", wFormatID);
851     }
852
853     if (!lpSource || (lpSource->wFlags & CF_FLAG_SYNTHESIZED &&
854         !lpSource->hData))
855         return FALSE;
856
857     /* Ask the clipboard owner to render the source text if necessary */
858     if (!lpSource->hData && !X11DRV_CLIPBOARD_RenderFormat(display, lpSource))
859         return FALSE;
860
861     lpstrS = GlobalLock(lpSource->hData);
862     if (!lpstrS)
863         return FALSE;
864
865     /* Text always NULL terminated */
866     if(lpSource->wFormatID == CF_UNICODETEXT)
867         src_chars = strlenW((LPCWSTR)lpstrS) + 1;
868     else
869         src_chars = strlen(lpstrS) + 1;
870
871     /* Calculate number of characters in the destination buffer */
872     dst_chars = CLIPBOARD_ConvertText(lpSource->wFormatID, lpstrS, 
873         src_chars, wFormatID, NULL, 0);
874
875     if (!dst_chars)
876         return FALSE;
877
878     TRACE("Converting from '%04x' to '%04x', %i chars\n",
879         lpSource->wFormatID, wFormatID, src_chars);
880
881     /* Convert characters to bytes */
882     if(wFormatID == CF_UNICODETEXT)
883         alloc_size = dst_chars * sizeof(WCHAR);
884     else
885         alloc_size = dst_chars;
886
887     hData = GlobalAlloc(GMEM_ZEROINIT | GMEM_MOVEABLE |
888         GMEM_DDESHARE, alloc_size);
889
890     lpstrT = GlobalLock(hData);
891
892     if (lpstrT)
893     {
894         CLIPBOARD_ConvertText(lpSource->wFormatID, lpstrS, src_chars,
895             wFormatID, lpstrT, dst_chars);
896         GlobalUnlock(hData);
897     }
898
899     GlobalUnlock(lpSource->hData);
900
901     return X11DRV_CLIPBOARD_InsertClipboardData(wFormatID, hData, 0, NULL, TRUE);
902 }
903
904
905 /***********************************************************************
906  *           bitmap_info_size
907  *
908  * Return the size of the bitmap info structure including color table.
909  */
910 static int bitmap_info_size( const BITMAPINFO * info, WORD coloruse )
911 {
912     unsigned int colors, size, masks = 0;
913
914     if (info->bmiHeader.biSize == sizeof(BITMAPCOREHEADER))
915     {
916         const BITMAPCOREHEADER *core = (const BITMAPCOREHEADER *)info;
917         colors = (core->bcBitCount <= 8) ? 1 << core->bcBitCount : 0;
918         return sizeof(BITMAPCOREHEADER) + colors *
919              ((coloruse == DIB_RGB_COLORS) ? sizeof(RGBTRIPLE) : sizeof(WORD));
920     }
921     else  /* assume BITMAPINFOHEADER */
922     {
923         colors = info->bmiHeader.biClrUsed;
924         if (!colors && (info->bmiHeader.biBitCount <= 8))
925             colors = 1 << info->bmiHeader.biBitCount;
926         if (info->bmiHeader.biCompression == BI_BITFIELDS) masks = 3;
927         size = max( info->bmiHeader.biSize, sizeof(BITMAPINFOHEADER) + masks * sizeof(DWORD) );
928         return size + colors * ((coloruse == DIB_RGB_COLORS) ? sizeof(RGBQUAD) : sizeof(WORD));
929     }
930 }
931
932
933 /***********************************************************************
934  *           create_dib_from_bitmap
935  *
936  *  Allocates a packed DIB and copies the bitmap data into it.
937  */
938 static HGLOBAL create_dib_from_bitmap(HBITMAP hBmp)
939 {
940     BITMAP bmp;
941     HDC hdc;
942     HGLOBAL hPackedDIB;
943     LPBYTE pPackedDIB;
944     LPBITMAPINFOHEADER pbmiHeader;
945     unsigned int cDataSize, cPackedSize, OffsetBits;
946     int nLinesCopied;
947
948     if (!GetObjectW( hBmp, sizeof(bmp), &bmp )) return 0;
949
950     /*
951      * A packed DIB contains a BITMAPINFO structure followed immediately by
952      * an optional color palette and the pixel data.
953      */
954
955     /* Calculate the size of the packed DIB */
956     cDataSize = abs( bmp.bmHeight ) * (((bmp.bmWidth * bmp.bmBitsPixel + 31) / 8) & ~3);
957     cPackedSize = sizeof(BITMAPINFOHEADER)
958                   + ( (bmp.bmBitsPixel <= 8) ? (sizeof(RGBQUAD) * (1 << bmp.bmBitsPixel)) : 0 )
959                   + cDataSize;
960     /* Get the offset to the bits */
961     OffsetBits = cPackedSize - cDataSize;
962
963     /* Allocate the packed DIB */
964     TRACE("\tAllocating packed DIB of size %d\n", cPackedSize);
965     hPackedDIB = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE /*| GMEM_ZEROINIT*/,
966                              cPackedSize );
967     if ( !hPackedDIB )
968     {
969         WARN("Could not allocate packed DIB!\n");
970         return 0;
971     }
972
973     /* A packed DIB starts with a BITMAPINFOHEADER */
974     pPackedDIB = GlobalLock(hPackedDIB);
975     pbmiHeader = (LPBITMAPINFOHEADER)pPackedDIB;
976
977     /* Init the BITMAPINFOHEADER */
978     pbmiHeader->biSize = sizeof(BITMAPINFOHEADER);
979     pbmiHeader->biWidth = bmp.bmWidth;
980     pbmiHeader->biHeight = bmp.bmHeight;
981     pbmiHeader->biPlanes = 1;
982     pbmiHeader->biBitCount = bmp.bmBitsPixel;
983     pbmiHeader->biCompression = BI_RGB;
984     pbmiHeader->biSizeImage = 0;
985     pbmiHeader->biXPelsPerMeter = pbmiHeader->biYPelsPerMeter = 0;
986     pbmiHeader->biClrUsed = 0;
987     pbmiHeader->biClrImportant = 0;
988
989     /* Retrieve the DIB bits from the bitmap and fill in the
990      * DIB color table if present */
991     hdc = GetDC( 0 );
992     nLinesCopied = GetDIBits(hdc,                       /* Handle to device context */
993                              hBmp,                      /* Handle to bitmap */
994                              0,                         /* First scan line to set in dest bitmap */
995                              bmp.bmHeight,              /* Number of scan lines to copy */
996                              pPackedDIB + OffsetBits,   /* [out] Address of array for bitmap bits */
997                              (LPBITMAPINFO) pbmiHeader, /* [out] Address of BITMAPINFO structure */
998                              0);                        /* RGB or palette index */
999     GlobalUnlock(hPackedDIB);
1000     ReleaseDC( 0, hdc );
1001
1002     /* Cleanup if GetDIBits failed */
1003     if (nLinesCopied != bmp.bmHeight)
1004     {
1005         TRACE("\tGetDIBits returned %d. Actual lines=%d\n", nLinesCopied, bmp.bmHeight);
1006         GlobalFree(hPackedDIB);
1007         hPackedDIB = 0;
1008     }
1009     return hPackedDIB;
1010 }
1011
1012
1013 /**************************************************************************
1014  *                      X11DRV_CLIPBOARD_RenderSynthesizedDIB
1015  *
1016  * Renders synthesized DIB
1017  */
1018 static BOOL X11DRV_CLIPBOARD_RenderSynthesizedDIB(Display *display)
1019 {
1020     BOOL bret = FALSE;
1021     LPWINE_CLIPDATA lpSource = NULL;
1022
1023     TRACE("\n");
1024
1025     if ((lpSource = X11DRV_CLIPBOARD_LookupData(CF_DIB)) && lpSource->hData)
1026     {
1027         bret = TRUE;
1028     }
1029     /* If we have a bitmap and it's not synthesized or it has been rendered */
1030     else if ((lpSource = X11DRV_CLIPBOARD_LookupData(CF_BITMAP)) &&
1031         (!(lpSource->wFlags & CF_FLAG_SYNTHESIZED) || lpSource->hData))
1032     {
1033         /* Render source if required */
1034         if (lpSource->hData || X11DRV_CLIPBOARD_RenderFormat(display, lpSource))
1035         {
1036             HGLOBAL hData = create_dib_from_bitmap( lpSource->hData );
1037             if (hData)
1038             {
1039                 X11DRV_CLIPBOARD_InsertClipboardData(CF_DIB, hData, 0, NULL, TRUE);
1040                 bret = TRUE;
1041             }
1042         }
1043     }
1044
1045     return bret;
1046 }
1047
1048
1049 /**************************************************************************
1050  *                      X11DRV_CLIPBOARD_RenderSynthesizedBitmap
1051  *
1052  * Renders synthesized bitmap
1053  */
1054 static BOOL X11DRV_CLIPBOARD_RenderSynthesizedBitmap(Display *display)
1055 {
1056     BOOL bret = FALSE;
1057     LPWINE_CLIPDATA lpSource = NULL;
1058
1059     TRACE("\n");
1060
1061     if ((lpSource = X11DRV_CLIPBOARD_LookupData(CF_BITMAP)) && lpSource->hData)
1062     {
1063         bret = TRUE;
1064     }
1065     /* If we have a dib and it's not synthesized or it has been rendered */
1066     else if ((lpSource = X11DRV_CLIPBOARD_LookupData(CF_DIB)) &&
1067         (!(lpSource->wFlags & CF_FLAG_SYNTHESIZED) || lpSource->hData))
1068     {
1069         /* Render source if required */
1070         if (lpSource->hData || X11DRV_CLIPBOARD_RenderFormat(display, lpSource))
1071         {
1072             HDC hdc;
1073             HBITMAP hData = NULL;
1074             unsigned int offset;
1075             LPBITMAPINFOHEADER lpbmih;
1076
1077             hdc = GetDC(NULL);
1078             lpbmih = GlobalLock(lpSource->hData);
1079             if (lpbmih)
1080             {
1081                 offset = sizeof(BITMAPINFOHEADER)
1082                       + ((lpbmih->biBitCount <= 8) ? (sizeof(RGBQUAD) *
1083                         (1 << lpbmih->biBitCount)) : 0);
1084
1085                 hData = CreateDIBitmap(hdc, lpbmih, CBM_INIT, (LPBYTE)lpbmih +
1086                     offset, (LPBITMAPINFO) lpbmih, DIB_RGB_COLORS);
1087
1088                 GlobalUnlock(lpSource->hData);
1089             }
1090             ReleaseDC(NULL, hdc);
1091
1092             if (hData)
1093             {
1094                 X11DRV_CLIPBOARD_InsertClipboardData(CF_BITMAP, hData, 0, NULL, TRUE);
1095                 bret = TRUE;
1096             }
1097         }
1098     }
1099
1100     return bret;
1101 }
1102
1103
1104 /**************************************************************************
1105  *                      X11DRV_CLIPBOARD_RenderSynthesizedEnhMetaFile
1106  */
1107 static BOOL X11DRV_CLIPBOARD_RenderSynthesizedEnhMetaFile(Display *display)
1108 {
1109     LPWINE_CLIPDATA lpSource = NULL;
1110
1111     TRACE("\n");
1112
1113     if ((lpSource = X11DRV_CLIPBOARD_LookupData(CF_ENHMETAFILE)) && lpSource->hData)
1114         return TRUE;
1115     /* If we have a MF pict and it's not synthesized or it has been rendered */
1116     else if ((lpSource = X11DRV_CLIPBOARD_LookupData(CF_METAFILEPICT)) &&
1117         (!(lpSource->wFlags & CF_FLAG_SYNTHESIZED) || lpSource->hData))
1118     {
1119         /* Render source if required */
1120         if (lpSource->hData || X11DRV_CLIPBOARD_RenderFormat(display, lpSource))
1121         {
1122             METAFILEPICT *pmfp;
1123             HENHMETAFILE hData = NULL;
1124
1125             pmfp = GlobalLock(lpSource->hData);
1126             if (pmfp)
1127             {
1128                 UINT size_mf_bits = GetMetaFileBitsEx(pmfp->hMF, 0, NULL);
1129                 void *mf_bits = HeapAlloc(GetProcessHeap(), 0, size_mf_bits);
1130                 if (mf_bits)
1131                 {
1132                     GetMetaFileBitsEx(pmfp->hMF, size_mf_bits, mf_bits);
1133                     hData = SetWinMetaFileBits(size_mf_bits, mf_bits, NULL, pmfp);
1134                     HeapFree(GetProcessHeap(), 0, mf_bits);
1135                 }
1136                 GlobalUnlock(lpSource->hData);
1137             }
1138
1139             if (hData)
1140             {
1141                 X11DRV_CLIPBOARD_InsertClipboardData(CF_ENHMETAFILE, hData, 0, NULL, TRUE);
1142                 return TRUE;
1143             }
1144         }
1145     }
1146
1147     return FALSE;
1148 }
1149
1150
1151 /**************************************************************************
1152  *              X11DRV_CLIPBOARD_ImportXAString
1153  *
1154  *  Import XA_STRING, converting the string to CF_TEXT.
1155  */
1156 static HANDLE X11DRV_CLIPBOARD_ImportXAString(Display *display, Window w, Atom prop)
1157 {
1158     LPBYTE lpdata;
1159     unsigned long cbytes;
1160     LPSTR lpstr;
1161     unsigned long i, inlcount = 0;
1162     HANDLE hText = 0;
1163
1164     if (!X11DRV_CLIPBOARD_ReadProperty(display, w, prop, &lpdata, &cbytes))
1165         return 0;
1166
1167     for (i = 0; i <= cbytes; i++)
1168     {
1169         if (lpdata[i] == '\n')
1170             inlcount++;
1171     }
1172
1173     if ((hText = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE, cbytes + inlcount + 1)))
1174     {
1175         lpstr = GlobalLock(hText);
1176
1177         for (i = 0, inlcount = 0; i <= cbytes; i++)
1178         {
1179             if (lpdata[i] == '\n')
1180                 lpstr[inlcount++] = '\r';
1181
1182             lpstr[inlcount++] = lpdata[i];
1183         }
1184
1185         GlobalUnlock(hText);
1186     }
1187
1188     /* Free the retrieved property data */
1189     HeapFree(GetProcessHeap(), 0, lpdata);
1190
1191     return hText;
1192 }
1193
1194
1195 /**************************************************************************
1196  *              X11DRV_CLIPBOARD_ImportUTF8
1197  *
1198  *  Import XA_STRING, converting the string to CF_UNICODE.
1199  */
1200 static HANDLE X11DRV_CLIPBOARD_ImportUTF8(Display *display, Window w, Atom prop)
1201 {
1202     LPBYTE lpdata;
1203     unsigned long cbytes;
1204     LPSTR lpstr;
1205     unsigned long i, inlcount = 0;
1206     HANDLE hUnicodeText = 0;
1207
1208     if (!X11DRV_CLIPBOARD_ReadProperty(display, w, prop, &lpdata, &cbytes))
1209         return 0;
1210
1211     for (i = 0; i <= cbytes; i++)
1212     {
1213         if (lpdata[i] == '\n')
1214             inlcount++;
1215     }
1216
1217     if ((lpstr = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, cbytes + inlcount + 1)))
1218     {
1219         UINT count;
1220
1221         for (i = 0, inlcount = 0; i <= cbytes; i++)
1222         {
1223             if (lpdata[i] == '\n')
1224                 lpstr[inlcount++] = '\r';
1225
1226             lpstr[inlcount++] = lpdata[i];
1227         }
1228
1229         count = MultiByteToWideChar(CP_UTF8, 0, lpstr, -1, NULL, 0);
1230         hUnicodeText = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE, count * sizeof(WCHAR));
1231
1232         if (hUnicodeText)
1233         {
1234             WCHAR *textW = GlobalLock(hUnicodeText);
1235             MultiByteToWideChar(CP_UTF8, 0, lpstr, -1, textW, count);
1236             GlobalUnlock(hUnicodeText);
1237         }
1238
1239         HeapFree(GetProcessHeap(), 0, lpstr);
1240     }
1241
1242     /* Free the retrieved property data */
1243     HeapFree(GetProcessHeap(), 0, lpdata);
1244
1245     return hUnicodeText;
1246 }
1247
1248
1249 /**************************************************************************
1250  *              X11DRV_CLIPBOARD_ImportCompoundText
1251  *
1252  *  Import COMPOUND_TEXT to CF_UNICODE
1253  */
1254 static HANDLE X11DRV_CLIPBOARD_ImportCompoundText(Display *display, Window w, Atom prop)
1255 {
1256     int i, j, ret;
1257     char** srcstr;
1258     int count, lcount;
1259     int srclen, destlen;
1260     HANDLE hUnicodeText;
1261     XTextProperty txtprop;
1262
1263     if (!X11DRV_CLIPBOARD_ReadProperty(display, w, prop, &txtprop.value, &txtprop.nitems))
1264     {
1265         return 0;
1266     }
1267
1268     txtprop.encoding = x11drv_atom(COMPOUND_TEXT);
1269     txtprop.format = 8;
1270     wine_tsx11_lock();
1271     ret = XmbTextPropertyToTextList(display, &txtprop, &srcstr, &count);
1272     wine_tsx11_unlock();
1273     HeapFree(GetProcessHeap(), 0, txtprop.value);
1274     if (ret != Success || !count) return 0;
1275
1276     TRACE("Importing %d line(s)\n", count);
1277
1278     /* Compute number of lines */
1279     srclen = strlen(srcstr[0]);
1280     for (i = 0, lcount = 0; i <= srclen; i++)
1281     {
1282         if (srcstr[0][i] == '\n')
1283             lcount++;
1284     }
1285
1286     destlen = MultiByteToWideChar(CP_UNIXCP, 0, srcstr[0], -1, NULL, 0);
1287
1288     TRACE("lcount = %d, destlen=%d, srcstr %s\n", lcount, destlen, srcstr[0]);
1289
1290     if ((hUnicodeText = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE, (destlen + lcount + 1) * sizeof(WCHAR))))
1291     {
1292         WCHAR *deststr = GlobalLock(hUnicodeText);
1293         MultiByteToWideChar(CP_UNIXCP, 0, srcstr[0], -1, deststr, destlen);
1294
1295         if (lcount)
1296         {
1297             for (i = destlen - 1, j = destlen + lcount - 1; i >= 0; i--, j--)
1298             {
1299                 deststr[j] = deststr[i];
1300
1301                 if (deststr[i] == '\n')
1302                     deststr[--j] = '\r';
1303             }
1304         }
1305
1306         GlobalUnlock(hUnicodeText);
1307     }
1308
1309     wine_tsx11_lock();
1310     XFreeStringList(srcstr);
1311     wine_tsx11_unlock();
1312
1313     return hUnicodeText;
1314 }
1315
1316
1317 /**************************************************************************
1318  *              X11DRV_CLIPBOARD_ImportXAPIXMAP
1319  *
1320  *  Import XA_PIXMAP, converting the image to CF_DIB.
1321  */
1322 static HANDLE X11DRV_CLIPBOARD_ImportXAPIXMAP(Display *display, Window w, Atom prop)
1323 {
1324     LPBYTE lpdata;
1325     unsigned long cbytes;
1326     Pixmap *pPixmap;
1327     HANDLE hClipData = 0;
1328
1329     if (X11DRV_CLIPBOARD_ReadProperty(display, w, prop, &lpdata, &cbytes))
1330     {
1331         XVisualInfo vis;
1332         char buffer[FIELD_OFFSET( BITMAPINFO, bmiColors[256] )];
1333         BITMAPINFO *info = (BITMAPINFO *)buffer;
1334         struct gdi_image_bits bits;
1335         Window root;
1336         int x,y;               /* Unused */
1337         unsigned border_width; /* Unused */
1338         unsigned int depth, width, height;
1339
1340         pPixmap = (Pixmap *) lpdata;
1341
1342         /* Get the Pixmap dimensions and bit depth */
1343         wine_tsx11_lock();
1344         if (!XGetGeometry(gdi_display, *pPixmap, &root, &x, &y, &width, &height,
1345                           &border_width, &depth)) depth = 0;
1346         wine_tsx11_unlock();
1347         if (!pixmap_formats[depth]) return 0;
1348
1349         TRACE("\tPixmap properties: width=%d, height=%d, depth=%d\n",
1350               width, height, depth);
1351
1352         memset( &vis, 0, sizeof(vis) );
1353         vis.depth = depth;
1354         if (depth == screen_depth)
1355         {
1356             vis.visual     = visual;
1357             vis.visualid   = visual->visualid;
1358             vis.class      = visual->class;
1359             vis.red_mask   = visual->red_mask;
1360             vis.green_mask = visual->green_mask;
1361             vis.blue_mask  = visual->blue_mask;
1362         }
1363         else switch (pixmap_formats[depth]->bits_per_pixel)
1364         {
1365         case 1:
1366         case 4:
1367         case 8:
1368             break;
1369         case 16:  /* assume R5G5B5 */
1370             vis.red_mask   = 0x7c00;
1371             vis.green_mask = 0x03e0;
1372             vis.blue_mask  = 0x001f;
1373             break;
1374         case 24:  /* assume R8G8B8 */
1375         case 32:  /* assume A8R8G8B8 */
1376             vis.red_mask   = 0xff0000;
1377             vis.green_mask = 0x00ff00;
1378             vis.blue_mask  = 0x0000ff;
1379             break;
1380         default:
1381             return 0;
1382         }
1383
1384         if (!get_pixmap_image( *pPixmap, width, height, &vis, info, &bits ))
1385         {
1386             DWORD info_size = bitmap_info_size( info, DIB_RGB_COLORS );
1387             BYTE *ptr;
1388
1389             hClipData = GlobalAlloc( GMEM_MOVEABLE | GMEM_DDESHARE,
1390                                      info_size + info->bmiHeader.biSizeImage );
1391             if (hClipData)
1392             {
1393                 ptr = GlobalLock( hClipData );
1394                 memcpy( ptr, info, info_size );
1395                 memcpy( ptr + info_size, bits.ptr, info->bmiHeader.biSizeImage );
1396                 GlobalUnlock( hClipData );
1397             }
1398             if (bits.free) bits.free( &bits );
1399         }
1400     }
1401
1402     return hClipData;
1403 }
1404
1405
1406 /**************************************************************************
1407  *              X11DRV_CLIPBOARD_ImportImageBmp
1408  *
1409  *  Import image/bmp, converting the image to CF_DIB.
1410  */
1411 static HANDLE X11DRV_CLIPBOARD_ImportImageBmp(Display *display, Window w, Atom prop)
1412 {
1413     LPBYTE lpdata;
1414     unsigned long cbytes;
1415     HANDLE hClipData = 0;
1416
1417     if (X11DRV_CLIPBOARD_ReadProperty(display, w, prop, &lpdata, &cbytes))
1418     {
1419         BITMAPFILEHEADER *bfh = (BITMAPFILEHEADER*)lpdata;
1420
1421         if (cbytes >= sizeof(BITMAPFILEHEADER)+sizeof(BITMAPCOREHEADER) &&
1422             bfh->bfType == 0x4d42 /* "BM" */)
1423         {
1424             BITMAPINFO *bmi = (BITMAPINFO*)(bfh+1);
1425             HBITMAP hbmp;
1426             HDC hdc;
1427
1428             hdc = GetDC(0);
1429             hbmp = CreateDIBitmap(
1430                 hdc,
1431                 &(bmi->bmiHeader),
1432                 CBM_INIT,
1433                 lpdata+bfh->bfOffBits,
1434                 bmi,
1435                 DIB_RGB_COLORS
1436                 );
1437
1438             hClipData = create_dib_from_bitmap( hbmp );
1439
1440             DeleteObject(hbmp);
1441             ReleaseDC(0, hdc);
1442         }
1443
1444         /* Free the retrieved property data */
1445         HeapFree(GetProcessHeap(), 0, lpdata);
1446     }
1447
1448     return hClipData;
1449 }
1450
1451
1452 /**************************************************************************
1453  *              X11DRV_CLIPBOARD_ImportMetaFilePict
1454  *
1455  *  Import MetaFilePict.
1456  */
1457 static HANDLE X11DRV_CLIPBOARD_ImportMetaFilePict(Display *display, Window w, Atom prop)
1458 {
1459     LPBYTE lpdata;
1460     unsigned long cbytes;
1461     HANDLE hClipData = 0;
1462
1463     if (X11DRV_CLIPBOARD_ReadProperty(display, w, prop, &lpdata, &cbytes))
1464     {
1465         if (cbytes)
1466             hClipData = X11DRV_CLIPBOARD_SerializeMetafile(CF_METAFILEPICT, lpdata, (LPDWORD)&cbytes, FALSE);
1467
1468         /* Free the retrieved property data */
1469         HeapFree(GetProcessHeap(), 0, lpdata);
1470     }
1471
1472     return hClipData;
1473 }
1474
1475
1476 /**************************************************************************
1477  *              X11DRV_ImportEnhMetaFile
1478  *
1479  *  Import EnhMetaFile.
1480  */
1481 static HANDLE X11DRV_CLIPBOARD_ImportEnhMetaFile(Display *display, Window w, Atom prop)
1482 {
1483     LPBYTE lpdata;
1484     unsigned long cbytes;
1485     HANDLE hClipData = 0;
1486
1487     if (X11DRV_CLIPBOARD_ReadProperty(display, w, prop, &lpdata, &cbytes))
1488     {
1489         if (cbytes)
1490             hClipData = X11DRV_CLIPBOARD_SerializeMetafile(CF_ENHMETAFILE, lpdata, (LPDWORD)&cbytes, FALSE);
1491
1492         /* Free the retrieved property data */
1493         HeapFree(GetProcessHeap(), 0, lpdata);
1494     }
1495
1496     return hClipData;
1497 }
1498
1499
1500 /**************************************************************************
1501  *              X11DRV_ImportClipbordaData
1502  *
1503  *  Generic import clipboard data routine.
1504  */
1505 static HANDLE X11DRV_CLIPBOARD_ImportClipboardData(Display *display, Window w, Atom prop)
1506 {
1507     LPVOID lpClipData;
1508     LPBYTE lpdata;
1509     unsigned long cbytes;
1510     HANDLE hClipData = 0;
1511
1512     if (X11DRV_CLIPBOARD_ReadProperty(display, w, prop, &lpdata, &cbytes))
1513     {
1514         if (cbytes)
1515         {
1516             /* Turn on the DDESHARE flag to enable shared 32 bit memory */
1517             hClipData = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE, cbytes);
1518             if (hClipData == 0)
1519                 return NULL;
1520
1521             if ((lpClipData = GlobalLock(hClipData)))
1522             {
1523                 memcpy(lpClipData, lpdata, cbytes);
1524                 GlobalUnlock(hClipData);
1525             }
1526             else
1527             {
1528                 GlobalFree(hClipData);
1529                 hClipData = 0;
1530             }
1531         }
1532
1533         /* Free the retrieved property data */
1534         HeapFree(GetProcessHeap(), 0, lpdata);
1535     }
1536
1537     return hClipData;
1538 }
1539
1540
1541 /**************************************************************************
1542                 X11DRV_CLIPBOARD_ExportClipboardData
1543  *
1544  *  Generic export clipboard data routine.
1545  */
1546 static HANDLE X11DRV_CLIPBOARD_ExportClipboardData(Display *display, Window requestor, Atom aTarget,
1547                                             Atom rprop, LPWINE_CLIPDATA lpData, LPDWORD lpBytes)
1548 {
1549     LPVOID lpClipData;
1550     UINT datasize = 0;
1551     HANDLE hClipData = 0;
1552
1553     *lpBytes = 0; /* Assume failure */
1554
1555     if (!X11DRV_CLIPBOARD_RenderFormat(display, lpData))
1556         ERR("Failed to export %04x format\n", lpData->wFormatID);
1557     else
1558     {
1559         datasize = GlobalSize(lpData->hData);
1560
1561         hClipData = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE, datasize);
1562         if (hClipData == 0) return NULL;
1563
1564         if ((lpClipData = GlobalLock(hClipData)))
1565         {
1566             LPVOID lpdata = GlobalLock(lpData->hData);
1567
1568             memcpy(lpClipData, lpdata, datasize);
1569             *lpBytes = datasize;
1570
1571             GlobalUnlock(lpData->hData);
1572             GlobalUnlock(hClipData);
1573         } else {
1574             GlobalFree(hClipData);
1575             hClipData = 0;
1576         }
1577     }
1578
1579     return hClipData;
1580 }
1581
1582
1583 /**************************************************************************
1584  *              X11DRV_CLIPBOARD_ExportXAString
1585  *
1586  *  Export CF_TEXT converting the string to XA_STRING.
1587  *  Helper function for X11DRV_CLIPBOARD_ExportString.
1588  */
1589 static HANDLE X11DRV_CLIPBOARD_ExportXAString(LPWINE_CLIPDATA lpData, LPDWORD lpBytes)
1590 {
1591     UINT i, j;
1592     UINT size;
1593     LPSTR text, lpstr = NULL;
1594
1595     *lpBytes = 0; /* Assume return has zero bytes */
1596
1597     text = GlobalLock(lpData->hData);
1598     size = strlen(text);
1599
1600     /* remove carriage returns */
1601     lpstr = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, size + 1);
1602     if (lpstr == NULL)
1603         goto done;
1604
1605     for (i = 0,j = 0; i < size && text[i]; i++)
1606     {
1607         if (text[i] == '\r' && (text[i+1] == '\n' || text[i+1] == '\0'))
1608             continue;
1609         lpstr[j++] = text[i];
1610     }
1611
1612     lpstr[j]='\0';
1613     *lpBytes = j; /* Number of bytes in string */
1614
1615 done:
1616     GlobalUnlock(lpData->hData);
1617
1618     return lpstr;
1619 }
1620
1621
1622 /**************************************************************************
1623  *              X11DRV_CLIPBOARD_ExportUTF8String
1624  *
1625  *  Export CF_UNICODE converting the string to UTF8.
1626  *  Helper function for X11DRV_CLIPBOARD_ExportString.
1627  */
1628 static HANDLE X11DRV_CLIPBOARD_ExportUTF8String(LPWINE_CLIPDATA lpData, LPDWORD lpBytes)
1629 {
1630     UINT i, j;
1631     UINT size;
1632     LPWSTR uni_text;
1633     LPSTR text, lpstr = NULL;
1634
1635     *lpBytes = 0; /* Assume return has zero bytes */
1636
1637     uni_text = GlobalLock(lpData->hData);
1638
1639     size = WideCharToMultiByte(CP_UTF8, 0, uni_text, -1, NULL, 0, NULL, NULL);
1640
1641     text = HeapAlloc(GetProcessHeap(), 0, size);
1642     if (!text)
1643         goto done;
1644     WideCharToMultiByte(CP_UTF8, 0, uni_text, -1, text, size, NULL, NULL);
1645
1646     /* remove carriage returns */
1647     lpstr = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size--);
1648     if (lpstr == NULL)
1649         goto done;
1650
1651     for (i = 0,j = 0; i < size && text[i]; i++)
1652     {
1653         if (text[i] == '\r' && (text[i+1] == '\n' || text[i+1] == '\0'))
1654             continue;
1655         lpstr[j++] = text[i];
1656     }
1657     lpstr[j]='\0';
1658
1659     *lpBytes = j; /* Number of bytes in string */
1660
1661 done:
1662     HeapFree(GetProcessHeap(), 0, text);
1663     GlobalUnlock(lpData->hData);
1664
1665     return lpstr;
1666 }
1667
1668
1669
1670 /**************************************************************************
1671  *              X11DRV_CLIPBOARD_ExportCompoundText
1672  *
1673  *  Export CF_UNICODE to COMPOUND_TEXT
1674  *  Helper function for X11DRV_CLIPBOARD_ExportString.
1675  */
1676 static HANDLE X11DRV_CLIPBOARD_ExportCompoundText(Display *display, Window requestor, Atom aTarget, Atom rprop,
1677     LPWINE_CLIPDATA lpData, LPDWORD lpBytes)
1678 {
1679     char* lpstr = 0;
1680     XTextProperty prop;
1681     XICCEncodingStyle style;
1682     UINT i, j;
1683     UINT size;
1684     LPWSTR uni_text;
1685
1686     uni_text = GlobalLock(lpData->hData);
1687
1688     size = WideCharToMultiByte(CP_UNIXCP, 0, uni_text, -1, NULL, 0, NULL, NULL);
1689     lpstr = HeapAlloc(GetProcessHeap(), 0, size);
1690     if (!lpstr)
1691         return 0;
1692
1693     WideCharToMultiByte(CP_UNIXCP, 0, uni_text, -1, lpstr, size, NULL, NULL);
1694
1695     /* remove carriage returns */
1696     for (i = 0, j = 0; i < size && lpstr[i]; i++)
1697     {
1698         if (lpstr[i] == '\r' && (lpstr[i+1] == '\n' || lpstr[i+1] == '\0'))
1699             continue;
1700         lpstr[j++] = lpstr[i];
1701     }
1702     lpstr[j]='\0';
1703
1704     GlobalUnlock(lpData->hData);
1705
1706     if (aTarget == x11drv_atom(COMPOUND_TEXT))
1707         style = XCompoundTextStyle;
1708     else
1709         style = XStdICCTextStyle;
1710
1711     /* Update the X property */
1712     wine_tsx11_lock();
1713     if (XmbTextListToTextProperty(display, &lpstr, 1, style, &prop) == Success)
1714     {
1715         XSetTextProperty(display, requestor, &prop, rprop);
1716         XFree(prop.value);
1717     }
1718     wine_tsx11_unlock();
1719
1720     HeapFree(GetProcessHeap(), 0, lpstr);
1721
1722     return 0;
1723 }
1724
1725 /**************************************************************************
1726  *              X11DRV_CLIPBOARD_ExportString
1727  *
1728  *  Export string
1729  */
1730 static HANDLE X11DRV_CLIPBOARD_ExportString(Display *display, Window requestor, Atom aTarget, Atom rprop,
1731                                      LPWINE_CLIPDATA lpData, LPDWORD lpBytes)
1732 {
1733     if (X11DRV_CLIPBOARD_RenderFormat(display, lpData))
1734     {
1735         if (aTarget == XA_STRING)
1736             return X11DRV_CLIPBOARD_ExportXAString(lpData, lpBytes);
1737         else if (aTarget == x11drv_atom(COMPOUND_TEXT) || aTarget == x11drv_atom(TEXT))
1738             return X11DRV_CLIPBOARD_ExportCompoundText(display, requestor, aTarget,
1739                 rprop, lpData, lpBytes);
1740         else
1741         {
1742             TRACE("Exporting target %ld to default UTF8_STRING\n", aTarget);
1743             return X11DRV_CLIPBOARD_ExportUTF8String(lpData, lpBytes);
1744         }
1745     }
1746     else
1747         ERR("Failed to render %04x format\n", lpData->wFormatID);
1748
1749     return 0;
1750 }
1751
1752
1753 /**************************************************************************
1754  *              X11DRV_CLIPBOARD_ExportXAPIXMAP
1755  *
1756  *  Export CF_DIB to XA_PIXMAP.
1757  */
1758 static HANDLE X11DRV_CLIPBOARD_ExportXAPIXMAP(Display *display, Window requestor, Atom aTarget, Atom rprop,
1759     LPWINE_CLIPDATA lpdata, LPDWORD lpBytes)
1760 {
1761     HANDLE hData;
1762     unsigned char* lpData;
1763
1764     if (!X11DRV_CLIPBOARD_RenderFormat(display, lpdata))
1765     {
1766         ERR("Failed to export %04x format\n", lpdata->wFormatID);
1767         return 0;
1768     }
1769
1770     if (!lpdata->drvData) /* If not already rendered */
1771     {
1772         Pixmap pixmap;
1773         XVisualInfo vis;
1774         LPBITMAPINFO pbmi;
1775         struct gdi_image_bits bits;
1776
1777         memset( &vis, 0, sizeof(vis) );
1778         vis.visual     = visual;
1779         vis.depth      = screen_depth;
1780         vis.visualid   = visual->visualid;
1781         vis.class      = visual->class;
1782         vis.red_mask   = visual->red_mask;
1783         vis.green_mask = visual->green_mask;
1784         vis.blue_mask  = visual->blue_mask;
1785
1786         pbmi = GlobalLock( lpdata->hData );
1787         bits.ptr = (LPBYTE)pbmi + bitmap_info_size( pbmi, DIB_RGB_COLORS );
1788         bits.free = NULL;
1789         bits.is_copy = FALSE;
1790         pixmap = create_pixmap_from_image( 0, &vis, pbmi, &bits, DIB_RGB_COLORS );
1791         GlobalUnlock( lpdata->hData );
1792         lpdata->drvData = pixmap;
1793     }
1794
1795     *lpBytes = sizeof(Pixmap); /* pixmap is a 32bit value */
1796
1797     /* Wrap pixmap so we can return a handle */
1798     hData = GlobalAlloc(0, *lpBytes);
1799     lpData = GlobalLock(hData);
1800     memcpy(lpData, &lpdata->drvData, *lpBytes);
1801     GlobalUnlock(hData);
1802
1803     return hData;
1804 }
1805
1806
1807 /**************************************************************************
1808  *              X11DRV_CLIPBOARD_ExportImageBmp
1809  *
1810  *  Export CF_DIB to image/bmp.
1811  */
1812 static HANDLE X11DRV_CLIPBOARD_ExportImageBmp(Display *display, Window requestor, Atom aTarget, Atom rprop,
1813     LPWINE_CLIPDATA lpdata, LPDWORD lpBytes)
1814 {
1815     HANDLE hpackeddib;
1816     LPBYTE dibdata;
1817     UINT bmpsize;
1818     HANDLE hbmpdata;
1819     LPBYTE bmpdata;
1820     BITMAPFILEHEADER *bfh;
1821
1822     *lpBytes = 0;
1823
1824     if (!X11DRV_CLIPBOARD_RenderFormat(display, lpdata))
1825     {
1826         ERR("Failed to export %04x format\n", lpdata->wFormatID);
1827         return 0;
1828     }
1829
1830     hpackeddib = lpdata->hData;
1831
1832     dibdata = GlobalLock(hpackeddib);
1833     if (!dibdata)
1834     {
1835         ERR("Failed to lock packed DIB\n");
1836         return 0;
1837     }
1838
1839     bmpsize = sizeof(BITMAPFILEHEADER) + GlobalSize(hpackeddib);
1840
1841     hbmpdata = GlobalAlloc(0, bmpsize);
1842
1843     if (hbmpdata)
1844     {
1845         bmpdata = GlobalLock(hbmpdata);
1846
1847         if (!bmpdata)
1848         {
1849             GlobalFree(hbmpdata);
1850             GlobalUnlock(hpackeddib);
1851             return 0;
1852         }
1853
1854         /* bitmap file header */
1855         bfh = (BITMAPFILEHEADER*)bmpdata;
1856         bfh->bfType = 0x4d42; /* "BM" */
1857         bfh->bfSize = bmpsize;
1858         bfh->bfReserved1 = 0;
1859         bfh->bfReserved2 = 0;
1860         bfh->bfOffBits = sizeof(BITMAPFILEHEADER) + bitmap_info_size((BITMAPINFO*)dibdata, DIB_RGB_COLORS);
1861
1862         /* rest of bitmap is the same as the packed dib */
1863         memcpy(bfh+1, dibdata, bmpsize-sizeof(BITMAPFILEHEADER));
1864
1865         *lpBytes = bmpsize;
1866
1867         GlobalUnlock(hbmpdata);
1868     }
1869
1870     GlobalUnlock(hpackeddib);
1871
1872     return hbmpdata;
1873 }
1874
1875
1876 /**************************************************************************
1877  *              X11DRV_CLIPBOARD_ExportMetaFilePict
1878  *
1879  *  Export MetaFilePict.
1880  */
1881 static HANDLE X11DRV_CLIPBOARD_ExportMetaFilePict(Display *display, Window requestor, Atom aTarget, Atom rprop,
1882                                            LPWINE_CLIPDATA lpdata, LPDWORD lpBytes)
1883 {
1884     if (!X11DRV_CLIPBOARD_RenderFormat(display, lpdata))
1885     {
1886         ERR("Failed to export %04x format\n", lpdata->wFormatID);
1887         return 0;
1888     }
1889
1890     return X11DRV_CLIPBOARD_SerializeMetafile(CF_METAFILEPICT, lpdata->hData, lpBytes, TRUE);
1891 }
1892
1893
1894 /**************************************************************************
1895  *              X11DRV_CLIPBOARD_ExportEnhMetaFile
1896  *
1897  *  Export EnhMetaFile.
1898  */
1899 static HANDLE X11DRV_CLIPBOARD_ExportEnhMetaFile(Display *display, Window requestor, Atom aTarget, Atom rprop,
1900                                           LPWINE_CLIPDATA lpdata, LPDWORD lpBytes)
1901 {
1902     if (!X11DRV_CLIPBOARD_RenderFormat(display, lpdata))
1903     {
1904         ERR("Failed to export %04x format\n", lpdata->wFormatID);
1905         return 0;
1906     }
1907
1908     return X11DRV_CLIPBOARD_SerializeMetafile(CF_ENHMETAFILE, lpdata->hData, lpBytes, TRUE);
1909 }
1910
1911
1912 /**************************************************************************
1913  *              get_html_description_field
1914  *
1915  *  Find the value of a field in an HTML Format description.
1916  */
1917 static LPCSTR get_html_description_field(LPCSTR data, LPCSTR keyword)
1918 {
1919     LPCSTR pos=data;
1920
1921     while (pos && *pos && *pos != '<')
1922     {
1923         if (memcmp(pos, keyword, strlen(keyword)) == 0)
1924             return pos+strlen(keyword);
1925
1926         pos = strchr(pos, '\n');
1927         if (pos) pos++;
1928     }
1929
1930     return NULL;
1931 }
1932
1933
1934 /**************************************************************************
1935  *              X11DRV_CLIPBOARD_ExportTextHtml
1936  *
1937  *  Export HTML Format to text/html.
1938  *
1939  * FIXME: We should attempt to add an <a base> tag and convert windows paths.
1940  */
1941 static HANDLE X11DRV_CLIPBOARD_ExportTextHtml(Display *display, Window requestor, Atom aTarget,
1942     Atom rprop, LPWINE_CLIPDATA lpdata, LPDWORD lpBytes)
1943 {
1944     HANDLE hdata;
1945     LPCSTR data, field_value;
1946     UINT fragmentstart, fragmentend, htmlsize;
1947     HANDLE hhtmldata=NULL;
1948     LPSTR htmldata;
1949
1950     *lpBytes = 0;
1951
1952     if (!X11DRV_CLIPBOARD_RenderFormat(display, lpdata))
1953     {
1954         ERR("Failed to export %04x format\n", lpdata->wFormatID);
1955         return 0;
1956     }
1957
1958     hdata = lpdata->hData;
1959
1960     data = GlobalLock(hdata);
1961     if (!data)
1962     {
1963         ERR("Failed to lock HTML Format data\n");
1964         return 0;
1965     }
1966
1967     /* read the important fields */
1968     field_value = get_html_description_field(data, "StartFragment:");
1969     if (!field_value)
1970     {
1971         ERR("Couldn't find StartFragment value\n");
1972         goto end;
1973     }
1974     fragmentstart = atoi(field_value);
1975
1976     field_value = get_html_description_field(data, "EndFragment:");
1977     if (!field_value)
1978     {
1979         ERR("Couldn't find EndFragment value\n");
1980         goto end;
1981     }
1982     fragmentend = atoi(field_value);
1983
1984     /* export only the fragment */
1985     htmlsize = fragmentend - fragmentstart + 1;
1986
1987     hhtmldata = GlobalAlloc(0, htmlsize);
1988
1989     if (hhtmldata)
1990     {
1991         htmldata = GlobalLock(hhtmldata);
1992
1993         if (!htmldata)
1994         {
1995             GlobalFree(hhtmldata);
1996             htmldata = NULL;
1997             goto end;
1998         }
1999
2000         memcpy(htmldata, &data[fragmentstart], fragmentend-fragmentstart);
2001         htmldata[htmlsize-1] = '\0';
2002
2003         *lpBytes = htmlsize;
2004
2005         GlobalUnlock(htmldata);
2006     }
2007
2008 end:
2009
2010     GlobalUnlock(hdata);
2011
2012     return hhtmldata;
2013 }
2014
2015
2016 /**************************************************************************
2017  *              X11DRV_CLIPBOARD_QueryTargets
2018  */
2019 static BOOL X11DRV_CLIPBOARD_QueryTargets(Display *display, Window w, Atom selection,
2020     Atom target, XEvent *xe)
2021 {
2022     INT i;
2023     Bool res;
2024
2025     wine_tsx11_lock();
2026     XConvertSelection(display, selection, target,
2027         x11drv_atom(SELECTION_DATA), w, CurrentTime);
2028     wine_tsx11_unlock();
2029
2030     /*
2031      * Wait until SelectionNotify is received
2032      */
2033     for (i = 0; i < SELECTION_RETRIES; i++)
2034     {
2035         wine_tsx11_lock();
2036         res = XCheckTypedWindowEvent(display, w, SelectionNotify, xe);
2037         wine_tsx11_unlock();
2038         if (res && xe->xselection.selection == selection) break;
2039
2040         usleep(SELECTION_WAIT);
2041     }
2042
2043     if (i == SELECTION_RETRIES)
2044     {
2045         ERR("Timed out waiting for SelectionNotify event\n");
2046         return FALSE;
2047     }
2048     /* Verify that the selection returned a valid TARGETS property */
2049     if ((xe->xselection.target != target) || (xe->xselection.property == None))
2050     {
2051         /* Selection owner failed to respond or we missed the SelectionNotify */
2052         WARN("Failed to retrieve TARGETS for selection %ld.\n", selection);
2053         return FALSE;
2054     }
2055
2056     return TRUE;
2057 }
2058
2059
2060 static int is_atom_error( Display *display, XErrorEvent *event, void *arg )
2061 {
2062     return (event->error_code == BadAtom);
2063 }
2064
2065 /**************************************************************************
2066  *              X11DRV_CLIPBOARD_InsertSelectionProperties
2067  *
2068  * Mark properties available for future retrieval.
2069  */
2070 static VOID X11DRV_CLIPBOARD_InsertSelectionProperties(Display *display, Atom* properties, UINT count)
2071 {
2072      UINT i, nb_atoms = 0;
2073      Atom *atoms = NULL;
2074
2075      /* Cache these formats in the clipboard cache */
2076      for (i = 0; i < count; i++)
2077      {
2078          LPWINE_CLIPFORMAT lpFormat = X11DRV_CLIPBOARD_LookupProperty(NULL, properties[i]);
2079
2080          if (lpFormat)
2081          {
2082              /* We found at least one Window's format that mapps to the property.
2083               * Continue looking for more.
2084               *
2085               * If more than one property map to a Window's format then we use the first 
2086               * one and ignore the rest.
2087               */
2088              while (lpFormat)
2089              {
2090                  TRACE("Atom#%d Property(%d): --> Format %s\n",
2091                        i, lpFormat->drvData, debugstr_format(lpFormat->wFormatID));
2092                  X11DRV_CLIPBOARD_InsertClipboardData(lpFormat->wFormatID, 0, 0, lpFormat, FALSE);
2093                  lpFormat = X11DRV_CLIPBOARD_LookupProperty(lpFormat, properties[i]);
2094              }
2095          }
2096          else if (properties[i])
2097          {
2098              /* add it to the list of atoms that we don't know about yet */
2099              if (!atoms) atoms = HeapAlloc( GetProcessHeap(), 0,
2100                                             (count - i) * sizeof(*atoms) );
2101              if (atoms) atoms[nb_atoms++] = properties[i];
2102          }
2103      }
2104
2105      /* query all unknown atoms in one go */
2106      if (atoms)
2107      {
2108          char **names = HeapAlloc( GetProcessHeap(), 0, nb_atoms * sizeof(*names) );
2109          if (names)
2110          {
2111              X11DRV_expect_error( display, is_atom_error, NULL );
2112              if (!XGetAtomNames( display, atoms, nb_atoms, names )) nb_atoms = 0;
2113              if (X11DRV_check_error())
2114              {
2115                  WARN( "got some bad atoms, ignoring\n" );
2116                  nb_atoms = 0;
2117              }
2118              for (i = 0; i < nb_atoms; i++)
2119              {
2120                  WINE_CLIPFORMAT *lpFormat;
2121                  LPWSTR wname;
2122                  int len = MultiByteToWideChar(CP_UNIXCP, 0, names[i], -1, NULL, 0);
2123                  wname = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
2124                  MultiByteToWideChar(CP_UNIXCP, 0, names[i], -1, wname, len);
2125
2126                  lpFormat = register_format( RegisterClipboardFormatW(wname), atoms[i] );
2127                  HeapFree(GetProcessHeap(), 0, wname);
2128                  if (!lpFormat)
2129                  {
2130                      ERR("Failed to register %s property. Type will not be cached.\n", names[i]);
2131                      continue;
2132                  }
2133                  TRACE("Atom#%d Property(%d): --> Format %s\n",
2134                        i, lpFormat->drvData, debugstr_format(lpFormat->wFormatID));
2135                  X11DRV_CLIPBOARD_InsertClipboardData(lpFormat->wFormatID, 0, 0, lpFormat, FALSE);
2136              }
2137              wine_tsx11_lock();
2138              for (i = 0; i < nb_atoms; i++) XFree( names[i] );
2139              wine_tsx11_unlock();
2140              HeapFree( GetProcessHeap(), 0, names );
2141          }
2142          HeapFree( GetProcessHeap(), 0, atoms );
2143      }
2144 }
2145
2146
2147 /**************************************************************************
2148  *              X11DRV_CLIPBOARD_QueryAvailableData
2149  *
2150  * Caches the list of data formats available from the current selection.
2151  * This queries the selection owner for the TARGETS property and saves all
2152  * reported property types.
2153  */
2154 static int X11DRV_CLIPBOARD_QueryAvailableData(Display *display, LPCLIPBOARDINFO lpcbinfo)
2155 {
2156     XEvent         xe;
2157     Atom           atype=AnyPropertyType;
2158     int            aformat;
2159     unsigned long  remain;
2160     Atom*          targetList=NULL;
2161     Window         w;
2162     unsigned long  cSelectionTargets = 0;
2163
2164     if (selectionAcquired & (S_PRIMARY | S_CLIPBOARD))
2165     {
2166         ERR("Received request to cache selection but process is owner=(%08x)\n", 
2167             (unsigned) selectionWindow);
2168         return -1; /* Prevent self request */
2169     }
2170
2171     w = thread_selection_wnd();
2172     if (!w)
2173     {
2174         ERR("No window available to retrieve selection!\n");
2175         return -1;
2176     }
2177
2178     /*
2179      * Query the selection owner for the TARGETS property
2180      */
2181     wine_tsx11_lock();
2182     if ((use_primary_selection && XGetSelectionOwner(display,XA_PRIMARY)) ||
2183         XGetSelectionOwner(display,x11drv_atom(CLIPBOARD)))
2184     {
2185         wine_tsx11_unlock();
2186         if (use_primary_selection && (X11DRV_CLIPBOARD_QueryTargets(display, w, XA_PRIMARY, x11drv_atom(TARGETS), &xe)))
2187             selectionCacheSrc = XA_PRIMARY;
2188         else if (X11DRV_CLIPBOARD_QueryTargets(display, w, x11drv_atom(CLIPBOARD), x11drv_atom(TARGETS), &xe))
2189             selectionCacheSrc = x11drv_atom(CLIPBOARD);
2190         else
2191         {
2192             Atom xstr = XA_STRING;
2193
2194             /* Selection Owner doesn't understand TARGETS, try retrieving XA_STRING */
2195             if (X11DRV_CLIPBOARD_QueryTargets(display, w, XA_PRIMARY, XA_STRING, &xe))
2196             {
2197                 X11DRV_CLIPBOARD_InsertSelectionProperties(display, &xstr, 1);
2198                 selectionCacheSrc = XA_PRIMARY;
2199                 return 1;
2200             }
2201             else if (X11DRV_CLIPBOARD_QueryTargets(display, w, x11drv_atom(CLIPBOARD), XA_STRING, &xe))
2202             {
2203                 X11DRV_CLIPBOARD_InsertSelectionProperties(display, &xstr, 1);
2204                 selectionCacheSrc = x11drv_atom(CLIPBOARD);
2205                 return 1;
2206             }
2207             else
2208             {
2209                 WARN("Failed to query selection owner for available data.\n");
2210                 return -1;
2211             }
2212         }
2213     }
2214     else /* No selection owner so report 0 targets available */
2215     {
2216         wine_tsx11_unlock();
2217         return 0;
2218     }
2219
2220     /* Read the TARGETS property contents */
2221     wine_tsx11_lock();
2222     if(XGetWindowProperty(display, xe.xselection.requestor, xe.xselection.property,
2223         0, 0x3FFF, True, AnyPropertyType/*XA_ATOM*/, &atype, &aformat, &cSelectionTargets, 
2224         &remain, (unsigned char**)&targetList) != Success)
2225     {
2226         wine_tsx11_unlock();
2227         WARN("Failed to read TARGETS property\n");
2228     }
2229     else
2230     {
2231         wine_tsx11_unlock();
2232        TRACE("Type %lx,Format %d,nItems %ld, Remain %ld\n",
2233              atype, aformat, cSelectionTargets, remain);
2234        /*
2235         * The TARGETS property should have returned us a list of atoms
2236         * corresponding to each selection target format supported.
2237         */
2238        if (atype == XA_ATOM || atype == x11drv_atom(TARGETS))
2239        {
2240            if (aformat == 32)
2241            {
2242                X11DRV_CLIPBOARD_InsertSelectionProperties(display, targetList, cSelectionTargets);
2243            }
2244            else if (aformat == 8)  /* work around quartz-wm brain damage */
2245            {
2246                unsigned long i, count = cSelectionTargets / sizeof(CARD32);
2247                Atom *atoms = HeapAlloc( GetProcessHeap(), 0, count * sizeof(Atom) );
2248                for (i = 0; i < count; i++)
2249                    atoms[i] = ((CARD32 *)targetList)[i];  /* FIXME: byte swapping */
2250                X11DRV_CLIPBOARD_InsertSelectionProperties( display, atoms, count );
2251                HeapFree( GetProcessHeap(), 0, atoms );
2252            }
2253        }
2254
2255        /* Free the list of targets */
2256        wine_tsx11_lock();
2257        XFree(targetList);
2258        wine_tsx11_unlock();
2259     }
2260
2261     return cSelectionTargets;
2262 }
2263
2264
2265 /**************************************************************************
2266  *      X11DRV_CLIPBOARD_ReadSelectionData
2267  *
2268  * This method is invoked only when we DO NOT own the X selection
2269  *
2270  * We always get the data from the selection client each time,
2271  * since we have no way of determining if the data in our cache is stale.
2272  */
2273 static BOOL X11DRV_CLIPBOARD_ReadSelectionData(Display *display, LPWINE_CLIPDATA lpData)
2274 {
2275     Bool res;
2276     DWORD i;
2277     XEvent xe;
2278     BOOL bRet = FALSE;
2279
2280     TRACE("%04x\n", lpData->wFormatID);
2281
2282     if (!lpData->lpFormat)
2283     {
2284         ERR("Requesting format %04x but no source format linked to data.\n",
2285             lpData->wFormatID);
2286         return FALSE;
2287     }
2288
2289     if (!selectionAcquired)
2290     {
2291         Window w = thread_selection_wnd();
2292         if(!w)
2293         {
2294             ERR("No window available to read selection data!\n");
2295             return FALSE;
2296         }
2297
2298         TRACE("Requesting conversion of %s property (%d) from selection type %08x\n",
2299               debugstr_format(lpData->lpFormat->wFormatID), lpData->lpFormat->drvData,
2300               (UINT)selectionCacheSrc);
2301
2302         wine_tsx11_lock();
2303         XConvertSelection(display, selectionCacheSrc, lpData->lpFormat->drvData,
2304             x11drv_atom(SELECTION_DATA), w, CurrentTime);
2305         wine_tsx11_unlock();
2306
2307         /* wait until SelectionNotify is received */
2308         for (i = 0; i < SELECTION_RETRIES; i++)
2309         {
2310             wine_tsx11_lock();
2311             res = XCheckTypedWindowEvent(display, w, SelectionNotify, &xe);
2312             wine_tsx11_unlock();
2313             if (res && xe.xselection.selection == selectionCacheSrc) break;
2314
2315             usleep(SELECTION_WAIT);
2316         }
2317
2318         if (i == SELECTION_RETRIES)
2319         {
2320             ERR("Timed out waiting for SelectionNotify event\n");
2321         }
2322         /* Verify that the selection returned a valid TARGETS property */
2323         else if (xe.xselection.property != None)
2324         {
2325             /*
2326              *  Read the contents of the X selection property 
2327              *  into WINE's clipboard cache and converting the 
2328              *  data format if necessary.
2329              */
2330              HANDLE hData = lpData->lpFormat->lpDrvImportFunc(display, xe.xselection.requestor,
2331                  xe.xselection.property);
2332
2333              if (hData)
2334                  bRet = X11DRV_CLIPBOARD_InsertClipboardData(lpData->wFormatID, hData, 0, lpData->lpFormat, TRUE);
2335              else
2336                  TRACE("Import function failed\n");
2337         }
2338         else
2339         {
2340             TRACE("Failed to convert selection\n");
2341         }
2342     }
2343     else
2344     {
2345         ERR("Received request to cache selection data but process is owner\n");
2346     }
2347
2348     TRACE("Returning %d\n", bRet);
2349
2350     return bRet;
2351 }
2352
2353
2354 /**************************************************************************
2355  *              X11DRV_CLIPBOARD_GetProperty
2356  *  Gets type, data and size.
2357  */
2358 static BOOL X11DRV_CLIPBOARD_GetProperty(Display *display, Window w, Atom prop,
2359     Atom *atype, unsigned char** data, unsigned long* datasize)
2360 {
2361     int aformat;
2362     unsigned long pos = 0, nitems, remain, count;
2363     unsigned char *val = NULL, *buffer;
2364
2365     TRACE("Reading property %lu from X window %lx\n", prop, w);
2366
2367     for (;;)
2368     {
2369         wine_tsx11_lock();
2370         if (XGetWindowProperty(display, w, prop, pos, INT_MAX / 4, False,
2371                                AnyPropertyType, atype, &aformat, &nitems, &remain, &buffer) != Success)
2372         {
2373             wine_tsx11_unlock();
2374             WARN("Failed to read property\n");
2375             HeapFree( GetProcessHeap(), 0, val );
2376             return FALSE;
2377         }
2378
2379         count = get_property_size( aformat, nitems );
2380         if (!val) *data = HeapAlloc( GetProcessHeap(), 0, pos * sizeof(int) + count + 1 );
2381         else *data = HeapReAlloc( GetProcessHeap(), 0, val, pos * sizeof(int) + count + 1 );
2382
2383         if (!*data)
2384         {
2385             XFree( buffer );
2386             wine_tsx11_unlock();
2387             HeapFree( GetProcessHeap(), 0, val );
2388             return FALSE;
2389         }
2390         val = *data;
2391         memcpy( (int *)val + pos, buffer, count );
2392         XFree( buffer );
2393         wine_tsx11_unlock();
2394         if (!remain)
2395         {
2396             *datasize = pos * sizeof(int) + count;
2397             val[*datasize] = 0;
2398             break;
2399         }
2400         pos += count / sizeof(int);
2401     }
2402
2403     /* Delete the property on the window now that we are done
2404      * This will send a PropertyNotify event to the selection owner. */
2405     wine_tsx11_lock();
2406     XDeleteProperty(display, w, prop);
2407     wine_tsx11_unlock();
2408     return TRUE;
2409 }
2410
2411
2412 /**************************************************************************
2413  *              X11DRV_CLIPBOARD_ReadProperty
2414  *  Reads the contents of the X selection property.
2415  */
2416 static BOOL X11DRV_CLIPBOARD_ReadProperty(Display *display, Window w, Atom prop,
2417     unsigned char** data, unsigned long* datasize)
2418 {
2419     Atom atype;
2420     XEvent xe;
2421
2422     if (prop == None)
2423         return FALSE;
2424
2425     if (!X11DRV_CLIPBOARD_GetProperty(display, w, prop, &atype, data, datasize))
2426         return FALSE;
2427
2428     wine_tsx11_lock();
2429     while (XCheckTypedWindowEvent(display, w, PropertyNotify, &xe))
2430         ;
2431     wine_tsx11_unlock();
2432
2433     if (atype == x11drv_atom(INCR))
2434     {
2435         unsigned char *buf = *data;
2436         unsigned long bufsize = 0;
2437
2438         for (;;)
2439         {
2440             int i;
2441             unsigned char *prop_data, *tmp;
2442             unsigned long prop_size;
2443
2444             /* Wait until PropertyNotify is received */
2445             for (i = 0; i < SELECTION_RETRIES; i++)
2446             {
2447                 Bool res;
2448
2449                 wine_tsx11_lock();
2450                 res = XCheckTypedWindowEvent(display, w, PropertyNotify, &xe);
2451                 wine_tsx11_unlock();
2452                 if (res && xe.xproperty.atom == prop &&
2453                     xe.xproperty.state == PropertyNewValue)
2454                     break;
2455                 usleep(SELECTION_WAIT);
2456             }
2457
2458             if (i >= SELECTION_RETRIES ||
2459                 !X11DRV_CLIPBOARD_GetProperty(display, w, prop, &atype, &prop_data, &prop_size))
2460             {
2461                 HeapFree(GetProcessHeap(), 0, buf);
2462                 return FALSE;
2463             }
2464
2465             /* Retrieved entire data. */
2466             if (prop_size == 0)
2467             {
2468                 HeapFree(GetProcessHeap(), 0, prop_data);
2469                 *data = buf;
2470                 *datasize = bufsize;
2471                 return TRUE;
2472             }
2473
2474             tmp = HeapReAlloc(GetProcessHeap(), 0, buf, bufsize + prop_size + 1);
2475             if (!tmp)
2476             {
2477                 HeapFree(GetProcessHeap(), 0, buf);
2478                 return FALSE;
2479             }
2480
2481             buf = tmp;
2482             memcpy(buf + bufsize, prop_data, prop_size + 1);
2483             bufsize += prop_size;
2484             HeapFree(GetProcessHeap(), 0, prop_data);
2485         }
2486     }
2487
2488     return TRUE;
2489 }
2490
2491
2492 /**************************************************************************
2493  *              CLIPBOARD_SerializeMetafile
2494  */
2495 static HANDLE X11DRV_CLIPBOARD_SerializeMetafile(INT wformat, HANDLE hdata, LPDWORD lpcbytes, BOOL out)
2496 {
2497     HANDLE h = 0;
2498
2499     TRACE(" wFormat=%d hdata=%p out=%d\n", wformat, hdata, out);
2500
2501     if (out) /* Serialize out, caller should free memory */
2502     {
2503         *lpcbytes = 0; /* Assume failure */
2504
2505         if (wformat == CF_METAFILEPICT)
2506         {
2507             LPMETAFILEPICT lpmfp = GlobalLock(hdata);
2508             unsigned int size = GetMetaFileBitsEx(lpmfp->hMF, 0, NULL);
2509
2510             h = GlobalAlloc(0, size + sizeof(METAFILEPICT));
2511             if (h)
2512             {
2513                 char *pdata = GlobalLock(h);
2514
2515                 memcpy(pdata, lpmfp, sizeof(METAFILEPICT));
2516                 GetMetaFileBitsEx(lpmfp->hMF, size, pdata + sizeof(METAFILEPICT));
2517
2518                 *lpcbytes = size + sizeof(METAFILEPICT);
2519
2520                 GlobalUnlock(h);
2521             }
2522
2523             GlobalUnlock(hdata);
2524         }
2525         else if (wformat == CF_ENHMETAFILE)
2526         {
2527             int size = GetEnhMetaFileBits(hdata, 0, NULL);
2528
2529             h = GlobalAlloc(0, size);
2530             if (h)
2531             {
2532                 LPVOID pdata = GlobalLock(h);
2533
2534                 GetEnhMetaFileBits(hdata, size, pdata);
2535                 *lpcbytes = size;
2536
2537                 GlobalUnlock(h);
2538             }
2539         }
2540     }
2541     else
2542     {
2543         if (wformat == CF_METAFILEPICT)
2544         {
2545             h = GlobalAlloc(0, sizeof(METAFILEPICT));
2546             if (h)
2547             {
2548                 unsigned int wiresize;
2549                 LPMETAFILEPICT lpmfp = GlobalLock(h);
2550
2551                 memcpy(lpmfp, hdata, sizeof(METAFILEPICT));
2552                 wiresize = *lpcbytes - sizeof(METAFILEPICT);
2553                 lpmfp->hMF = SetMetaFileBitsEx(wiresize,
2554                     ((const BYTE *)hdata) + sizeof(METAFILEPICT));
2555                 GlobalUnlock(h);
2556             }
2557         }
2558         else if (wformat == CF_ENHMETAFILE)
2559         {
2560             h = SetEnhMetaFileBits(*lpcbytes, hdata);
2561         }
2562     }
2563
2564     return h;
2565 }
2566
2567
2568 /**************************************************************************
2569  *              X11DRV_CLIPBOARD_ReleaseSelection
2570  *
2571  * Release XA_CLIPBOARD and XA_PRIMARY in response to a SelectionClear event.
2572  */
2573 static void X11DRV_CLIPBOARD_ReleaseSelection(Display *display, Atom selType, Window w, HWND hwnd, Time time)
2574 {
2575     /* w is the window that lost the selection
2576      */
2577     TRACE("event->window = %08x (selectionWindow = %08x) selectionAcquired=0x%08x\n",
2578           (unsigned)w, (unsigned)selectionWindow, (unsigned)selectionAcquired);
2579
2580     if (selectionAcquired && (w == selectionWindow))
2581     {
2582         CLIPBOARDINFO cbinfo;
2583
2584         /* completely give up the selection */
2585         TRACE("Lost CLIPBOARD (+PRIMARY) selection\n");
2586
2587         X11DRV_CLIPBOARD_GetClipboardInfo(&cbinfo);
2588
2589         if (cbinfo.flags & CB_PROCESS)
2590         {
2591             /* Since we're still the owner, this wasn't initiated by
2592                another Wine process */
2593             if (OpenClipboard(hwnd))
2594             {
2595                 /* Destroy private objects */
2596                 SendMessageW(cbinfo.hWndOwner, WM_DESTROYCLIPBOARD, 0, 0);
2597
2598                 /* Give up ownership of the windows clipboard */
2599                 X11DRV_CLIPBOARD_ReleaseOwnership();
2600                 CloseClipboard();
2601             }
2602         }
2603
2604         if ((selType == x11drv_atom(CLIPBOARD)) && (selectionAcquired & S_PRIMARY))
2605         {
2606             TRACE("Lost clipboard. Check if we need to release PRIMARY\n");
2607
2608             wine_tsx11_lock();
2609             if (selectionWindow == XGetSelectionOwner(display, XA_PRIMARY))
2610             {
2611                 TRACE("We still own PRIMARY. Releasing PRIMARY.\n");
2612                 XSetSelectionOwner(display, XA_PRIMARY, None, time);
2613             }
2614             else
2615                 TRACE("We no longer own PRIMARY\n");
2616             wine_tsx11_unlock();
2617         }
2618         else if ((selType == XA_PRIMARY) && (selectionAcquired & S_CLIPBOARD))
2619         {
2620             TRACE("Lost PRIMARY. Check if we need to release CLIPBOARD\n");
2621
2622             wine_tsx11_lock();
2623             if (selectionWindow == XGetSelectionOwner(display,x11drv_atom(CLIPBOARD)))
2624             {
2625                 TRACE("We still own CLIPBOARD. Releasing CLIPBOARD.\n");
2626                 XSetSelectionOwner(display, x11drv_atom(CLIPBOARD), None, time);
2627             }
2628             else
2629                 TRACE("We no longer own CLIPBOARD\n");
2630             wine_tsx11_unlock();
2631         }
2632
2633         selectionWindow = None;
2634
2635         X11DRV_EmptyClipboard(FALSE);
2636
2637         /* Reset the selection flags now that we are done */
2638         selectionAcquired = S_NOSELECTION;
2639     }
2640 }
2641
2642
2643 /**************************************************************************
2644  *              IsSelectionOwner (X11DRV.@)
2645  *
2646  * Returns: TRUE if the selection is owned by this process, FALSE otherwise
2647  */
2648 static BOOL X11DRV_CLIPBOARD_IsSelectionOwner(void)
2649 {
2650     return selectionAcquired;
2651 }
2652
2653
2654 /**************************************************************************
2655  *                X11DRV Clipboard Exports
2656  **************************************************************************/
2657
2658
2659 static void selection_acquire(void)
2660 {
2661     Window owner;
2662     Display *display;
2663
2664     owner = thread_selection_wnd();
2665     display = thread_display();
2666
2667     wine_tsx11_lock();
2668
2669     selectionAcquired = 0;
2670     selectionWindow = 0;
2671
2672     /* Grab PRIMARY selection if not owned */
2673     if (use_primary_selection)
2674         XSetSelectionOwner(display, XA_PRIMARY, owner, CurrentTime);
2675
2676     /* Grab CLIPBOARD selection if not owned */
2677     XSetSelectionOwner(display, x11drv_atom(CLIPBOARD), owner, CurrentTime);
2678
2679     if (use_primary_selection && XGetSelectionOwner(display, XA_PRIMARY) == owner)
2680         selectionAcquired |= S_PRIMARY;
2681
2682     if (XGetSelectionOwner(display,x11drv_atom(CLIPBOARD)) == owner)
2683         selectionAcquired |= S_CLIPBOARD;
2684
2685     wine_tsx11_unlock();
2686
2687     if (selectionAcquired)
2688     {
2689         selectionWindow = owner;
2690         TRACE("Grabbed X selection, owner=(%08x)\n", (unsigned) owner);
2691     }
2692 }
2693
2694 static DWORD WINAPI selection_thread_proc(LPVOID p)
2695 {
2696     HANDLE event = p;
2697
2698     TRACE("\n");
2699
2700     selection_acquire();
2701     SetEvent(event);
2702
2703     while (selectionAcquired)
2704     {
2705         MsgWaitForMultipleObjectsEx(0, NULL, INFINITE, QS_SENDMESSAGE, 0);
2706     }
2707
2708     return 0;
2709 }
2710
2711 /**************************************************************************
2712  *              AcquireClipboard (X11DRV.@)
2713  */
2714 int CDECL X11DRV_AcquireClipboard(HWND hWndClipWindow)
2715 {
2716     DWORD procid;
2717     HANDLE selectionThread;
2718
2719     TRACE(" %p\n", hWndClipWindow);
2720
2721     /*
2722      * It's important that the selection get acquired from the thread
2723      * that owns the clipboard window. The primary reason is that we know 
2724      * it is running a message loop and therefore can process the 
2725      * X selection events.
2726      */
2727     if (hWndClipWindow &&
2728         GetCurrentThreadId() != GetWindowThreadProcessId(hWndClipWindow, &procid))
2729     {
2730         if (procid != GetCurrentProcessId())
2731         {
2732             WARN("Setting clipboard owner to other process is not supported\n");
2733             hWndClipWindow = NULL;
2734         }
2735         else
2736         {
2737             TRACE("Thread %x is acquiring selection with thread %x's window %p\n",
2738                 GetCurrentThreadId(),
2739                 GetWindowThreadProcessId(hWndClipWindow, NULL), hWndClipWindow);
2740
2741             return SendMessageW(hWndClipWindow, WM_X11DRV_ACQUIRE_SELECTION, 0, 0);
2742         }
2743     }
2744
2745     if (hWndClipWindow)
2746     {
2747         selection_acquire();
2748     }
2749     else
2750     {
2751         HANDLE event = CreateEventW(NULL, FALSE, FALSE, NULL);
2752         selectionThread = CreateThread(NULL, 0, selection_thread_proc, event, 0, NULL);
2753
2754         if (!selectionThread)
2755         {
2756             WARN("Could not start clipboard thread\n");
2757             CloseHandle(event);
2758             return 0;
2759         }
2760
2761         WaitForSingleObject(event, INFINITE);
2762         CloseHandle(event);
2763         CloseHandle(selectionThread);
2764     }
2765
2766     return 1;
2767 }
2768
2769
2770 /**************************************************************************
2771  *      X11DRV_EmptyClipboard
2772  *
2773  * Empty cached clipboard data. 
2774  */
2775 void CDECL X11DRV_EmptyClipboard(BOOL keepunowned)
2776 {
2777     WINE_CLIPDATA *data, *next;
2778
2779     LIST_FOR_EACH_ENTRY_SAFE( data, next, &data_list, WINE_CLIPDATA, entry )
2780     {
2781         if (keepunowned && (data->wFlags & CF_FLAG_UNOWNED)) continue;
2782         list_remove( &data->entry );
2783         X11DRV_CLIPBOARD_FreeData( data );
2784         HeapFree( GetProcessHeap(), 0, data );
2785         ClipDataCount--;
2786     }
2787
2788     TRACE(" %d entries remaining in cache.\n", ClipDataCount);
2789 }
2790
2791
2792
2793 /**************************************************************************
2794  *              X11DRV_SetClipboardData
2795  */
2796 BOOL CDECL X11DRV_SetClipboardData(UINT wFormat, HANDLE hData, BOOL owner)
2797 {
2798     DWORD flags = 0;
2799     BOOL bResult = TRUE;
2800
2801     /* If it's not owned, data can only be set if the format data is not already owned
2802        and its rendering is not delayed */
2803     if (!owner)
2804     {
2805         CLIPBOARDINFO cbinfo;
2806         LPWINE_CLIPDATA lpRender;
2807
2808         X11DRV_CLIPBOARD_UpdateCache(&cbinfo);
2809
2810         if (!hData ||
2811             ((lpRender = X11DRV_CLIPBOARD_LookupData(wFormat)) &&
2812             !(lpRender->wFlags & CF_FLAG_UNOWNED)))
2813             bResult = FALSE;
2814         else
2815             flags = CF_FLAG_UNOWNED;
2816     }
2817
2818     bResult &= X11DRV_CLIPBOARD_InsertClipboardData(wFormat, hData, flags, NULL, TRUE);
2819
2820     return bResult;
2821 }
2822
2823
2824 /**************************************************************************
2825  *              CountClipboardFormats
2826  */
2827 INT CDECL X11DRV_CountClipboardFormats(void)
2828 {
2829     CLIPBOARDINFO cbinfo;
2830
2831     X11DRV_CLIPBOARD_UpdateCache(&cbinfo);
2832
2833     TRACE(" count=%d\n", ClipDataCount);
2834
2835     return ClipDataCount;
2836 }
2837
2838
2839 /**************************************************************************
2840  *              X11DRV_EnumClipboardFormats
2841  */
2842 UINT CDECL X11DRV_EnumClipboardFormats(UINT wFormat)
2843 {
2844     CLIPBOARDINFO cbinfo;
2845     struct list *ptr = NULL;
2846
2847     TRACE("(%04X)\n", wFormat);
2848
2849     X11DRV_CLIPBOARD_UpdateCache(&cbinfo);
2850
2851     if (!wFormat)
2852     {
2853         ptr = list_head( &data_list );
2854     }
2855     else
2856     {
2857         LPWINE_CLIPDATA lpData = X11DRV_CLIPBOARD_LookupData(wFormat);
2858         if (lpData) ptr = list_next( &data_list, &lpData->entry );
2859     }
2860
2861     if (!ptr) return 0;
2862     return LIST_ENTRY( ptr, WINE_CLIPDATA, entry )->wFormatID;
2863 }
2864
2865
2866 /**************************************************************************
2867  *              X11DRV_IsClipboardFormatAvailable
2868  */
2869 BOOL CDECL X11DRV_IsClipboardFormatAvailable(UINT wFormat)
2870 {
2871     BOOL bRet = FALSE;
2872     CLIPBOARDINFO cbinfo;
2873
2874     TRACE("(%04X)\n", wFormat);
2875
2876     X11DRV_CLIPBOARD_UpdateCache(&cbinfo);
2877
2878     if (wFormat != 0 && X11DRV_CLIPBOARD_LookupData(wFormat))
2879         bRet = TRUE;
2880
2881     TRACE("(%04X)- ret(%d)\n", wFormat, bRet);
2882
2883     return bRet;
2884 }
2885
2886
2887 /**************************************************************************
2888  *              GetClipboardData (USER.142)
2889  */
2890 HANDLE CDECL X11DRV_GetClipboardData(UINT wFormat)
2891 {
2892     CLIPBOARDINFO cbinfo;
2893     LPWINE_CLIPDATA lpRender;
2894
2895     TRACE("(%04X)\n", wFormat);
2896
2897     X11DRV_CLIPBOARD_UpdateCache(&cbinfo);
2898
2899     if ((lpRender = X11DRV_CLIPBOARD_LookupData(wFormat)))
2900     {
2901         if ( !lpRender->hData )
2902             X11DRV_CLIPBOARD_RenderFormat(thread_init_display(), lpRender);
2903
2904         TRACE(" returning %p (type %04x)\n", lpRender->hData, lpRender->wFormatID);
2905         return lpRender->hData;
2906     }
2907
2908     return 0;
2909 }
2910
2911
2912 /**************************************************************************
2913  *              ResetSelectionOwner
2914  *
2915  * Called when the thread owning the selection is destroyed and we need to
2916  * preserve the selection ownership. We look for another top level window
2917  * in this process and send it a message to acquire the selection.
2918  */
2919 void X11DRV_ResetSelectionOwner(void)
2920 {
2921     HWND hwnd;
2922     DWORD procid;
2923
2924     TRACE("\n");
2925
2926     if (!selectionAcquired  || thread_selection_wnd() != selectionWindow)
2927         return;
2928
2929     selectionAcquired = S_NOSELECTION;
2930     selectionWindow = 0;
2931
2932     hwnd = GetWindow(GetDesktopWindow(), GW_CHILD);
2933     do
2934     {
2935         if (GetCurrentThreadId() != GetWindowThreadProcessId(hwnd, &procid))
2936         {
2937             if (GetCurrentProcessId() == procid)
2938             {
2939                 if (SendMessageW(hwnd, WM_X11DRV_ACQUIRE_SELECTION, 0, 0))
2940                     return;
2941             }
2942         }
2943     } while ((hwnd = GetWindow(hwnd, GW_HWNDNEXT)) != NULL);
2944
2945     WARN("Failed to find another thread to take selection ownership. Clipboard data will be lost.\n");
2946
2947     X11DRV_CLIPBOARD_ReleaseOwnership();
2948     X11DRV_EmptyClipboard(FALSE);
2949 }
2950
2951
2952 /**************************************************************************
2953  *                      X11DRV_CLIPBOARD_SynthesizeData
2954  */
2955 static BOOL X11DRV_CLIPBOARD_SynthesizeData(UINT wFormatID)
2956 {
2957     BOOL bsyn = TRUE;
2958     LPWINE_CLIPDATA lpSource = NULL;
2959
2960     TRACE(" %04x\n", wFormatID);
2961
2962     /* Don't need to synthesize if it already exists */
2963     if (X11DRV_CLIPBOARD_LookupData(wFormatID))
2964         return TRUE;
2965
2966     if (wFormatID == CF_UNICODETEXT || wFormatID == CF_TEXT || wFormatID == CF_OEMTEXT)
2967     {
2968         bsyn = ((lpSource = X11DRV_CLIPBOARD_LookupData(CF_UNICODETEXT)) &&
2969             ~lpSource->wFlags & CF_FLAG_SYNTHESIZED) ||
2970             ((lpSource = X11DRV_CLIPBOARD_LookupData(CF_TEXT)) &&
2971             ~lpSource->wFlags & CF_FLAG_SYNTHESIZED) ||
2972             ((lpSource = X11DRV_CLIPBOARD_LookupData(CF_OEMTEXT)) &&
2973             ~lpSource->wFlags & CF_FLAG_SYNTHESIZED);
2974     }
2975     else if (wFormatID == CF_ENHMETAFILE)
2976     {
2977         bsyn = (lpSource = X11DRV_CLIPBOARD_LookupData(CF_METAFILEPICT)) &&
2978             ~lpSource->wFlags & CF_FLAG_SYNTHESIZED;
2979     }
2980     else if (wFormatID == CF_METAFILEPICT)
2981     {
2982         bsyn = (lpSource = X11DRV_CLIPBOARD_LookupData(CF_ENHMETAFILE)) &&
2983             ~lpSource->wFlags & CF_FLAG_SYNTHESIZED;
2984     }
2985     else if (wFormatID == CF_DIB)
2986     {
2987         bsyn = (lpSource = X11DRV_CLIPBOARD_LookupData(CF_BITMAP)) &&
2988             ~lpSource->wFlags & CF_FLAG_SYNTHESIZED;
2989     }
2990     else if (wFormatID == CF_BITMAP)
2991     {
2992         bsyn = (lpSource = X11DRV_CLIPBOARD_LookupData(CF_DIB)) &&
2993             ~lpSource->wFlags & CF_FLAG_SYNTHESIZED;
2994     }
2995
2996     if (bsyn)
2997         X11DRV_CLIPBOARD_InsertClipboardData(wFormatID, 0, CF_FLAG_SYNTHESIZED, NULL, TRUE);
2998
2999     return bsyn;
3000 }
3001
3002
3003
3004 /**************************************************************************
3005  *              X11DRV_EndClipboardUpdate
3006  * TODO:
3007  *  Add locale if it hasn't already been added
3008  */
3009 void CDECL X11DRV_EndClipboardUpdate(void)
3010 {
3011     INT count = ClipDataCount;
3012
3013     /* Do Unicode <-> Text <-> OEM mapping */
3014     X11DRV_CLIPBOARD_SynthesizeData(CF_TEXT);
3015     X11DRV_CLIPBOARD_SynthesizeData(CF_OEMTEXT);
3016     X11DRV_CLIPBOARD_SynthesizeData(CF_UNICODETEXT);
3017
3018     /* Enhmetafile <-> MetafilePict mapping */
3019     X11DRV_CLIPBOARD_SynthesizeData(CF_ENHMETAFILE);
3020     X11DRV_CLIPBOARD_SynthesizeData(CF_METAFILEPICT);
3021
3022     /* DIB <-> Bitmap mapping */
3023     X11DRV_CLIPBOARD_SynthesizeData(CF_DIB);
3024     X11DRV_CLIPBOARD_SynthesizeData(CF_BITMAP);
3025
3026     TRACE("%d formats added to cached data\n", ClipDataCount - count);
3027 }
3028
3029
3030 /***********************************************************************
3031  *           X11DRV_SelectionRequest_TARGETS
3032  *  Service a TARGETS selection request event
3033  */
3034 static Atom X11DRV_SelectionRequest_TARGETS( Display *display, Window requestor,
3035                                              Atom target, Atom rprop )
3036 {
3037     UINT i;
3038     Atom* targets;
3039     ULONG cTargets;
3040     LPWINE_CLIPFORMAT format;
3041     LPWINE_CLIPDATA lpData;
3042
3043     /* Create X atoms for any clipboard types which don't have atoms yet.
3044      * This avoids sending bogus zero atoms.
3045      * Without this, copying might not have access to all clipboard types.
3046      * FIXME: is it safe to call this here?
3047      */
3048     intern_atoms();
3049
3050     /*
3051      * Count the number of items we wish to expose as selection targets.
3052      */
3053     cTargets = 1; /* Include TARGETS */
3054
3055     if (!list_head( &data_list )) return None;
3056
3057     LIST_FOR_EACH_ENTRY( lpData, &data_list, WINE_CLIPDATA, entry )
3058         LIST_FOR_EACH_ENTRY( format, &format_list, WINE_CLIPFORMAT, entry )
3059             if ((format->wFormatID == lpData->wFormatID) &&
3060                 format->lpDrvExportFunc && format->drvData)
3061                 cTargets++;
3062
3063     TRACE(" found %d formats\n", cTargets);
3064
3065     /* Allocate temp buffer */
3066     targets = HeapAlloc( GetProcessHeap(), 0, cTargets * sizeof(Atom));
3067     if(targets == NULL)
3068         return None;
3069
3070     i = 0;
3071     targets[i++] = x11drv_atom(TARGETS);
3072
3073     LIST_FOR_EACH_ENTRY( lpData, &data_list, WINE_CLIPDATA, entry )
3074         LIST_FOR_EACH_ENTRY( format, &format_list, WINE_CLIPFORMAT, entry )
3075             if ((format->wFormatID == lpData->wFormatID) &&
3076                 format->lpDrvExportFunc && format->drvData)
3077                 targets[i++] = format->drvData;
3078
3079     wine_tsx11_lock();
3080
3081     if (TRACE_ON(clipboard))
3082     {
3083         unsigned int i;
3084         for ( i = 0; i < cTargets; i++)
3085         {
3086             char *itemFmtName = XGetAtomName(display, targets[i]);
3087             TRACE("\tAtom# %d:  Property %ld Type %s\n", i, targets[i], itemFmtName);
3088             XFree(itemFmtName);
3089         }
3090     }
3091
3092     /* We may want to consider setting the type to xaTargets instead,
3093      * in case some apps expect this instead of XA_ATOM */
3094     XChangeProperty(display, requestor, rprop, XA_ATOM, 32,
3095                     PropModeReplace, (unsigned char *)targets, cTargets);
3096     wine_tsx11_unlock();
3097
3098     HeapFree(GetProcessHeap(), 0, targets);
3099
3100     return rprop;
3101 }
3102
3103
3104 /***********************************************************************
3105  *           X11DRV_SelectionRequest_MULTIPLE
3106  *  Service a MULTIPLE selection request event
3107  *  rprop contains a list of (target,property) atom pairs.
3108  *  The first atom names a target and the second names a property.
3109  *  The effect is as if we have received a sequence of SelectionRequest events
3110  *  (one for each atom pair) except that:
3111  *  1. We reply with a SelectionNotify only when all the requested conversions
3112  *  have been performed.
3113  *  2. If we fail to convert the target named by an atom in the MULTIPLE property,
3114  *  we replace the atom in the property by None.
3115  */
3116 static Atom X11DRV_SelectionRequest_MULTIPLE( HWND hWnd, XSelectionRequestEvent *pevent )
3117 {
3118     Display *display = pevent->display;
3119     Atom           rprop;
3120     Atom           atype=AnyPropertyType;
3121     int            aformat;
3122     unsigned long  remain;
3123     Atom*          targetPropList=NULL;
3124     unsigned long  cTargetPropList = 0;
3125
3126     /* If the specified property is None the requestor is an obsolete client.
3127      * We support these by using the specified target atom as the reply property.
3128      */
3129     rprop = pevent->property;
3130     if( rprop == None )
3131         rprop = pevent->target;
3132     if (!rprop)
3133         return 0;
3134
3135     /* Read the MULTIPLE property contents. This should contain a list of
3136      * (target,property) atom pairs.
3137      */
3138     wine_tsx11_lock();
3139     if(XGetWindowProperty(display, pevent->requestor, rprop,
3140                           0, 0x3FFF, False, AnyPropertyType, &atype,&aformat,
3141                           &cTargetPropList, &remain,
3142                           (unsigned char**)&targetPropList) != Success)
3143     {
3144         wine_tsx11_unlock();
3145         TRACE("\tCouldn't read MULTIPLE property\n");
3146     }
3147     else
3148     {
3149         if (TRACE_ON(clipboard))
3150         {
3151             char * const typeName = XGetAtomName(display, atype);
3152             TRACE("\tType %s,Format %d,nItems %ld, Remain %ld\n",
3153                   typeName, aformat, cTargetPropList, remain);
3154             XFree(typeName);
3155         }
3156         wine_tsx11_unlock();
3157
3158         /*
3159          * Make sure we got what we expect.
3160          * NOTE: According to the X-ICCCM Version 2.0 documentation the property sent
3161          * in a MULTIPLE selection request should be of type ATOM_PAIR.
3162          * However some X apps(such as XPaint) are not compliant with this and return
3163          * a user defined atom in atype when XGetWindowProperty is called.
3164          * The data *is* an atom pair but is not denoted as such.
3165          */
3166         if(aformat == 32 /* atype == xAtomPair */ )
3167         {
3168             unsigned int i;
3169
3170             /* Iterate through the ATOM_PAIR list and execute a SelectionRequest
3171              * for each (target,property) pair */
3172
3173             for (i = 0; i < cTargetPropList; i+=2)
3174             {
3175                 XSelectionRequestEvent event;
3176
3177                 if (TRACE_ON(clipboard))
3178                 {
3179                     char *targetName, *propName;
3180                     wine_tsx11_lock();
3181                     targetName = XGetAtomName(display, targetPropList[i]);
3182                     propName = XGetAtomName(display, targetPropList[i+1]);
3183                     TRACE("MULTIPLE(%d): Target='%s' Prop='%s'\n",
3184                           i/2, targetName, propName);
3185                     XFree(targetName);
3186                     XFree(propName);
3187                     wine_tsx11_unlock();
3188                 }
3189
3190                 /* We must have a non "None" property to service a MULTIPLE target atom */
3191                 if ( !targetPropList[i+1] )
3192                 {
3193                     TRACE("\tMULTIPLE(%d): Skipping target with empty property!\n", i);
3194                     continue;
3195                 }
3196
3197                 /* Set up an XSelectionRequestEvent for this (target,property) pair */
3198                 event = *pevent;
3199                 event.target = targetPropList[i];
3200                 event.property = targetPropList[i+1];
3201
3202                 /* Fire a SelectionRequest, informing the handler that we are processing
3203                  * a MULTIPLE selection request event.
3204                  */
3205                 X11DRV_HandleSelectionRequest( hWnd, &event, TRUE );
3206             }
3207         }
3208
3209         /* Free the list of targets/properties */
3210         wine_tsx11_lock();
3211         XFree(targetPropList);
3212         wine_tsx11_unlock();
3213     }
3214
3215     return rprop;
3216 }
3217
3218
3219 /***********************************************************************
3220  *           X11DRV_HandleSelectionRequest
3221  *  Process an event selection request event.
3222  *  The bIsMultiple flag is used to signal when EVENT_SelectionRequest is called
3223  *  recursively while servicing a "MULTIPLE" selection target.
3224  *
3225  *  Note: We only receive this event when WINE owns the X selection
3226  */
3227 static void X11DRV_HandleSelectionRequest( HWND hWnd, XSelectionRequestEvent *event, BOOL bIsMultiple )
3228 {
3229     Display *display = event->display;
3230     XSelectionEvent result;
3231     Atom rprop = None;
3232     Window request = event->requestor;
3233
3234     TRACE("\n");
3235
3236     /*
3237      * We can only handle the selection request if :
3238      * The selection is PRIMARY or CLIPBOARD, AND we can successfully open the clipboard.
3239      * Don't do these checks or open the clipboard while recursively processing MULTIPLE,
3240      * since this has been already done.
3241      */
3242     if ( !bIsMultiple )
3243     {
3244         if (((event->selection != XA_PRIMARY) && (event->selection != x11drv_atom(CLIPBOARD))))
3245             goto END;
3246     }
3247
3248     /* If the specified property is None the requestor is an obsolete client.
3249      * We support these by using the specified target atom as the reply property.
3250      */
3251     rprop = event->property;
3252     if( rprop == None )
3253         rprop = event->target;
3254
3255     if(event->target == x11drv_atom(TARGETS))  /*  Return a list of all supported targets */
3256     {
3257         /* TARGETS selection request */
3258         rprop = X11DRV_SelectionRequest_TARGETS( display, request, event->target, rprop );
3259     }
3260     else if(event->target == x11drv_atom(MULTIPLE))  /*  rprop contains a list of (target, property) atom pairs */
3261     {
3262         /* MULTIPLE selection request */
3263         rprop = X11DRV_SelectionRequest_MULTIPLE( hWnd, event );
3264     }
3265     else
3266     {
3267         LPWINE_CLIPFORMAT lpFormat = X11DRV_CLIPBOARD_LookupProperty(NULL, event->target);
3268
3269         if (lpFormat && lpFormat->lpDrvExportFunc)
3270         {
3271             LPWINE_CLIPDATA lpData = X11DRV_CLIPBOARD_LookupData(lpFormat->wFormatID);
3272
3273             if (lpData)
3274             {
3275                 unsigned char* lpClipData;
3276                 DWORD cBytes;
3277                 HANDLE hClipData = lpFormat->lpDrvExportFunc(display, request, event->target,
3278                                                              rprop, lpData, &cBytes);
3279
3280                 if (hClipData && (lpClipData = GlobalLock(hClipData)))
3281                 {
3282                     int mode = PropModeReplace;
3283
3284                     TRACE("\tUpdating property %s, %d bytes\n",
3285                           debugstr_format(lpFormat->wFormatID), cBytes);
3286                     wine_tsx11_lock();
3287                     do
3288                     {
3289                         int nelements = min(cBytes, 65536);
3290                         XChangeProperty(display, request, rprop, event->target,
3291                                         8, mode, lpClipData, nelements);
3292                         mode = PropModeAppend;
3293                         cBytes -= nelements;
3294                         lpClipData += nelements;
3295                     } while (cBytes > 0);
3296                     wine_tsx11_unlock();
3297
3298                     GlobalUnlock(hClipData);
3299                     GlobalFree(hClipData);
3300                 }
3301             }
3302         }
3303     }
3304
3305 END:
3306     /* reply to sender
3307      * SelectionNotify should be sent only at the end of a MULTIPLE request
3308      */
3309     if ( !bIsMultiple )
3310     {
3311         result.type = SelectionNotify;
3312         result.display = display;
3313         result.requestor = request;
3314         result.selection = event->selection;
3315         result.property = rprop;
3316         result.target = event->target;
3317         result.time = event->time;
3318         TRACE("Sending SelectionNotify event...\n");
3319         wine_tsx11_lock();
3320         XSendEvent(display,event->requestor,False,NoEventMask,(XEvent*)&result);
3321         wine_tsx11_unlock();
3322     }
3323 }
3324
3325
3326 /***********************************************************************
3327  *           X11DRV_SelectionRequest
3328  */
3329 void X11DRV_SelectionRequest( HWND hWnd, XEvent *event )
3330 {
3331     X11DRV_HandleSelectionRequest( hWnd, &event->xselectionrequest, FALSE );
3332 }
3333
3334
3335 /***********************************************************************
3336  *           X11DRV_SelectionClear
3337  */
3338 void X11DRV_SelectionClear( HWND hWnd, XEvent *xev )
3339 {
3340     XSelectionClearEvent *event = &xev->xselectionclear;
3341     if (event->selection == XA_PRIMARY || event->selection == x11drv_atom(CLIPBOARD))
3342         X11DRV_CLIPBOARD_ReleaseSelection( event->display, event->selection,
3343                                            event->window, hWnd, event->time );
3344 }
3345
3346 /***********************************************************************
3347  *           X11DRV_Clipboard_Cleanup
3348  */
3349 void X11DRV_Clipboard_Cleanup(void)
3350 {
3351     selectionAcquired = S_NOSELECTION;
3352
3353     X11DRV_EmptyClipboard(FALSE);
3354 }