Add xref-pulse-on-jump
[emacs.git] / src / xselect.c
blob1570c4fef9c03e7ddc9f16620ecf0541e550a296
1 /* X Selection processing for Emacs.
2 Copyright (C) 1993-1997, 2000-2015 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 /* Rewritten by jwz */
22 #include <config.h>
23 #include <limits.h>
24 #include <stdio.h> /* termhooks.h needs this */
26 #ifdef HAVE_SYS_TYPES_H
27 #include <sys/types.h>
28 #endif
30 #include <unistd.h>
32 #include "lisp.h"
33 #include "xterm.h" /* for all of the X includes */
34 #include "dispextern.h" /* frame.h seems to want this */
35 #include "frame.h" /* Need this to get the X window of selected_frame */
36 #include "blockinput.h"
37 #include "character.h"
38 #include "buffer.h"
39 #include "process.h"
40 #include "termhooks.h"
41 #include "keyboard.h"
43 #include <X11/Xproto.h>
45 struct prop_location;
46 struct selection_data;
48 static void x_decline_selection_request (struct input_event *);
49 static bool x_convert_selection (struct input_event *, Lisp_Object,
50 Lisp_Object, Atom, bool,
51 struct x_display_info *);
52 static bool waiting_for_other_props_on_window (Display *, Window);
53 static struct prop_location *expect_property_change (Display *, Window,
54 Atom, int);
55 static void unexpect_property_change (struct prop_location *);
56 static void wait_for_property_change (struct prop_location *);
57 static Lisp_Object x_get_window_property_as_lisp_data (struct x_display_info *,
58 Window, Atom,
59 Lisp_Object, Atom);
60 static Lisp_Object selection_data_to_lisp_data (struct x_display_info *,
61 const unsigned char *,
62 ptrdiff_t, Atom, int);
63 static void lisp_data_to_selection_data (struct x_display_info *, Lisp_Object,
64 struct selection_data *);
66 /* Printing traces to stderr. */
68 #ifdef TRACE_SELECTION
69 #define TRACE0(fmt) \
70 fprintf (stderr, "%"pMd": " fmt "\n", (printmax_t) getpid ())
71 #define TRACE1(fmt, a0) \
72 fprintf (stderr, "%"pMd": " fmt "\n", (printmax_t) getpid (), a0)
73 #define TRACE2(fmt, a0, a1) \
74 fprintf (stderr, "%"pMd": " fmt "\n", (printmax_t) getpid (), a0, a1)
75 #define TRACE3(fmt, a0, a1, a2) \
76 fprintf (stderr, "%"pMd": " fmt "\n", (printmax_t) getpid (), a0, a1, a2)
77 #else
78 #define TRACE0(fmt) (void) 0
79 #define TRACE1(fmt, a0) (void) 0
80 #define TRACE2(fmt, a0, a1) (void) 0
81 #endif
83 /* Bytes needed to represent 'long' data. This is as per libX11; it
84 is not necessarily sizeof (long). */
85 #define X_LONG_SIZE 4
87 /* If this is a smaller number than the max-request-size of the display,
88 emacs will use INCR selection transfer when the selection is larger
89 than this. The max-request-size is usually around 64k, so if you want
90 emacs to use incremental selection transfers when the selection is
91 smaller than that, set this. I added this mostly for debugging the
92 incremental transfer stuff, but it might improve server performance.
94 This value cannot exceed INT_MAX / max (X_LONG_SIZE, sizeof (long))
95 because it is multiplied by X_LONG_SIZE and by sizeof (long) in
96 subscript calculations. Similarly for PTRDIFF_MAX - 1 or SIZE_MAX
97 - 1 in place of INT_MAX. */
98 #define MAX_SELECTION_QUANTUM \
99 ((int) min (0xFFFFFF, (min (INT_MAX, min (PTRDIFF_MAX, SIZE_MAX) - 1) \
100 / max (X_LONG_SIZE, sizeof (long)))))
102 static int
103 selection_quantum (Display *display)
105 long mrs = XMaxRequestSize (display);
106 return (mrs < MAX_SELECTION_QUANTUM / X_LONG_SIZE + 25
107 ? (mrs - 25) * X_LONG_SIZE
108 : MAX_SELECTION_QUANTUM);
111 #define LOCAL_SELECTION(selection_symbol,dpyinfo) \
112 assq_no_quit (selection_symbol, dpyinfo->terminal->Vselection_alist)
115 /* Define a queue to save up SELECTION_REQUEST_EVENT events for later
116 handling. */
118 struct selection_event_queue
120 struct input_event event;
121 struct selection_event_queue *next;
124 static struct selection_event_queue *selection_queue;
126 /* Nonzero means queue up SELECTION_REQUEST_EVENT events. */
128 static int x_queue_selection_requests;
130 /* Queue up an SELECTION_REQUEST_EVENT *EVENT, to be processed later. */
132 static void
133 x_queue_event (struct input_event *event)
135 struct selection_event_queue *queue_tmp;
137 /* Don't queue repeated requests.
138 This only happens for large requests which uses the incremental protocol. */
139 for (queue_tmp = selection_queue; queue_tmp; queue_tmp = queue_tmp->next)
141 if (!memcmp (&queue_tmp->event, event, sizeof (*event)))
143 TRACE1 ("DECLINE DUP SELECTION EVENT %p", queue_tmp);
144 x_decline_selection_request (event);
145 return;
149 queue_tmp = xmalloc (sizeof *queue_tmp);
150 TRACE1 ("QUEUE SELECTION EVENT %p", queue_tmp);
151 queue_tmp->event = *event;
152 queue_tmp->next = selection_queue;
153 selection_queue = queue_tmp;
156 /* Start queuing SELECTION_REQUEST_EVENT events. */
158 static void
159 x_start_queuing_selection_requests (void)
161 if (x_queue_selection_requests)
162 emacs_abort ();
164 x_queue_selection_requests++;
165 TRACE1 ("x_start_queuing_selection_requests %d", x_queue_selection_requests);
168 /* Stop queuing SELECTION_REQUEST_EVENT events. */
170 static void
171 x_stop_queuing_selection_requests (void)
173 TRACE1 ("x_stop_queuing_selection_requests %d", x_queue_selection_requests);
174 --x_queue_selection_requests;
176 /* Take all the queued events and put them back
177 so that they get processed afresh. */
179 while (selection_queue != NULL)
181 struct selection_event_queue *queue_tmp = selection_queue;
182 TRACE1 ("RESTORE SELECTION EVENT %p", queue_tmp);
183 kbd_buffer_unget_event (&queue_tmp->event);
184 selection_queue = queue_tmp->next;
185 xfree (queue_tmp);
190 /* This converts a Lisp symbol to a server Atom, avoiding a server
191 roundtrip whenever possible. */
193 static Atom
194 symbol_to_x_atom (struct x_display_info *dpyinfo, Lisp_Object sym)
196 Atom val;
197 if (NILP (sym)) return 0;
198 if (EQ (sym, QPRIMARY)) return XA_PRIMARY;
199 if (EQ (sym, QSECONDARY)) return XA_SECONDARY;
200 if (EQ (sym, QSTRING)) return XA_STRING;
201 if (EQ (sym, QINTEGER)) return XA_INTEGER;
202 if (EQ (sym, QATOM)) return XA_ATOM;
203 if (EQ (sym, QCLIPBOARD)) return dpyinfo->Xatom_CLIPBOARD;
204 if (EQ (sym, QTIMESTAMP)) return dpyinfo->Xatom_TIMESTAMP;
205 if (EQ (sym, QTEXT)) return dpyinfo->Xatom_TEXT;
206 if (EQ (sym, QCOMPOUND_TEXT)) return dpyinfo->Xatom_COMPOUND_TEXT;
207 if (EQ (sym, QUTF8_STRING)) return dpyinfo->Xatom_UTF8_STRING;
208 if (EQ (sym, QDELETE)) return dpyinfo->Xatom_DELETE;
209 if (EQ (sym, QMULTIPLE)) return dpyinfo->Xatom_MULTIPLE;
210 if (EQ (sym, QINCR)) return dpyinfo->Xatom_INCR;
211 if (EQ (sym, QEMACS_TMP)) return dpyinfo->Xatom_EMACS_TMP;
212 if (EQ (sym, QTARGETS)) return dpyinfo->Xatom_TARGETS;
213 if (EQ (sym, QNULL)) return dpyinfo->Xatom_NULL;
214 if (!SYMBOLP (sym)) emacs_abort ();
216 TRACE1 (" XInternAtom %s", SSDATA (SYMBOL_NAME (sym)));
217 block_input ();
218 val = XInternAtom (dpyinfo->display, SSDATA (SYMBOL_NAME (sym)), False);
219 unblock_input ();
220 return val;
224 /* This converts a server Atom to a Lisp symbol, avoiding server roundtrips
225 and calls to intern whenever possible. */
227 static Lisp_Object
228 x_atom_to_symbol (struct x_display_info *dpyinfo, Atom atom)
230 char *str;
231 Lisp_Object val;
233 if (! atom)
234 return Qnil;
236 switch (atom)
238 case XA_PRIMARY:
239 return QPRIMARY;
240 case XA_SECONDARY:
241 return QSECONDARY;
242 case XA_STRING:
243 return QSTRING;
244 case XA_INTEGER:
245 return QINTEGER;
246 case XA_ATOM:
247 return QATOM;
250 if (dpyinfo == NULL)
251 return Qnil;
252 if (atom == dpyinfo->Xatom_CLIPBOARD)
253 return QCLIPBOARD;
254 if (atom == dpyinfo->Xatom_TIMESTAMP)
255 return QTIMESTAMP;
256 if (atom == dpyinfo->Xatom_TEXT)
257 return QTEXT;
258 if (atom == dpyinfo->Xatom_COMPOUND_TEXT)
259 return QCOMPOUND_TEXT;
260 if (atom == dpyinfo->Xatom_UTF8_STRING)
261 return QUTF8_STRING;
262 if (atom == dpyinfo->Xatom_DELETE)
263 return QDELETE;
264 if (atom == dpyinfo->Xatom_MULTIPLE)
265 return QMULTIPLE;
266 if (atom == dpyinfo->Xatom_INCR)
267 return QINCR;
268 if (atom == dpyinfo->Xatom_EMACS_TMP)
269 return QEMACS_TMP;
270 if (atom == dpyinfo->Xatom_TARGETS)
271 return QTARGETS;
272 if (atom == dpyinfo->Xatom_NULL)
273 return QNULL;
275 block_input ();
276 str = XGetAtomName (dpyinfo->display, atom);
277 unblock_input ();
278 TRACE1 ("XGetAtomName --> %s", str);
279 if (! str) return Qnil;
280 val = intern (str);
281 block_input ();
282 /* This was allocated by Xlib, so use XFree. */
283 XFree (str);
284 unblock_input ();
285 return val;
288 /* Do protocol to assert ourself as a selection owner.
289 FRAME shall be the owner; it must be a valid X frame.
290 Update the Vselection_alist so that we can reply to later requests for
291 our selection. */
293 static void
294 x_own_selection (Lisp_Object selection_name, Lisp_Object selection_value,
295 Lisp_Object frame)
297 struct frame *f = XFRAME (frame);
298 Window selecting_window = FRAME_X_WINDOW (f);
299 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
300 Display *display = dpyinfo->display;
301 Time timestamp = dpyinfo->last_user_time;
302 Atom selection_atom = symbol_to_x_atom (dpyinfo, selection_name);
304 block_input ();
305 x_catch_errors (display);
306 XSetSelectionOwner (display, selection_atom, selecting_window, timestamp);
307 x_check_errors (display, "Can't set selection: %s");
308 x_uncatch_errors ();
309 unblock_input ();
311 /* Now update the local cache */
313 Lisp_Object selection_data;
314 Lisp_Object prev_value;
316 selection_data = list4 (selection_name, selection_value,
317 INTEGER_TO_CONS (timestamp), frame);
318 prev_value = LOCAL_SELECTION (selection_name, dpyinfo);
320 tset_selection_alist
321 (dpyinfo->terminal,
322 Fcons (selection_data, dpyinfo->terminal->Vselection_alist));
324 /* If we already owned the selection, remove the old selection
325 data. Don't use Fdelq as that may QUIT. */
326 if (!NILP (prev_value))
328 /* We know it's not the CAR, so it's easy. */
329 Lisp_Object rest = dpyinfo->terminal->Vselection_alist;
330 for (; CONSP (rest); rest = XCDR (rest))
331 if (EQ (prev_value, Fcar (XCDR (rest))))
333 XSETCDR (rest, XCDR (XCDR (rest)));
334 break;
340 /* Given a selection-name and desired type, look up our local copy of
341 the selection value and convert it to the type.
342 Return nil, a string, a vector, a symbol, an integer, or a cons
343 that CONS_TO_INTEGER could plausibly handle.
344 This function is used both for remote requests (LOCAL_REQUEST is zero)
345 and for local x-get-selection-internal (LOCAL_REQUEST is nonzero).
347 This calls random Lisp code, and may signal or gc. */
349 static Lisp_Object
350 x_get_local_selection (Lisp_Object selection_symbol, Lisp_Object target_type,
351 bool local_request, struct x_display_info *dpyinfo)
353 Lisp_Object local_value;
354 Lisp_Object handler_fn, value, check;
356 local_value = LOCAL_SELECTION (selection_symbol, dpyinfo);
358 if (NILP (local_value)) return Qnil;
360 /* TIMESTAMP is a special case. */
361 if (EQ (target_type, QTIMESTAMP))
363 handler_fn = Qnil;
364 value = XCAR (XCDR (XCDR (local_value)));
366 else
368 /* Don't allow a quit within the converter.
369 When the user types C-g, he would be surprised
370 if by luck it came during a converter. */
371 ptrdiff_t count = SPECPDL_INDEX ();
372 specbind (Qinhibit_quit, Qt);
374 CHECK_SYMBOL (target_type);
375 handler_fn = Fcdr (Fassq (target_type, Vselection_converter_alist));
376 /* gcpro is not needed here since nothing but HANDLER_FN
377 is live, and that ought to be a symbol. */
379 if (!NILP (handler_fn))
380 value = call3 (handler_fn,
381 selection_symbol, (local_request ? Qnil : target_type),
382 XCAR (XCDR (local_value)));
383 else
384 value = Qnil;
385 unbind_to (count, Qnil);
388 /* Make sure this value is of a type that we could transmit
389 to another X client. */
391 check = value;
392 if (CONSP (value)
393 && SYMBOLP (XCAR (value)))
394 check = XCDR (value);
396 if (STRINGP (check)
397 || VECTORP (check)
398 || SYMBOLP (check)
399 || INTEGERP (check)
400 || NILP (value))
401 return value;
402 /* Check for a value that CONS_TO_INTEGER could handle. */
403 else if (CONSP (check)
404 && INTEGERP (XCAR (check))
405 && (INTEGERP (XCDR (check))
407 (CONSP (XCDR (check))
408 && INTEGERP (XCAR (XCDR (check)))
409 && NILP (XCDR (XCDR (check))))))
410 return value;
412 signal_error ("Invalid data returned by selection-conversion function",
413 list2 (handler_fn, value));
416 /* Subroutines of x_reply_selection_request. */
418 /* Send a SelectionNotify event to the requestor with property=None,
419 meaning we were unable to do what they wanted. */
421 static void
422 x_decline_selection_request (struct input_event *event)
424 XEvent reply_base;
425 XSelectionEvent *reply = &(reply_base.xselection);
427 reply->type = SelectionNotify;
428 reply->display = SELECTION_EVENT_DISPLAY (event);
429 reply->requestor = SELECTION_EVENT_REQUESTOR (event);
430 reply->selection = SELECTION_EVENT_SELECTION (event);
431 reply->time = SELECTION_EVENT_TIME (event);
432 reply->target = SELECTION_EVENT_TARGET (event);
433 reply->property = None;
435 /* The reason for the error may be that the receiver has
436 died in the meantime. Handle that case. */
437 block_input ();
438 x_catch_errors (reply->display);
439 XSendEvent (reply->display, reply->requestor, False, 0, &reply_base);
440 XFlush (reply->display);
441 x_uncatch_errors ();
442 unblock_input ();
445 /* This is the selection request currently being processed.
446 It is set to zero when the request is fully processed. */
447 static struct input_event *x_selection_current_request;
449 /* Display info in x_selection_request. */
451 static struct x_display_info *selection_request_dpyinfo;
453 /* Raw selection data, for sending to a requestor window. */
455 struct selection_data
457 unsigned char *data;
458 ptrdiff_t size;
459 int format;
460 Atom type;
461 bool nofree;
462 Atom property;
463 /* This can be set to non-NULL during x_reply_selection_request, if
464 the selection is waiting for an INCR transfer to complete. Don't
465 free these; that's done by unexpect_property_change. */
466 struct prop_location *wait_object;
467 struct selection_data *next;
470 /* Linked list of the above (in support of MULTIPLE targets). */
472 static struct selection_data *converted_selections;
474 /* "Data" to send a requestor for a failed MULTIPLE subtarget. */
475 static Atom conversion_fail_tag;
477 /* Used as an unwind-protect clause so that, if a selection-converter signals
478 an error, we tell the requestor that we were unable to do what they wanted
479 before we throw to top-level or go into the debugger or whatever. */
481 static void
482 x_selection_request_lisp_error (void)
484 struct selection_data *cs, *next;
486 for (cs = converted_selections; cs; cs = next)
488 next = cs->next;
489 if (! cs->nofree && cs->data)
490 xfree (cs->data);
491 xfree (cs);
493 converted_selections = NULL;
495 if (x_selection_current_request != 0
496 && selection_request_dpyinfo->display)
497 x_decline_selection_request (x_selection_current_request);
500 static void
501 x_catch_errors_unwind (void)
503 block_input ();
504 x_uncatch_errors ();
505 unblock_input ();
509 /* This stuff is so that INCR selections are reentrant (that is, so we can
510 be servicing multiple INCR selection requests simultaneously.) I haven't
511 actually tested that yet. */
513 /* Keep a list of the property changes that are awaited. */
515 struct prop_location
517 int identifier;
518 Display *display;
519 Window window;
520 Atom property;
521 int desired_state;
522 bool arrived;
523 struct prop_location *next;
526 static int prop_location_identifier;
528 static Lisp_Object property_change_reply;
530 static struct prop_location *property_change_reply_object;
532 static struct prop_location *property_change_wait_list;
534 static void
535 set_property_change_object (struct prop_location *location)
537 /* Input must be blocked so we don't get the event before we set these. */
538 if (! input_blocked_p ())
539 emacs_abort ();
540 XSETCAR (property_change_reply, Qnil);
541 property_change_reply_object = location;
545 /* Send the reply to a selection request event EVENT. */
547 #ifdef TRACE_SELECTION
548 static int x_reply_selection_request_cnt;
549 #endif /* TRACE_SELECTION */
551 static void
552 x_reply_selection_request (struct input_event *event,
553 struct x_display_info *dpyinfo)
555 XEvent reply_base;
556 XSelectionEvent *reply = &(reply_base.xselection);
557 Display *display = SELECTION_EVENT_DISPLAY (event);
558 Window window = SELECTION_EVENT_REQUESTOR (event);
559 ptrdiff_t bytes_remaining;
560 int max_bytes = selection_quantum (display);
561 ptrdiff_t count = SPECPDL_INDEX ();
562 struct selection_data *cs;
564 reply->type = SelectionNotify;
565 reply->display = display;
566 reply->requestor = window;
567 reply->selection = SELECTION_EVENT_SELECTION (event);
568 reply->time = SELECTION_EVENT_TIME (event);
569 reply->target = SELECTION_EVENT_TARGET (event);
570 reply->property = SELECTION_EVENT_PROPERTY (event);
571 if (reply->property == None)
572 reply->property = reply->target;
574 block_input ();
575 /* The protected block contains wait_for_property_change, which can
576 run random lisp code (process handlers) or signal. Therefore, we
577 put the x_uncatch_errors call in an unwind. */
578 record_unwind_protect_void (x_catch_errors_unwind);
579 x_catch_errors (display);
581 /* Loop over converted selections, storing them in the requested
582 properties. If data is large, only store the first N bytes
583 (section 2.7.2 of ICCCM). Note that we store the data for a
584 MULTIPLE request in the opposite order; the ICCM says only that
585 the conversion itself must be done in the same order. */
586 for (cs = converted_selections; cs; cs = cs->next)
588 if (cs->property == None)
589 continue;
591 bytes_remaining = cs->size;
592 bytes_remaining *= cs->format >> 3;
593 if (bytes_remaining <= max_bytes)
595 /* Send all the data at once, with minimal handshaking. */
596 TRACE1 ("Sending all %"pD"d bytes", bytes_remaining);
597 XChangeProperty (display, window, cs->property,
598 cs->type, cs->format, PropModeReplace,
599 cs->data, cs->size);
601 else
603 /* Send an INCR tag to initiate incremental transfer. */
604 long value[1];
606 TRACE2 ("Start sending %"pD"d bytes incrementally (%s)",
607 bytes_remaining, XGetAtomName (display, cs->property));
608 cs->wait_object
609 = expect_property_change (display, window, cs->property,
610 PropertyDelete);
612 /* XChangeProperty expects an array of long even if long is
613 more than 32 bits. */
614 value[0] = min (bytes_remaining, X_LONG_MAX);
615 XChangeProperty (display, window, cs->property,
616 dpyinfo->Xatom_INCR, 32, PropModeReplace,
617 (unsigned char *) value, 1);
618 XSelectInput (display, window, PropertyChangeMask);
622 /* Now issue the SelectionNotify event. */
623 XSendEvent (display, window, False, 0, &reply_base);
624 XFlush (display);
626 #ifdef TRACE_SELECTION
628 char *sel = XGetAtomName (display, reply->selection);
629 char *tgt = XGetAtomName (display, reply->target);
630 TRACE3 ("Sent SelectionNotify: %s, target %s (%d)",
631 sel, tgt, ++x_reply_selection_request_cnt);
632 if (sel) XFree (sel);
633 if (tgt) XFree (tgt);
635 #endif /* TRACE_SELECTION */
637 /* Finish sending the rest of each of the INCR values. This should
638 be improved; there's a chance of deadlock if more than one
639 subtarget in a MULTIPLE selection requires an INCR transfer, and
640 the requestor and Emacs loop waiting on different transfers. */
641 for (cs = converted_selections; cs; cs = cs->next)
642 if (cs->wait_object)
644 int format_bytes = cs->format / 8;
645 bool had_errors_p = x_had_errors_p (display);
647 /* Must set this inside block_input (). unblock_input may read
648 events and setting property_change_reply in
649 wait_for_property_change is then too late. */
650 set_property_change_object (cs->wait_object);
651 unblock_input ();
653 bytes_remaining = cs->size;
654 bytes_remaining *= format_bytes;
656 /* Wait for the requestor to ack by deleting the property.
657 This can run Lisp code (process handlers) or signal. */
658 if (! had_errors_p)
660 TRACE1 ("Waiting for ACK (deletion of %s)",
661 XGetAtomName (display, cs->property));
662 wait_for_property_change (cs->wait_object);
664 else
665 unexpect_property_change (cs->wait_object);
667 while (bytes_remaining)
669 int i = ((bytes_remaining < max_bytes)
670 ? bytes_remaining
671 : max_bytes) / format_bytes;
672 block_input ();
674 cs->wait_object
675 = expect_property_change (display, window, cs->property,
676 PropertyDelete);
678 TRACE1 ("Sending increment of %d elements", i);
679 TRACE1 ("Set %s to increment data",
680 XGetAtomName (display, cs->property));
682 /* Append the next chunk of data to the property. */
683 XChangeProperty (display, window, cs->property,
684 cs->type, cs->format, PropModeAppend,
685 cs->data, i);
686 bytes_remaining -= i * format_bytes;
687 cs->data += i * ((cs->format == 32) ? sizeof (long)
688 : format_bytes);
689 XFlush (display);
690 had_errors_p = x_had_errors_p (display);
691 // See comment above about property_change_reply.
692 set_property_change_object (cs->wait_object);
693 unblock_input ();
695 if (had_errors_p) break;
697 /* Wait for the requestor to ack this chunk by deleting
698 the property. This can run Lisp code or signal. */
699 TRACE1 ("Waiting for increment ACK (deletion of %s)",
700 XGetAtomName (display, cs->property));
701 wait_for_property_change (cs->wait_object);
704 /* Now write a zero-length chunk to the property to tell the
705 requestor that we're done. */
706 block_input ();
707 if (! waiting_for_other_props_on_window (display, window))
708 XSelectInput (display, window, 0);
710 TRACE1 ("Set %s to a 0-length chunk to indicate EOF",
711 XGetAtomName (display, cs->property));
712 XChangeProperty (display, window, cs->property,
713 cs->type, cs->format, PropModeReplace,
714 cs->data, 0);
715 TRACE0 ("Done sending incrementally");
718 /* rms, 2003-01-03: I think I have fixed this bug. */
719 /* The window we're communicating with may have been deleted
720 in the meantime (that's a real situation from a bug report).
721 In this case, there may be events in the event queue still
722 referring to the deleted window, and we'll get a BadWindow error
723 in XTread_socket when processing the events. I don't have
724 an idea how to fix that. gerd, 2001-01-98. */
725 /* 2004-09-10: XSync and UNBLOCK so that possible protocol errors are
726 delivered before uncatch errors. */
727 XSync (display, False);
728 unblock_input ();
730 /* GTK queues events in addition to the queue in Xlib. So we
731 UNBLOCK to enter the event loop and get possible errors delivered,
732 and then BLOCK again because x_uncatch_errors requires it. */
733 block_input ();
734 /* This calls x_uncatch_errors. */
735 unbind_to (count, Qnil);
736 unblock_input ();
739 /* Handle a SelectionRequest event EVENT.
740 This is called from keyboard.c when such an event is found in the queue. */
742 static void
743 x_handle_selection_request (struct input_event *event)
745 struct gcpro gcpro1, gcpro2;
746 Time local_selection_time;
748 struct x_display_info *dpyinfo = SELECTION_EVENT_DPYINFO (event);
749 Atom selection = SELECTION_EVENT_SELECTION (event);
750 Lisp_Object selection_symbol = x_atom_to_symbol (dpyinfo, selection);
751 Atom target = SELECTION_EVENT_TARGET (event);
752 Lisp_Object target_symbol = x_atom_to_symbol (dpyinfo, target);
753 Atom property = SELECTION_EVENT_PROPERTY (event);
754 Lisp_Object local_selection_data;
755 bool success = false;
756 ptrdiff_t count = SPECPDL_INDEX ();
757 GCPRO2 (local_selection_data, target_symbol);
759 if (!dpyinfo) goto DONE;
761 local_selection_data = LOCAL_SELECTION (selection_symbol, dpyinfo);
763 /* Decline if we don't own any selections. */
764 if (NILP (local_selection_data)) goto DONE;
766 /* Decline requests issued prior to our acquiring the selection. */
767 CONS_TO_INTEGER (XCAR (XCDR (XCDR (local_selection_data))),
768 Time, local_selection_time);
769 if (SELECTION_EVENT_TIME (event) != CurrentTime
770 && local_selection_time > SELECTION_EVENT_TIME (event))
771 goto DONE;
773 x_selection_current_request = event;
774 selection_request_dpyinfo = dpyinfo;
775 record_unwind_protect_void (x_selection_request_lisp_error);
777 /* We might be able to handle nested x_handle_selection_requests,
778 but this is difficult to test, and seems unimportant. */
779 x_start_queuing_selection_requests ();
780 record_unwind_protect_void (x_stop_queuing_selection_requests);
782 TRACE2 ("x_handle_selection_request: selection=%s, target=%s",
783 SDATA (SYMBOL_NAME (selection_symbol)),
784 SDATA (SYMBOL_NAME (target_symbol)));
786 if (EQ (target_symbol, QMULTIPLE))
788 /* For MULTIPLE targets, the event property names a list of atom
789 pairs; the first atom names a target and the second names a
790 non-None property. */
791 Window requestor = SELECTION_EVENT_REQUESTOR (event);
792 Lisp_Object multprop;
793 ptrdiff_t j, nselections;
795 if (property == None) goto DONE;
796 multprop
797 = x_get_window_property_as_lisp_data (dpyinfo, requestor, property,
798 QMULTIPLE, selection);
800 if (!VECTORP (multprop) || ASIZE (multprop) % 2)
801 goto DONE;
803 nselections = ASIZE (multprop) / 2;
804 /* Perform conversions. This can signal. */
805 for (j = 0; j < nselections; j++)
807 Lisp_Object subtarget = AREF (multprop, 2*j);
808 Atom subproperty = symbol_to_x_atom (dpyinfo,
809 AREF (multprop, 2*j+1));
811 if (subproperty != None)
812 x_convert_selection (event, selection_symbol, subtarget,
813 subproperty, true, dpyinfo);
815 success = true;
817 else
819 if (property == None)
820 property = SELECTION_EVENT_TARGET (event);
821 success = x_convert_selection (event, selection_symbol,
822 target_symbol, property,
823 false, dpyinfo);
826 DONE:
828 if (success)
829 x_reply_selection_request (event, dpyinfo);
830 else
831 x_decline_selection_request (event);
832 x_selection_current_request = 0;
834 /* Run the `x-sent-selection-functions' abnormal hook. */
835 if (!NILP (Vx_sent_selection_functions)
836 && !EQ (Vx_sent_selection_functions, Qunbound))
837 CALLN (Frun_hook_with_args, Qx_sent_selection_functions,
838 selection_symbol, target_symbol, success ? Qt : Qnil);
840 unbind_to (count, Qnil);
841 UNGCPRO;
844 /* Perform the requested selection conversion, and write the data to
845 the converted_selections linked list, where it can be accessed by
846 x_reply_selection_request. If FOR_MULTIPLE, write out
847 the data even if conversion fails, using conversion_fail_tag.
849 Return true iff successful. */
851 static bool
852 x_convert_selection (struct input_event *event, Lisp_Object selection_symbol,
853 Lisp_Object target_symbol, Atom property,
854 bool for_multiple, struct x_display_info *dpyinfo)
856 struct gcpro gcpro1;
857 Lisp_Object lisp_selection;
858 struct selection_data *cs;
859 GCPRO1 (lisp_selection);
861 lisp_selection
862 = x_get_local_selection (selection_symbol, target_symbol,
863 false, dpyinfo);
865 /* A nil return value means we can't perform the conversion. */
866 if (NILP (lisp_selection)
867 || (CONSP (lisp_selection) && NILP (XCDR (lisp_selection))))
869 if (for_multiple)
871 cs = xmalloc (sizeof *cs);
872 cs->data = (unsigned char *) &conversion_fail_tag;
873 cs->size = 1;
874 cs->format = 32;
875 cs->type = XA_ATOM;
876 cs->nofree = true;
877 cs->property = property;
878 cs->wait_object = NULL;
879 cs->next = converted_selections;
880 converted_selections = cs;
883 UNGCPRO;
884 return false;
887 /* Otherwise, record the converted selection to binary. */
888 cs = xmalloc (sizeof *cs);
889 cs->data = NULL;
890 cs->nofree = true;
891 cs->property = property;
892 cs->wait_object = NULL;
893 cs->next = converted_selections;
894 converted_selections = cs;
895 lisp_data_to_selection_data (dpyinfo, lisp_selection, cs);
896 UNGCPRO;
897 return true;
900 /* Handle a SelectionClear event EVENT, which indicates that some
901 client cleared out our previously asserted selection.
902 This is called from keyboard.c when such an event is found in the queue. */
904 static void
905 x_handle_selection_clear (struct input_event *event)
907 Atom selection = SELECTION_EVENT_SELECTION (event);
908 Time changed_owner_time = SELECTION_EVENT_TIME (event);
910 Lisp_Object selection_symbol, local_selection_data;
911 Time local_selection_time;
912 struct x_display_info *dpyinfo = SELECTION_EVENT_DPYINFO (event);
913 Lisp_Object Vselection_alist;
915 TRACE0 ("x_handle_selection_clear");
917 if (!dpyinfo) return;
919 selection_symbol = x_atom_to_symbol (dpyinfo, selection);
920 local_selection_data = LOCAL_SELECTION (selection_symbol, dpyinfo);
922 /* Well, we already believe that we don't own it, so that's just fine. */
923 if (NILP (local_selection_data)) return;
925 CONS_TO_INTEGER (XCAR (XCDR (XCDR (local_selection_data))),
926 Time, local_selection_time);
928 /* We have reasserted the selection since this SelectionClear was
929 generated, so we can disregard it. */
930 if (changed_owner_time != CurrentTime
931 && local_selection_time > changed_owner_time)
932 return;
934 /* Otherwise, really clear. Don't use Fdelq as that may QUIT;. */
935 Vselection_alist = dpyinfo->terminal->Vselection_alist;
936 if (EQ (local_selection_data, CAR (Vselection_alist)))
937 Vselection_alist = XCDR (Vselection_alist);
938 else
940 Lisp_Object rest;
941 for (rest = Vselection_alist; CONSP (rest); rest = XCDR (rest))
942 if (EQ (local_selection_data, CAR (XCDR (rest))))
944 XSETCDR (rest, XCDR (XCDR (rest)));
945 break;
948 tset_selection_alist (dpyinfo->terminal, Vselection_alist);
950 /* Run the `x-lost-selection-functions' abnormal hook. */
951 CALLN (Frun_hook_with_args, Qx_lost_selection_functions, selection_symbol);
953 redisplay_preserve_echo_area (20);
956 void
957 x_handle_selection_event (struct input_event *event)
959 TRACE0 ("x_handle_selection_event");
960 if (event->kind != SELECTION_REQUEST_EVENT)
961 x_handle_selection_clear (event);
962 else if (x_queue_selection_requests)
963 x_queue_event (event);
964 else
965 x_handle_selection_request (event);
969 /* Clear all selections that were made from frame F.
970 We do this when about to delete a frame. */
972 void
973 x_clear_frame_selections (struct frame *f)
975 Lisp_Object frame;
976 Lisp_Object rest;
977 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
978 struct terminal *t = dpyinfo->terminal;
980 XSETFRAME (frame, f);
982 /* Delete elements from the beginning of Vselection_alist. */
983 while (CONSP (t->Vselection_alist)
984 && EQ (frame, XCAR (XCDR (XCDR (XCDR (XCAR (t->Vselection_alist)))))))
986 /* Run the `x-lost-selection-functions' abnormal hook. */
987 CALLN (Frun_hook_with_args, Qx_lost_selection_functions,
988 Fcar (Fcar (t->Vselection_alist)));
990 tset_selection_alist (t, XCDR (t->Vselection_alist));
993 /* Delete elements after the beginning of Vselection_alist. */
994 for (rest = t->Vselection_alist; CONSP (rest); rest = XCDR (rest))
995 if (CONSP (XCDR (rest))
996 && EQ (frame, XCAR (XCDR (XCDR (XCDR (XCAR (XCDR (rest))))))))
998 CALLN (Frun_hook_with_args, Qx_lost_selection_functions,
999 XCAR (XCAR (XCDR (rest))));
1000 XSETCDR (rest, XCDR (XCDR (rest)));
1001 break;
1005 /* True if any properties for DISPLAY and WINDOW
1006 are on the list of what we are waiting for. */
1008 static bool
1009 waiting_for_other_props_on_window (Display *display, Window window)
1011 for (struct prop_location *p = property_change_wait_list; p; p = p->next)
1012 if (p->display == display && p->window == window)
1013 return true;
1014 return false;
1017 /* Add an entry to the list of property changes we are waiting for.
1018 DISPLAY, WINDOW, PROPERTY, STATE describe what we will wait for.
1019 The return value is a number that uniquely identifies
1020 this awaited property change. */
1022 static struct prop_location *
1023 expect_property_change (Display *display, Window window,
1024 Atom property, int state)
1026 struct prop_location *pl = xmalloc (sizeof *pl);
1027 pl->identifier = ++prop_location_identifier;
1028 pl->display = display;
1029 pl->window = window;
1030 pl->property = property;
1031 pl->desired_state = state;
1032 pl->next = property_change_wait_list;
1033 pl->arrived = false;
1034 property_change_wait_list = pl;
1035 return pl;
1038 /* Delete an entry from the list of property changes we are waiting for.
1039 IDENTIFIER is the number that uniquely identifies the entry. */
1041 static void
1042 unexpect_property_change (struct prop_location *location)
1044 struct prop_location *prop, **pprev = &property_change_wait_list;
1046 for (prop = property_change_wait_list; prop; prop = *pprev)
1048 if (prop == location)
1050 *pprev = prop->next;
1051 xfree (prop);
1052 break;
1054 else
1055 pprev = &prop->next;
1059 /* Remove the property change expectation element for IDENTIFIER. */
1061 static void
1062 wait_for_property_change_unwind (void *loc)
1064 struct prop_location *location = loc;
1066 unexpect_property_change (location);
1067 if (location == property_change_reply_object)
1068 property_change_reply_object = 0;
1071 /* Actually wait for a property change.
1072 IDENTIFIER should be the value that expect_property_change returned. */
1074 static void
1075 wait_for_property_change (struct prop_location *location)
1077 ptrdiff_t count = SPECPDL_INDEX ();
1079 /* Make sure to do unexpect_property_change if we quit or err. */
1080 record_unwind_protect_ptr (wait_for_property_change_unwind, location);
1082 /* See comment in x_reply_selection_request about setting
1083 property_change_reply. Do not do it here. */
1085 /* If the event we are waiting for arrives beyond here, it will set
1086 property_change_reply, because property_change_reply_object says so. */
1087 if (! location->arrived)
1089 EMACS_INT timeout = max (0, x_selection_timeout);
1090 EMACS_INT secs = timeout / 1000;
1091 int nsecs = (timeout % 1000) * 1000000;
1092 TRACE2 (" Waiting %"pI"d secs, %d nsecs", secs, nsecs);
1093 wait_reading_process_output (secs, nsecs, 0, false,
1094 property_change_reply, NULL, 0);
1096 if (NILP (XCAR (property_change_reply)))
1098 TRACE0 (" Timed out");
1099 error ("Timed out waiting for property-notify event");
1103 unbind_to (count, Qnil);
1106 /* Called from XTread_socket in response to a PropertyNotify event. */
1108 void
1109 x_handle_property_notify (const XPropertyEvent *event)
1111 struct prop_location *rest;
1113 for (rest = property_change_wait_list; rest; rest = rest->next)
1115 if (!rest->arrived
1116 && rest->property == event->atom
1117 && rest->window == event->window
1118 && rest->display == event->display
1119 && rest->desired_state == event->state)
1121 TRACE2 ("Expected %s of property %s",
1122 (event->state == PropertyDelete ? "deletion" : "change"),
1123 XGetAtomName (event->display, event->atom));
1125 rest->arrived = true;
1127 /* If this is the one wait_for_property_change is waiting for,
1128 tell it to wake up. */
1129 if (rest == property_change_reply_object)
1130 XSETCAR (property_change_reply, Qt);
1132 return;
1139 /* Variables for communication with x_handle_selection_notify. */
1140 static Atom reading_which_selection;
1141 static Lisp_Object reading_selection_reply;
1142 static Window reading_selection_window;
1144 /* Do protocol to read selection-data from the server.
1145 Converts this to Lisp data and returns it.
1146 FRAME is the frame whose X window shall request the selection. */
1148 static Lisp_Object
1149 x_get_foreign_selection (Lisp_Object selection_symbol, Lisp_Object target_type,
1150 Lisp_Object time_stamp, Lisp_Object frame)
1152 struct frame *f = XFRAME (frame);
1153 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
1154 Display *display = dpyinfo->display;
1155 Window requestor_window = FRAME_X_WINDOW (f);
1156 Time requestor_time = dpyinfo->last_user_time;
1157 Atom target_property = dpyinfo->Xatom_EMACS_TMP;
1158 Atom selection_atom = symbol_to_x_atom (dpyinfo, selection_symbol);
1159 Atom type_atom = (CONSP (target_type)
1160 ? symbol_to_x_atom (dpyinfo, XCAR (target_type))
1161 : symbol_to_x_atom (dpyinfo, target_type));
1162 EMACS_INT timeout, secs;
1163 int nsecs;
1165 if (!FRAME_LIVE_P (f))
1166 return Qnil;
1168 if (! NILP (time_stamp))
1169 CONS_TO_INTEGER (time_stamp, Time, requestor_time);
1171 block_input ();
1172 TRACE2 ("Get selection %s, type %s",
1173 XGetAtomName (display, type_atom),
1174 XGetAtomName (display, target_property));
1176 x_catch_errors (display);
1177 XConvertSelection (display, selection_atom, type_atom, target_property,
1178 requestor_window, requestor_time);
1179 x_check_errors (display, "Can't convert selection: %s");
1180 x_uncatch_errors ();
1182 /* Prepare to block until the reply has been read. */
1183 reading_selection_window = requestor_window;
1184 reading_which_selection = selection_atom;
1185 XSETCAR (reading_selection_reply, Qnil);
1187 /* It should not be necessary to stop handling selection requests
1188 during this time. In fact, the SAVE_TARGETS mechanism requires
1189 us to handle a clipboard manager's requests before it returns
1190 SelectionNotify. */
1191 #if false
1192 x_start_queuing_selection_requests ();
1193 record_unwind_protect_void (x_stop_queuing_selection_requests);
1194 #endif
1196 unblock_input ();
1198 /* This allows quits. Also, don't wait forever. */
1199 timeout = max (0, x_selection_timeout);
1200 secs = timeout / 1000;
1201 nsecs = (timeout % 1000) * 1000000;
1202 TRACE1 (" Start waiting %"pI"d secs for SelectionNotify", secs);
1203 wait_reading_process_output (secs, nsecs, 0, false,
1204 reading_selection_reply, NULL, 0);
1205 TRACE1 (" Got event = %d", !NILP (XCAR (reading_selection_reply)));
1207 if (NILP (XCAR (reading_selection_reply)))
1208 error ("Timed out waiting for reply from selection owner");
1209 if (EQ (XCAR (reading_selection_reply), Qlambda))
1210 return Qnil;
1212 /* Otherwise, the selection is waiting for us on the requested property. */
1213 return
1214 x_get_window_property_as_lisp_data (dpyinfo, requestor_window,
1215 target_property, target_type,
1216 selection_atom);
1219 /* Subroutines of x_get_window_property_as_lisp_data */
1221 /* Use xfree, not XFree, to free the data obtained with this function. */
1223 static void
1224 x_get_window_property (Display *display, Window window, Atom property,
1225 unsigned char **data_ret, ptrdiff_t *bytes_ret,
1226 Atom *actual_type_ret, int *actual_format_ret,
1227 unsigned long *actual_size_ret)
1229 ptrdiff_t total_size;
1230 unsigned long bytes_remaining;
1231 ptrdiff_t offset = 0;
1232 unsigned char *data = 0;
1233 unsigned char *tmp_data = 0;
1234 int result;
1235 int buffer_size = selection_quantum (display);
1237 /* Wide enough to avoid overflow in expressions using it. */
1238 ptrdiff_t x_long_size = X_LONG_SIZE;
1240 /* Maximum value for TOTAL_SIZE. It cannot exceed PTRDIFF_MAX - 1
1241 and SIZE_MAX - 1, for an extra byte at the end. And it cannot
1242 exceed LONG_MAX * X_LONG_SIZE, for XGetWindowProperty. */
1243 ptrdiff_t total_size_max =
1244 ((min (PTRDIFF_MAX, SIZE_MAX) - 1) / x_long_size < LONG_MAX
1245 ? min (PTRDIFF_MAX, SIZE_MAX) - 1
1246 : LONG_MAX * x_long_size);
1248 block_input ();
1250 /* First probe the thing to find out how big it is. */
1251 result = XGetWindowProperty (display, window, property,
1252 0, 0, False, AnyPropertyType,
1253 actual_type_ret, actual_format_ret,
1254 actual_size_ret,
1255 &bytes_remaining, &tmp_data);
1256 if (result != Success)
1257 goto done;
1259 /* This was allocated by Xlib, so use XFree. */
1260 XFree (tmp_data);
1262 if (*actual_type_ret == None || *actual_format_ret == 0)
1263 goto done;
1265 if (total_size_max < bytes_remaining)
1266 goto size_overflow;
1267 total_size = bytes_remaining;
1268 data = xmalloc (total_size + 1);
1270 /* Now read, until we've gotten it all. */
1271 while (bytes_remaining)
1273 ptrdiff_t bytes_gotten;
1274 int bytes_per_item;
1275 result
1276 = XGetWindowProperty (display, window, property,
1277 offset / X_LONG_SIZE,
1278 buffer_size / X_LONG_SIZE,
1279 False,
1280 AnyPropertyType,
1281 actual_type_ret, actual_format_ret,
1282 actual_size_ret, &bytes_remaining, &tmp_data);
1284 /* If this doesn't return Success at this point, it means that
1285 some clod deleted the selection while we were in the midst of
1286 reading it. Deal with that, I guess.... */
1287 if (result != Success)
1288 break;
1290 bytes_per_item = *actual_format_ret >> 3;
1291 eassert (*actual_size_ret <= buffer_size / bytes_per_item);
1293 /* The man page for XGetWindowProperty says:
1294 "If the returned format is 32, the returned data is represented
1295 as a long array and should be cast to that type to obtain the
1296 elements."
1297 This applies even if long is more than 32 bits, the X library
1298 converts from 32 bit elements received from the X server to long
1299 and passes the long array to us. Thus, for that case memcpy can not
1300 be used. We convert to a 32 bit type here, because so much code
1301 assume on that.
1303 The bytes and offsets passed to XGetWindowProperty refers to the
1304 property and those are indeed in 32 bit quantities if format is 32. */
1306 bytes_gotten = *actual_size_ret;
1307 bytes_gotten *= bytes_per_item;
1309 TRACE2 ("Read %"pD"d bytes from property %s",
1310 bytes_gotten, XGetAtomName (display, property));
1312 if (total_size - offset < bytes_gotten)
1314 unsigned char *data1;
1315 ptrdiff_t remaining_lim = total_size_max - offset - bytes_gotten;
1316 if (remaining_lim < 0 || remaining_lim < bytes_remaining)
1317 goto size_overflow;
1318 total_size = offset + bytes_gotten + bytes_remaining;
1319 data1 = xrealloc (data, total_size + 1);
1320 data = data1;
1323 if (BITS_PER_LONG > 32 && *actual_format_ret == 32)
1325 unsigned long i;
1326 int *idata = (int *) (data + offset);
1327 long *ldata = (long *) tmp_data;
1329 for (i = 0; i < *actual_size_ret; ++i)
1330 idata[i] = ldata[i];
1332 else
1333 memcpy (data + offset, tmp_data, bytes_gotten);
1335 offset += bytes_gotten;
1337 /* This was allocated by Xlib, so use XFree. */
1338 XFree (tmp_data);
1341 XFlush (display);
1342 data[offset] = '\0';
1344 done:
1345 unblock_input ();
1346 *data_ret = data;
1347 *bytes_ret = offset;
1348 return;
1350 size_overflow:
1351 if (data)
1352 xfree (data);
1353 unblock_input ();
1354 memory_full (SIZE_MAX);
1357 /* Use xfree, not XFree, to free the data obtained with this function. */
1359 static void
1360 receive_incremental_selection (struct x_display_info *dpyinfo,
1361 Window window, Atom property,
1362 Lisp_Object target_type,
1363 unsigned int min_size_bytes,
1364 unsigned char **data_ret,
1365 ptrdiff_t *size_bytes_ret,
1366 Atom *type_ret, int *format_ret,
1367 unsigned long *size_ret)
1369 ptrdiff_t offset = 0;
1370 struct prop_location *wait_object;
1371 Display *display = dpyinfo->display;
1373 if (min (PTRDIFF_MAX, SIZE_MAX) < min_size_bytes)
1374 memory_full (SIZE_MAX);
1375 *data_ret = xmalloc (min_size_bytes);
1376 *size_bytes_ret = min_size_bytes;
1378 TRACE1 ("Read %u bytes incrementally", min_size_bytes);
1380 /* At this point, we have read an INCR property.
1381 Delete the property to ack it.
1382 (But first, prepare to receive the next event in this handshake.)
1384 Now, we must loop, waiting for the sending window to put a value on
1385 that property, then reading the property, then deleting it to ack.
1386 We are done when the sender places a property of length 0.
1388 block_input ();
1389 XSelectInput (display, window, STANDARD_EVENT_SET | PropertyChangeMask);
1390 TRACE1 (" Delete property %s",
1391 SDATA (SYMBOL_NAME (x_atom_to_symbol (dpyinfo, property))));
1392 XDeleteProperty (display, window, property);
1393 TRACE1 (" Expect new value of property %s",
1394 SDATA (SYMBOL_NAME (x_atom_to_symbol (dpyinfo, property))));
1395 wait_object = expect_property_change (display, window, property,
1396 PropertyNewValue);
1397 XFlush (display);
1398 // See comment in x_reply_selection_request about property_change_reply.
1399 set_property_change_object (wait_object);
1400 unblock_input ();
1402 while (true)
1404 unsigned char *tmp_data;
1405 ptrdiff_t tmp_size_bytes;
1407 TRACE0 (" Wait for property change");
1408 wait_for_property_change (wait_object);
1410 /* expect it again immediately, because x_get_window_property may
1411 .. no it won't, I don't get it.
1412 .. Ok, I get it now, the Xt code that implements INCR is broken. */
1413 TRACE0 (" Get property value");
1414 x_get_window_property (display, window, property,
1415 &tmp_data, &tmp_size_bytes,
1416 type_ret, format_ret, size_ret);
1418 TRACE1 (" Read increment of %"pD"d bytes", tmp_size_bytes);
1420 if (tmp_size_bytes == 0) /* we're done */
1422 TRACE0 ("Done reading incrementally");
1424 if (! waiting_for_other_props_on_window (display, window))
1425 XSelectInput (display, window, STANDARD_EVENT_SET);
1426 /* Use xfree, not XFree, because x_get_window_property
1427 calls xmalloc itself. */
1428 xfree (tmp_data);
1429 break;
1432 block_input ();
1433 TRACE1 (" ACK by deleting property %s",
1434 XGetAtomName (display, property));
1435 XDeleteProperty (display, window, property);
1436 wait_object = expect_property_change (display, window, property,
1437 PropertyNewValue);
1438 // See comment in x_reply_selection_request about property_change_reply.
1439 set_property_change_object (wait_object);
1440 XFlush (display);
1441 unblock_input ();
1443 if (*size_bytes_ret - offset < tmp_size_bytes)
1444 *data_ret = xpalloc (*data_ret, size_bytes_ret,
1445 tmp_size_bytes - (*size_bytes_ret - offset),
1446 -1, 1);
1448 memcpy ((*data_ret) + offset, tmp_data, tmp_size_bytes);
1449 offset += tmp_size_bytes;
1451 /* Use xfree, not XFree, because x_get_window_property
1452 calls xmalloc itself. */
1453 xfree (tmp_data);
1458 /* Fetch a value from property PROPERTY of X window WINDOW on display
1459 DISPLAY. TARGET_TYPE and SELECTION_ATOM are used in error message
1460 if this fails. */
1462 static Lisp_Object
1463 x_get_window_property_as_lisp_data (struct x_display_info *dpyinfo,
1464 Window window, Atom property,
1465 Lisp_Object target_type,
1466 Atom selection_atom)
1468 Atom actual_type;
1469 int actual_format;
1470 unsigned long actual_size;
1471 unsigned char *data = 0;
1472 ptrdiff_t bytes = 0;
1473 Lisp_Object val;
1474 Display *display = dpyinfo->display;
1476 TRACE0 ("Reading selection data");
1478 x_get_window_property (display, window, property, &data, &bytes,
1479 &actual_type, &actual_format, &actual_size);
1480 if (! data)
1482 block_input ();
1483 bool there_is_a_selection_owner
1484 = XGetSelectionOwner (display, selection_atom) != 0;
1485 unblock_input ();
1486 if (there_is_a_selection_owner)
1487 signal_error ("Selection owner couldn't convert",
1488 actual_type
1489 ? list2 (target_type,
1490 x_atom_to_symbol (dpyinfo, actual_type))
1491 : target_type);
1492 else
1493 signal_error ("No selection",
1494 x_atom_to_symbol (dpyinfo, selection_atom));
1497 if (actual_type == dpyinfo->Xatom_INCR)
1499 /* That wasn't really the data, just the beginning. */
1501 unsigned int min_size_bytes = * ((unsigned int *) data);
1502 block_input ();
1503 /* Use xfree, not XFree, because x_get_window_property
1504 calls xmalloc itself. */
1505 xfree (data);
1506 unblock_input ();
1507 receive_incremental_selection (dpyinfo, window, property, target_type,
1508 min_size_bytes, &data, &bytes,
1509 &actual_type, &actual_format,
1510 &actual_size);
1513 block_input ();
1514 TRACE1 (" Delete property %s", XGetAtomName (display, property));
1515 XDeleteProperty (display, window, property);
1516 XFlush (display);
1517 unblock_input ();
1519 /* It's been read. Now convert it to a lisp object in some semi-rational
1520 manner. */
1521 val = selection_data_to_lisp_data (dpyinfo, data, bytes,
1522 actual_type, actual_format);
1524 /* Use xfree, not XFree, because x_get_window_property
1525 calls xmalloc itself. */
1526 xfree (data);
1527 return val;
1530 /* These functions convert from the selection data read from the server into
1531 something that we can use from Lisp, and vice versa.
1533 Type: Format: Size: Lisp Type:
1534 ----- ------- ----- -----------
1535 * 8 * String
1536 ATOM 32 1 Symbol
1537 ATOM 32 > 1 Vector of Symbols
1538 * 16 1 Integer
1539 * 16 > 1 Vector of Integers
1540 * 32 1 if <=16 bits: Integer
1541 if > 16 bits: Cons of top16, bot16
1542 * 32 > 1 Vector of the above
1544 When converting a Lisp number to C, it is assumed to be of format 16 if
1545 it is an integer, and of format 32 if it is a cons of two integers.
1547 When converting a vector of numbers from Lisp to C, it is assumed to be
1548 of format 16 if every element in the vector is an integer, and is assumed
1549 to be of format 32 if any element is a cons of two integers.
1551 When converting an object to C, it may be of the form (SYMBOL . <data>)
1552 where SYMBOL is what we should claim that the type is. Format and
1553 representation are as above.
1555 Important: When format is 32, data should contain an array of int,
1556 not an array of long as the X library returns. This makes a difference
1557 when sizeof(long) != sizeof(int). */
1561 static Lisp_Object
1562 selection_data_to_lisp_data (struct x_display_info *dpyinfo,
1563 const unsigned char *data,
1564 ptrdiff_t size, Atom type, int format)
1566 if (type == dpyinfo->Xatom_NULL)
1567 return QNULL;
1569 /* Convert any 8-bit data to a string, for compactness. */
1570 else if (format == 8)
1572 Lisp_Object str, lispy_type;
1574 str = make_unibyte_string ((char *) data, size);
1575 /* Indicate that this string is from foreign selection by a text
1576 property `foreign-selection' so that the caller of
1577 x-get-selection-internal (usually x-get-selection) can know
1578 that the string must be decode. */
1579 if (type == dpyinfo->Xatom_COMPOUND_TEXT)
1580 lispy_type = QCOMPOUND_TEXT;
1581 else if (type == dpyinfo->Xatom_UTF8_STRING)
1582 lispy_type = QUTF8_STRING;
1583 else
1584 lispy_type = QSTRING;
1585 Fput_text_property (make_number (0), make_number (size),
1586 Qforeign_selection, lispy_type, str);
1587 return str;
1589 /* Convert a single atom to a Lisp_Symbol. Convert a set of atoms to
1590 a vector of symbols. */
1591 else if (type == XA_ATOM
1592 /* Treat ATOM_PAIR type similar to list of atoms. */
1593 || type == dpyinfo->Xatom_ATOM_PAIR)
1595 ptrdiff_t i;
1596 /* On a 64 bit machine sizeof(Atom) == sizeof(long) == 8.
1597 But the callers of these function has made sure the data for
1598 format == 32 is an array of int. Thus, use int instead
1599 of Atom. */
1600 int *idata = (int *) data;
1602 if (size == sizeof (int))
1603 return x_atom_to_symbol (dpyinfo, (Atom) idata[0]);
1604 else
1606 Lisp_Object v = make_uninit_vector (size / sizeof (int));
1608 for (i = 0; i < size / sizeof (int); i++)
1609 ASET (v, i, x_atom_to_symbol (dpyinfo, (Atom) idata[i]));
1610 return v;
1614 /* Convert a single 16-bit number or a small 32-bit number to a Lisp_Int.
1615 If the number is 32 bits and won't fit in a Lisp_Int,
1616 convert it to a cons of integers, 16 bits in each half.
1618 else if (format == 32 && size == sizeof (int))
1619 return INTEGER_TO_CONS (((int *) data) [0]);
1620 else if (format == 16 && size == sizeof (short))
1621 return make_number (((short *) data) [0]);
1623 /* Convert any other kind of data to a vector of numbers, represented
1624 as above (as an integer, or a cons of two 16 bit integers.)
1626 else if (format == 16)
1628 ptrdiff_t i;
1629 Lisp_Object v = make_uninit_vector (size / 2);
1631 for (i = 0; i < size / 2; i++)
1633 short j = ((short *) data) [i];
1634 ASET (v, i, make_number (j));
1636 return v;
1638 else
1640 ptrdiff_t i;
1641 Lisp_Object v = make_uninit_vector (size / X_LONG_SIZE);
1643 for (i = 0; i < size / X_LONG_SIZE; i++)
1645 int j = ((int *) data) [i];
1646 ASET (v, i, INTEGER_TO_CONS (j));
1648 return v;
1652 /* Convert OBJ to an X long value, and return it as unsigned long.
1653 OBJ should be an integer or a cons representing an integer.
1654 Treat values in the range X_LONG_MAX + 1 .. X_ULONG_MAX as X
1655 unsigned long values: in theory these values are supposed to be
1656 signed but in practice unsigned 32-bit data are communicated via X
1657 selections and we need to support that. */
1658 static unsigned long
1659 cons_to_x_long (Lisp_Object obj)
1661 if (X_ULONG_MAX <= INTMAX_MAX
1662 || XINT (INTEGERP (obj) ? obj : XCAR (obj)) < 0)
1663 return cons_to_signed (obj, X_LONG_MIN, min (X_ULONG_MAX, INTMAX_MAX));
1664 else
1665 return cons_to_unsigned (obj, X_ULONG_MAX);
1668 /* Use xfree, not XFree, to free the data obtained with this function. */
1670 static void
1671 lisp_data_to_selection_data (struct x_display_info *dpyinfo,
1672 Lisp_Object obj, struct selection_data *cs)
1674 Lisp_Object type = Qnil;
1676 eassert (cs != NULL);
1677 cs->nofree = false;
1679 if (CONSP (obj) && SYMBOLP (XCAR (obj)))
1681 type = XCAR (obj);
1682 obj = XCDR (obj);
1683 if (CONSP (obj) && NILP (XCDR (obj)))
1684 obj = XCAR (obj);
1687 if (EQ (obj, QNULL) || (EQ (type, QNULL)))
1688 { /* This is not the same as declining */
1689 cs->format = 32;
1690 cs->size = 0;
1691 cs->data = NULL;
1692 type = QNULL;
1694 else if (STRINGP (obj))
1696 if (SCHARS (obj) < SBYTES (obj))
1697 /* OBJ is a multibyte string containing a non-ASCII char. */
1698 signal_error ("Non-ASCII string must be encoded in advance", obj);
1699 if (NILP (type))
1700 type = QSTRING;
1701 cs->format = 8;
1702 cs->size = SBYTES (obj);
1703 cs->data = SDATA (obj);
1704 cs->nofree = true;
1706 else if (SYMBOLP (obj))
1708 void *data = xmalloc (sizeof (Atom) + 1);
1709 Atom *x_atom_ptr = data;
1710 cs->data = data;
1711 cs->format = 32;
1712 cs->size = 1;
1713 cs->data[sizeof (Atom)] = 0;
1714 *x_atom_ptr = symbol_to_x_atom (dpyinfo, obj);
1715 if (NILP (type)) type = QATOM;
1717 else if (RANGED_INTEGERP (X_SHRT_MIN, obj, X_SHRT_MAX))
1719 void *data = xmalloc (sizeof (short) + 1);
1720 short *short_ptr = data;
1721 cs->data = data;
1722 cs->format = 16;
1723 cs->size = 1;
1724 cs->data[sizeof (short)] = 0;
1725 *short_ptr = XINT (obj);
1726 if (NILP (type)) type = QINTEGER;
1728 else if (INTEGERP (obj)
1729 || (CONSP (obj) && INTEGERP (XCAR (obj))
1730 && (INTEGERP (XCDR (obj))
1731 || (CONSP (XCDR (obj))
1732 && INTEGERP (XCAR (XCDR (obj)))))))
1734 void *data = xmalloc (sizeof (unsigned long) + 1);
1735 unsigned long *x_long_ptr = data;
1736 cs->data = data;
1737 cs->format = 32;
1738 cs->size = 1;
1739 cs->data[sizeof (unsigned long)] = 0;
1740 *x_long_ptr = cons_to_x_long (obj);
1741 if (NILP (type)) type = QINTEGER;
1743 else if (VECTORP (obj))
1745 /* Lisp_Vectors may represent a set of ATOMs;
1746 a set of 16 or 32 bit INTEGERs;
1747 or a set of ATOM_PAIRs (represented as [[A1 A2] [A3 A4] ...]
1749 ptrdiff_t i;
1750 ptrdiff_t size = ASIZE (obj);
1752 if (SYMBOLP (AREF (obj, 0)))
1753 /* This vector is an ATOM set */
1755 void *data;
1756 Atom *x_atoms;
1757 if (NILP (type)) type = QATOM;
1758 for (i = 0; i < size; i++)
1759 if (!SYMBOLP (AREF (obj, i)))
1760 signal_error ("All elements of selection vector must have same type", obj);
1762 cs->data = data = xnmalloc (size, sizeof *x_atoms);
1763 x_atoms = data;
1764 cs->format = 32;
1765 cs->size = size;
1766 for (i = 0; i < size; i++)
1767 x_atoms[i] = symbol_to_x_atom (dpyinfo, AREF (obj, i));
1769 else
1770 /* This vector is an INTEGER set, or something like it */
1772 int format = 16;
1773 int data_size = sizeof (short);
1774 void *data;
1775 unsigned long *x_atoms;
1776 short *shorts;
1777 if (NILP (type)) type = QINTEGER;
1778 for (i = 0; i < size; i++)
1780 if (! RANGED_INTEGERP (X_SHRT_MIN, AREF (obj, i),
1781 X_SHRT_MAX))
1783 /* Use sizeof (long) even if it is more than 32 bits.
1784 See comment in x_get_window_property and
1785 x_fill_property_data. */
1786 data_size = sizeof (long);
1787 format = 32;
1788 break;
1791 cs->data = data = xnmalloc (size, data_size);
1792 x_atoms = data;
1793 shorts = data;
1794 cs->format = format;
1795 cs->size = size;
1796 for (i = 0; i < size; i++)
1798 if (format == 32)
1799 x_atoms[i] = cons_to_x_long (AREF (obj, i));
1800 else
1801 shorts[i] = XINT (AREF (obj, i));
1805 else
1806 signal_error (/* Qselection_error */ "Unrecognized selection data", obj);
1808 cs->type = symbol_to_x_atom (dpyinfo, type);
1811 static Lisp_Object
1812 clean_local_selection_data (Lisp_Object obj)
1814 if (CONSP (obj)
1815 && INTEGERP (XCAR (obj))
1816 && CONSP (XCDR (obj))
1817 && INTEGERP (XCAR (XCDR (obj)))
1818 && NILP (XCDR (XCDR (obj))))
1819 obj = Fcons (XCAR (obj), XCDR (obj));
1821 if (CONSP (obj)
1822 && INTEGERP (XCAR (obj))
1823 && INTEGERP (XCDR (obj)))
1825 if (XINT (XCAR (obj)) == 0)
1826 return XCDR (obj);
1827 if (XINT (XCAR (obj)) == -1)
1828 return make_number (- XINT (XCDR (obj)));
1830 if (VECTORP (obj))
1832 ptrdiff_t i;
1833 ptrdiff_t size = ASIZE (obj);
1834 Lisp_Object copy;
1835 if (size == 1)
1836 return clean_local_selection_data (AREF (obj, 0));
1837 copy = make_uninit_vector (size);
1838 for (i = 0; i < size; i++)
1839 ASET (copy, i, clean_local_selection_data (AREF (obj, i)));
1840 return copy;
1842 return obj;
1845 /* Called from XTread_socket to handle SelectionNotify events.
1846 If it's the selection we are waiting for, stop waiting
1847 by setting the car of reading_selection_reply to non-nil.
1848 We store t there if the reply is successful, lambda if not. */
1850 void
1851 x_handle_selection_notify (const XSelectionEvent *event)
1853 if (event->requestor != reading_selection_window)
1854 return;
1855 if (event->selection != reading_which_selection)
1856 return;
1858 TRACE0 ("Received SelectionNotify");
1859 XSETCAR (reading_selection_reply,
1860 (event->property != 0 ? Qt : Qlambda));
1864 /* From a Lisp_Object, return a suitable frame for selection
1865 operations. OBJECT may be a frame, a terminal object, or nil
1866 (which stands for the selected frame--or, if that is not an X
1867 frame, the first X display on the list). If no suitable frame can
1868 be found, return NULL. */
1870 static struct frame *
1871 frame_for_x_selection (Lisp_Object object)
1873 Lisp_Object tail, frame;
1874 struct frame *f;
1876 if (NILP (object))
1878 f = XFRAME (selected_frame);
1879 if (FRAME_X_P (f) && FRAME_LIVE_P (f))
1880 return f;
1882 FOR_EACH_FRAME (tail, frame)
1884 f = XFRAME (frame);
1885 if (FRAME_X_P (f) && FRAME_LIVE_P (f))
1886 return f;
1889 else if (TERMINALP (object))
1891 struct terminal *t = decode_live_terminal (object);
1893 if (t->type == output_x_window)
1894 FOR_EACH_FRAME (tail, frame)
1896 f = XFRAME (frame);
1897 if (FRAME_LIVE_P (f) && f->terminal == t)
1898 return f;
1901 else if (FRAMEP (object))
1903 f = XFRAME (object);
1904 if (FRAME_X_P (f) && FRAME_LIVE_P (f))
1905 return f;
1908 return NULL;
1912 DEFUN ("x-own-selection-internal", Fx_own_selection_internal,
1913 Sx_own_selection_internal, 2, 3, 0,
1914 doc: /* Assert an X selection of type SELECTION and value VALUE.
1915 SELECTION is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.
1916 \(Those are literal upper-case symbol names, since that's what X expects.)
1917 VALUE is typically a string, or a cons of two markers, but may be
1918 anything that the functions on `selection-converter-alist' know about.
1920 FRAME should be a frame that should own the selection. If omitted or
1921 nil, it defaults to the selected frame.
1923 On Nextstep, FRAME is unused. */)
1924 (Lisp_Object selection, Lisp_Object value, Lisp_Object frame)
1926 if (NILP (frame)) frame = selected_frame;
1927 if (!FRAME_LIVE_P (XFRAME (frame)) || !FRAME_X_P (XFRAME (frame)))
1928 error ("X selection unavailable for this frame");
1930 CHECK_SYMBOL (selection);
1931 if (NILP (value)) error ("VALUE may not be nil");
1932 x_own_selection (selection, value, frame);
1933 return value;
1937 /* Request the selection value from the owner. If we are the owner,
1938 simply return our selection value. If we are not the owner, this
1939 will block until all of the data has arrived. */
1941 DEFUN ("x-get-selection-internal", Fx_get_selection_internal,
1942 Sx_get_selection_internal, 2, 4, 0,
1943 doc: /* Return text selected from some X window.
1944 SELECTION-SYMBOL is typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.
1945 \(Those are literal upper-case symbol names, since that's what X expects.)
1946 TARGET-TYPE is the type of data desired, typically `STRING'.
1948 TIME-STAMP is the time to use in the XConvertSelection call for foreign
1949 selections. If omitted, defaults to the time for the last event.
1951 TERMINAL should be a terminal object or a frame specifying the X
1952 server to query. If omitted or nil, that stands for the selected
1953 frame's display, or the first available X display.
1955 On Nextstep, TIME-STAMP and TERMINAL are unused. */)
1956 (Lisp_Object selection_symbol, Lisp_Object target_type,
1957 Lisp_Object time_stamp, Lisp_Object terminal)
1959 Lisp_Object val = Qnil;
1960 struct gcpro gcpro1, gcpro2;
1961 struct frame *f = frame_for_x_selection (terminal);
1962 GCPRO2 (target_type, val); /* we store newly consed data into these */
1964 CHECK_SYMBOL (selection_symbol);
1965 CHECK_SYMBOL (target_type);
1966 if (EQ (target_type, QMULTIPLE))
1967 error ("Retrieving MULTIPLE selections is currently unimplemented");
1968 if (!f)
1969 error ("X selection unavailable for this frame");
1971 val = x_get_local_selection (selection_symbol, target_type, true,
1972 FRAME_DISPLAY_INFO (f));
1974 if (NILP (val) && FRAME_LIVE_P (f))
1976 Lisp_Object frame;
1977 XSETFRAME (frame, f);
1978 RETURN_UNGCPRO (x_get_foreign_selection (selection_symbol, target_type,
1979 time_stamp, frame));
1982 if (CONSP (val) && SYMBOLP (XCAR (val)))
1984 val = XCDR (val);
1985 if (CONSP (val) && NILP (XCDR (val)))
1986 val = XCAR (val);
1988 RETURN_UNGCPRO (clean_local_selection_data (val));
1991 DEFUN ("x-disown-selection-internal", Fx_disown_selection_internal,
1992 Sx_disown_selection_internal, 1, 3, 0,
1993 doc: /* If we own the selection SELECTION, disown it.
1994 Disowning it means there is no such selection.
1996 Sets the last-change time for the selection to TIME-OBJECT (by default
1997 the time of the last event).
1999 TERMINAL should be a terminal object or a frame specifying the X
2000 server to query. If omitted or nil, that stands for the selected
2001 frame's display, or the first available X display.
2003 On Nextstep, the TIME-OBJECT and TERMINAL arguments are unused.
2004 On MS-DOS, all this does is return non-nil if we own the selection. */)
2005 (Lisp_Object selection, Lisp_Object time_object, Lisp_Object terminal)
2007 Time timestamp;
2008 Atom selection_atom;
2009 union {
2010 struct selection_input_event sie;
2011 struct input_event ie;
2012 } event;
2013 struct frame *f = frame_for_x_selection (terminal);
2014 struct x_display_info *dpyinfo;
2016 if (!f)
2017 return Qnil;
2019 dpyinfo = FRAME_DISPLAY_INFO (f);
2020 CHECK_SYMBOL (selection);
2022 /* Don't disown the selection when we're not the owner. */
2023 if (NILP (LOCAL_SELECTION (selection, dpyinfo)))
2024 return Qnil;
2026 selection_atom = symbol_to_x_atom (dpyinfo, selection);
2028 block_input ();
2029 if (NILP (time_object))
2030 timestamp = dpyinfo->last_user_time;
2031 else
2032 CONS_TO_INTEGER (time_object, Time, timestamp);
2033 XSetSelectionOwner (dpyinfo->display, selection_atom, None, timestamp);
2034 unblock_input ();
2036 /* It doesn't seem to be guaranteed that a SelectionClear event will be
2037 generated for a window which owns the selection when that window sets
2038 the selection owner to None. The NCD server does, the MIT Sun4 server
2039 doesn't. So we synthesize one; this means we might get two, but
2040 that's ok, because the second one won't have any effect. */
2041 SELECTION_EVENT_DPYINFO (&event.sie) = dpyinfo;
2042 SELECTION_EVENT_SELECTION (&event.sie) = selection_atom;
2043 SELECTION_EVENT_TIME (&event.sie) = timestamp;
2044 x_handle_selection_clear (&event.ie);
2046 return Qt;
2049 DEFUN ("x-selection-owner-p", Fx_selection_owner_p, Sx_selection_owner_p,
2050 0, 2, 0,
2051 doc: /* Whether the current Emacs process owns the given X Selection.
2052 The arg should be the name of the selection in question, typically one of
2053 the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.
2054 \(Those are literal upper-case symbol names, since that's what X expects.)
2055 For convenience, the symbol nil is the same as `PRIMARY',
2056 and t is the same as `SECONDARY'.
2058 TERMINAL should be a terminal object or a frame specifying the X
2059 server to query. If omitted or nil, that stands for the selected
2060 frame's display, or the first available X display.
2062 On Nextstep, TERMINAL is unused. */)
2063 (Lisp_Object selection, Lisp_Object terminal)
2065 struct frame *f = frame_for_x_selection (terminal);
2067 CHECK_SYMBOL (selection);
2068 if (EQ (selection, Qnil)) selection = QPRIMARY;
2069 if (EQ (selection, Qt)) selection = QSECONDARY;
2071 if (f && !NILP (LOCAL_SELECTION (selection, FRAME_DISPLAY_INFO (f))))
2072 return Qt;
2073 else
2074 return Qnil;
2077 DEFUN ("x-selection-exists-p", Fx_selection_exists_p, Sx_selection_exists_p,
2078 0, 2, 0,
2079 doc: /* Whether there is an owner for the given X selection.
2080 SELECTION should be the name of the selection in question, typically
2081 one of the symbols `PRIMARY', `SECONDARY', `CLIPBOARD', or
2082 `CLIPBOARD_MANAGER' (X expects these literal upper-case names.) The
2083 symbol nil is the same as `PRIMARY', and t is the same as `SECONDARY'.
2085 TERMINAL should be a terminal object or a frame specifying the X
2086 server to query. If omitted or nil, that stands for the selected
2087 frame's display, or the first available X display.
2089 On Nextstep, TERMINAL is unused. */)
2090 (Lisp_Object selection, Lisp_Object terminal)
2092 Window owner;
2093 Atom atom;
2094 struct frame *f = frame_for_x_selection (terminal);
2095 struct x_display_info *dpyinfo;
2097 CHECK_SYMBOL (selection);
2098 if (EQ (selection, Qnil)) selection = QPRIMARY;
2099 if (EQ (selection, Qt)) selection = QSECONDARY;
2101 if (!f)
2102 return Qnil;
2104 dpyinfo = FRAME_DISPLAY_INFO (f);
2106 if (!NILP (LOCAL_SELECTION (selection, dpyinfo)))
2107 return Qt;
2109 atom = symbol_to_x_atom (dpyinfo, selection);
2110 if (atom == 0) return Qnil;
2111 block_input ();
2112 owner = XGetSelectionOwner (dpyinfo->display, atom);
2113 unblock_input ();
2114 return (owner ? Qt : Qnil);
2118 /* Send clipboard manager a SAVE_TARGETS request with a UTF8_STRING
2119 property (http://www.freedesktop.org/wiki/ClipboardManager). */
2121 static Lisp_Object
2122 x_clipboard_manager_save (Lisp_Object frame)
2124 struct frame *f = XFRAME (frame);
2125 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
2126 Atom data = dpyinfo->Xatom_UTF8_STRING;
2128 XChangeProperty (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2129 dpyinfo->Xatom_EMACS_TMP,
2130 dpyinfo->Xatom_ATOM, 32, PropModeReplace,
2131 (unsigned char *) &data, 1);
2132 x_get_foreign_selection (QCLIPBOARD_MANAGER, QSAVE_TARGETS,
2133 Qnil, frame);
2134 return Qt;
2137 /* Error handler for x_clipboard_manager_save_frame. */
2139 static Lisp_Object
2140 x_clipboard_manager_error_1 (Lisp_Object err)
2142 AUTO_STRING (format, "X clipboard manager error: %s\n\
2143 If the problem persists, set `x-select-enable-clipboard-manager' to nil.");
2144 CALLN (Fmessage, format, CAR (CDR (err)));
2145 return Qnil;
2148 /* Error handler for x_clipboard_manager_save_all. */
2150 static Lisp_Object
2151 x_clipboard_manager_error_2 (Lisp_Object err)
2153 fprintf (stderr, "Error saving to X clipboard manager.\n\
2154 If the problem persists, set `x-select-enable-clipboard-manager' \
2155 to nil.\n");
2156 return Qnil;
2159 /* Called from delete_frame: save any clipboard owned by FRAME to the
2160 clipboard manager. Do nothing if FRAME does not own the clipboard,
2161 or if no clipboard manager is present. */
2163 void
2164 x_clipboard_manager_save_frame (Lisp_Object frame)
2166 struct frame *f;
2168 if (!NILP (Vx_select_enable_clipboard_manager)
2169 && FRAMEP (frame)
2170 && (f = XFRAME (frame), FRAME_X_P (f))
2171 && FRAME_LIVE_P (f))
2173 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
2174 Lisp_Object local_selection
2175 = LOCAL_SELECTION (QCLIPBOARD, dpyinfo);
2177 if (!NILP (local_selection)
2178 && EQ (frame, XCAR (XCDR (XCDR (XCDR (local_selection)))))
2179 && XGetSelectionOwner (dpyinfo->display,
2180 dpyinfo->Xatom_CLIPBOARD_MANAGER))
2181 internal_condition_case_1 (x_clipboard_manager_save, frame, Qt,
2182 x_clipboard_manager_error_1);
2186 /* Called from Fkill_emacs: save any clipboard owned by FRAME to the
2187 clipboard manager. Do nothing if FRAME does not own the clipboard,
2188 or if no clipboard manager is present. */
2190 void
2191 x_clipboard_manager_save_all (void)
2193 /* Loop through all X displays, saving owned clipboards. */
2194 struct x_display_info *dpyinfo;
2195 Lisp_Object local_selection, local_frame;
2197 if (NILP (Vx_select_enable_clipboard_manager))
2198 return;
2200 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
2202 local_selection = LOCAL_SELECTION (QCLIPBOARD, dpyinfo);
2203 if (NILP (local_selection)
2204 || !XGetSelectionOwner (dpyinfo->display,
2205 dpyinfo->Xatom_CLIPBOARD_MANAGER))
2206 continue;
2208 local_frame = XCAR (XCDR (XCDR (XCDR (local_selection))));
2209 if (FRAME_LIVE_P (XFRAME (local_frame)))
2211 AUTO_STRING (saving, "Saving clipboard to X clipboard manager...");
2212 Fmessage (1, &saving);
2213 internal_condition_case_1 (x_clipboard_manager_save, local_frame,
2214 Qt, x_clipboard_manager_error_2);
2220 /***********************************************************************
2221 Drag and drop support
2222 ***********************************************************************/
2223 /* Check that lisp values are of correct type for x_fill_property_data.
2224 That is, number, string or a cons with two numbers (low and high 16
2225 bit parts of a 32 bit number). Return the number of items in DATA,
2226 or -1 if there is an error. */
2229 x_check_property_data (Lisp_Object data)
2231 Lisp_Object iter;
2232 int size = 0;
2234 for (iter = data; CONSP (iter); iter = XCDR (iter))
2236 Lisp_Object o = XCAR (iter);
2238 if (! NUMBERP (o) && ! STRINGP (o) && ! CONSP (o))
2239 return -1;
2240 else if (CONSP (o) &&
2241 (! NUMBERP (XCAR (o)) || ! NUMBERP (XCDR (o))))
2242 return -1;
2243 if (size == INT_MAX)
2244 return -1;
2245 size++;
2248 return size;
2251 /* Convert lisp values to a C array. Values may be a number, a string
2252 which is taken as an X atom name and converted to the atom value, or
2253 a cons containing the two 16 bit parts of a 32 bit number.
2255 DPY is the display use to look up X atoms.
2256 DATA is a Lisp list of values to be converted.
2257 RET is the C array that contains the converted values. It is assumed
2258 it is big enough to hold all values.
2259 FORMAT is 8, 16 or 32 and denotes char/short/long for each C value to
2260 be stored in RET. Note that long is used for 32 even if long is more
2261 than 32 bits (see man pages for XChangeProperty, XGetWindowProperty and
2262 XClientMessageEvent). */
2264 void
2265 x_fill_property_data (Display *dpy, Lisp_Object data, void *ret, int format)
2267 unsigned long val;
2268 unsigned long *d32 = (unsigned long *) ret;
2269 unsigned short *d16 = (unsigned short *) ret;
2270 unsigned char *d08 = (unsigned char *) ret;
2271 Lisp_Object iter;
2273 for (iter = data; CONSP (iter); iter = XCDR (iter))
2275 Lisp_Object o = XCAR (iter);
2277 if (INTEGERP (o) || FLOATP (o) || CONSP (o))
2279 if (CONSP (o)
2280 && RANGED_INTEGERP (X_LONG_MIN >> 16, XCAR (o), X_LONG_MAX >> 16)
2281 && RANGED_INTEGERP (- (1 << 15), XCDR (o), -1))
2283 /* cons_to_x_long does not handle negative values for v2.
2284 For XDnd, v2 might be y of a window, and can be negative.
2285 The XDnd spec. is not explicit about negative values,
2286 but let's assume negative v2 is sent modulo 2**16. */
2287 unsigned long v1 = XINT (XCAR (o)) & 0xffff;
2288 unsigned long v2 = XINT (XCDR (o)) & 0xffff;
2289 val = (v1 << 16) | v2;
2291 else
2292 val = cons_to_x_long (o);
2294 else if (STRINGP (o))
2296 block_input ();
2297 val = XInternAtom (dpy, SSDATA (o), False);
2298 unblock_input ();
2300 else
2301 error ("Wrong type, must be string, number or cons");
2303 if (format == 8)
2305 if ((1 << 8) < val && val <= X_ULONG_MAX - (1 << 7))
2306 error ("Out of 'char' range");
2307 *d08++ = val;
2309 else if (format == 16)
2311 if ((1 << 16) < val && val <= X_ULONG_MAX - (1 << 15))
2312 error ("Out of 'short' range");
2313 *d16++ = val;
2315 else
2316 *d32++ = val;
2320 /* Convert an array of C values to a Lisp list.
2321 F is the frame to be used to look up X atoms if the TYPE is XA_ATOM.
2322 DATA is a C array of values to be converted.
2323 TYPE is the type of the data. Only XA_ATOM is special, it converts
2324 each number in DATA to its corresponding X atom as a symbol.
2325 FORMAT is 8, 16 or 32 and gives the size in bits for each C value to
2326 be stored in RET.
2327 SIZE is the number of elements in DATA.
2329 Important: When format is 32, data should contain an array of int,
2330 not an array of long as the X library returns. This makes a difference
2331 when sizeof(long) != sizeof(int).
2333 Also see comment for selection_data_to_lisp_data above. */
2335 Lisp_Object
2336 x_property_data_to_lisp (struct frame *f, const unsigned char *data,
2337 Atom type, int format, unsigned long size)
2339 ptrdiff_t format_bytes = format >> 3;
2340 if (PTRDIFF_MAX / format_bytes < size)
2341 memory_full (SIZE_MAX);
2342 return selection_data_to_lisp_data (FRAME_DISPLAY_INFO (f), data,
2343 size * format_bytes, type, format);
2346 DEFUN ("x-get-atom-name", Fx_get_atom_name,
2347 Sx_get_atom_name, 1, 2, 0,
2348 doc: /* Return the X atom name for VALUE as a string.
2349 VALUE may be a number or a cons where the car is the upper 16 bits and
2350 the cdr is the lower 16 bits of a 32 bit value.
2351 Use the display for FRAME or the current frame if FRAME is not given or nil.
2353 If the value is 0 or the atom is not known, return the empty string. */)
2354 (Lisp_Object value, Lisp_Object frame)
2356 struct frame *f = decode_window_system_frame (frame);
2357 char *name = 0;
2358 char empty[] = "";
2359 Lisp_Object ret = Qnil;
2360 Display *dpy = FRAME_X_DISPLAY (f);
2361 Atom atom;
2362 bool had_errors_p;
2364 CONS_TO_INTEGER (value, Atom, atom);
2366 block_input ();
2367 x_catch_errors (dpy);
2368 name = atom ? XGetAtomName (dpy, atom) : empty;
2369 had_errors_p = x_had_errors_p (dpy);
2370 x_uncatch_errors ();
2372 if (!had_errors_p)
2373 ret = build_string (name);
2375 if (atom && name) XFree (name);
2376 if (NILP (ret)) ret = empty_unibyte_string;
2378 unblock_input ();
2380 return ret;
2383 DEFUN ("x-register-dnd-atom", Fx_register_dnd_atom,
2384 Sx_register_dnd_atom, 1, 2, 0,
2385 doc: /* Request that dnd events are made for ClientMessages with ATOM.
2386 ATOM can be a symbol or a string. The ATOM is interned on the display that
2387 FRAME is on. If FRAME is nil, the selected frame is used. */)
2388 (Lisp_Object atom, Lisp_Object frame)
2390 Atom x_atom;
2391 struct frame *f = decode_window_system_frame (frame);
2392 ptrdiff_t i;
2393 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
2396 if (SYMBOLP (atom))
2397 x_atom = symbol_to_x_atom (dpyinfo, atom);
2398 else if (STRINGP (atom))
2400 block_input ();
2401 x_atom = XInternAtom (FRAME_X_DISPLAY (f), SSDATA (atom), False);
2402 unblock_input ();
2404 else
2405 error ("ATOM must be a symbol or a string");
2407 for (i = 0; i < dpyinfo->x_dnd_atoms_length; ++i)
2408 if (dpyinfo->x_dnd_atoms[i] == x_atom)
2409 return Qnil;
2411 if (dpyinfo->x_dnd_atoms_length == dpyinfo->x_dnd_atoms_size)
2412 dpyinfo->x_dnd_atoms =
2413 xpalloc (dpyinfo->x_dnd_atoms, &dpyinfo->x_dnd_atoms_size,
2414 1, -1, sizeof *dpyinfo->x_dnd_atoms);
2416 dpyinfo->x_dnd_atoms[dpyinfo->x_dnd_atoms_length++] = x_atom;
2417 return Qnil;
2420 /* Convert an XClientMessageEvent to a Lisp event of type DRAG_N_DROP_EVENT. */
2422 bool
2423 x_handle_dnd_message (struct frame *f, const XClientMessageEvent *event,
2424 struct x_display_info *dpyinfo, struct input_event *bufp)
2426 Lisp_Object vec;
2427 Lisp_Object frame;
2428 /* format 32 => size 5, format 16 => size 10, format 8 => size 20 */
2429 unsigned long size = 160/event->format;
2430 int x, y;
2431 unsigned char *data = (unsigned char *) event->data.b;
2432 int idata[5];
2433 ptrdiff_t i;
2435 for (i = 0; i < dpyinfo->x_dnd_atoms_length; ++i)
2436 if (dpyinfo->x_dnd_atoms[i] == event->message_type) break;
2438 if (i == dpyinfo->x_dnd_atoms_length) return false;
2440 XSETFRAME (frame, f);
2442 /* On a 64 bit machine, the event->data.l array members are 64 bits (long),
2443 but the x_property_data_to_lisp (or rather selection_data_to_lisp_data)
2444 function expects them to be of size int (i.e. 32). So to be able to
2445 use that function, put the data in the form it expects if format is 32. */
2447 if (BITS_PER_LONG > 32 && event->format == 32)
2449 for (i = 0; i < 5; ++i) /* There are only 5 longs in a ClientMessage. */
2450 idata[i] = event->data.l[i];
2451 data = (unsigned char *) idata;
2454 vec = Fmake_vector (make_number (4), Qnil);
2455 ASET (vec, 0, SYMBOL_NAME (x_atom_to_symbol (FRAME_DISPLAY_INFO (f),
2456 event->message_type)));
2457 ASET (vec, 1, frame);
2458 ASET (vec, 2, make_number (event->format));
2459 ASET (vec, 3, x_property_data_to_lisp (f,
2460 data,
2461 event->message_type,
2462 event->format,
2463 size));
2465 x_relative_mouse_position (f, &x, &y);
2466 bufp->kind = DRAG_N_DROP_EVENT;
2467 bufp->frame_or_window = frame;
2468 bufp->timestamp = CurrentTime;
2469 bufp->x = make_number (x);
2470 bufp->y = make_number (y);
2471 bufp->arg = vec;
2472 bufp->modifiers = 0;
2474 return true;
2477 DEFUN ("x-send-client-message", Fx_send_client_message,
2478 Sx_send_client_message, 6, 6, 0,
2479 doc: /* Send a client message of MESSAGE-TYPE to window DEST on DISPLAY.
2481 For DISPLAY, specify either a frame or a display name (a string).
2482 If DISPLAY is nil, that stands for the selected frame's display.
2483 DEST may be a number, in which case it is a Window id. The value 0 may
2484 be used to send to the root window of the DISPLAY.
2485 If DEST is a cons, it is converted to a 32 bit number
2486 with the high 16 bits from the car and the lower 16 bit from the cdr. That
2487 number is then used as a window id.
2488 If DEST is a frame the event is sent to the outer window of that frame.
2489 A value of nil means the currently selected frame.
2490 If DEST is the string "PointerWindow" the event is sent to the window that
2491 contains the pointer. If DEST is the string "InputFocus" the event is
2492 sent to the window that has the input focus.
2493 FROM is the frame sending the event. Use nil for currently selected frame.
2494 MESSAGE-TYPE is the name of an Atom as a string.
2495 FORMAT must be one of 8, 16 or 32 and determines the size of the values in
2496 bits. VALUES is a list of numbers, cons and/or strings containing the values
2497 to send. If a value is a string, it is converted to an Atom and the value of
2498 the Atom is sent. If a value is a cons, it is converted to a 32 bit number
2499 with the high 16 bits from the car and the lower 16 bit from the cdr.
2500 If more values than fits into the event is given, the excessive values
2501 are ignored. */)
2502 (Lisp_Object display, Lisp_Object dest, Lisp_Object from,
2503 Lisp_Object message_type, Lisp_Object format, Lisp_Object values)
2505 struct x_display_info *dpyinfo = check_x_display_info (display);
2507 CHECK_STRING (message_type);
2508 x_send_client_event (display, dest, from,
2509 XInternAtom (dpyinfo->display,
2510 SSDATA (message_type),
2511 False),
2512 format, values);
2514 return Qnil;
2517 void
2518 x_send_client_event (Lisp_Object display, Lisp_Object dest, Lisp_Object from,
2519 Atom message_type, Lisp_Object format, Lisp_Object values)
2521 struct x_display_info *dpyinfo = check_x_display_info (display);
2522 Window wdest;
2523 XEvent event;
2524 struct frame *f = decode_window_system_frame (from);
2525 bool to_root;
2527 CHECK_NUMBER (format);
2528 CHECK_CONS (values);
2530 if (x_check_property_data (values) == -1)
2531 error ("Bad data in VALUES, must be number, cons or string");
2533 if (XINT (format) != 8 && XINT (format) != 16 && XINT (format) != 32)
2534 error ("FORMAT must be one of 8, 16 or 32");
2536 event.xclient.type = ClientMessage;
2537 event.xclient.format = XINT (format);
2539 if (FRAMEP (dest) || NILP (dest))
2541 struct frame *fdest = decode_window_system_frame (dest);
2542 wdest = FRAME_OUTER_WINDOW (fdest);
2544 else if (STRINGP (dest))
2546 if (strcmp (SSDATA (dest), "PointerWindow") == 0)
2547 wdest = PointerWindow;
2548 else if (strcmp (SSDATA (dest), "InputFocus") == 0)
2549 wdest = InputFocus;
2550 else
2551 error ("DEST as a string must be one of PointerWindow or InputFocus");
2553 else if (INTEGERP (dest) || FLOATP (dest) || CONSP (dest))
2554 CONS_TO_INTEGER (dest, Window, wdest);
2555 else
2556 error ("DEST must be a frame, nil, string, number or cons");
2558 if (wdest == 0) wdest = dpyinfo->root_window;
2559 to_root = wdest == dpyinfo->root_window;
2561 block_input ();
2563 event.xclient.send_event = True;
2564 event.xclient.serial = 0;
2565 event.xclient.message_type = message_type;
2566 event.xclient.display = dpyinfo->display;
2568 /* Some clients (metacity for example) expects sending window to be here
2569 when sending to the root window. */
2570 event.xclient.window = to_root ? FRAME_OUTER_WINDOW (f) : wdest;
2572 memset (event.xclient.data.l, 0, sizeof (event.xclient.data.l));
2573 x_fill_property_data (dpyinfo->display, values, event.xclient.data.b,
2574 event.xclient.format);
2576 /* If event mask is 0 the event is sent to the client that created
2577 the destination window. But if we are sending to the root window,
2578 there is no such client. Then we set the event mask to 0xffffff. The
2579 event then goes to clients selecting for events on the root window. */
2580 x_catch_errors (dpyinfo->display);
2582 bool propagate = !to_root;
2583 long mask = to_root ? 0xffffff : 0;
2585 XSendEvent (dpyinfo->display, wdest, propagate, mask, &event);
2586 XFlush (dpyinfo->display);
2588 x_uncatch_errors ();
2589 unblock_input ();
2593 void
2594 syms_of_xselect (void)
2596 defsubr (&Sx_get_selection_internal);
2597 defsubr (&Sx_own_selection_internal);
2598 defsubr (&Sx_disown_selection_internal);
2599 defsubr (&Sx_selection_owner_p);
2600 defsubr (&Sx_selection_exists_p);
2602 defsubr (&Sx_get_atom_name);
2603 defsubr (&Sx_send_client_message);
2604 defsubr (&Sx_register_dnd_atom);
2606 reading_selection_reply = Fcons (Qnil, Qnil);
2607 staticpro (&reading_selection_reply);
2608 reading_selection_window = 0;
2609 reading_which_selection = 0;
2611 property_change_wait_list = 0;
2612 prop_location_identifier = 0;
2613 property_change_reply = Fcons (Qnil, Qnil);
2614 staticpro (&property_change_reply);
2616 converted_selections = NULL;
2617 conversion_fail_tag = None;
2619 /* FIXME: Duplicate definition in nsselect.c. */
2620 DEFVAR_LISP ("selection-converter-alist", Vselection_converter_alist,
2621 doc: /* An alist associating X Windows selection-types with functions.
2622 These functions are called to convert the selection, with three args:
2623 the name of the selection (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');
2624 a desired type to which the selection should be converted;
2625 and the local selection value (whatever was given to
2626 `x-own-selection-internal').
2628 The function should return the value to send to the X server
2629 \(typically a string). A return value of nil
2630 means that the conversion could not be done.
2631 A return value which is the symbol `NULL'
2632 means that a side-effect was executed,
2633 and there is no meaningful selection value. */);
2634 Vselection_converter_alist = Qnil;
2636 DEFVAR_LISP ("x-lost-selection-functions", Vx_lost_selection_functions,
2637 doc: /* A list of functions to be called when Emacs loses an X selection.
2638 \(This happens when some other X client makes its own selection
2639 or when a Lisp program explicitly clears the selection.)
2640 The functions are called with one argument, the selection type
2641 \(a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'). */);
2642 Vx_lost_selection_functions = Qnil;
2644 DEFVAR_LISP ("x-sent-selection-functions", Vx_sent_selection_functions,
2645 doc: /* A list of functions to be called when Emacs answers a selection request.
2646 The functions are called with three arguments:
2647 - the selection name (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');
2648 - the selection-type which Emacs was asked to convert the
2649 selection into before sending (for example, `STRING' or `LENGTH');
2650 - a flag indicating success or failure for responding to the request.
2651 We might have failed (and declined the request) for any number of reasons,
2652 including being asked for a selection that we no longer own, or being asked
2653 to convert into a type that we don't know about or that is inappropriate.
2654 This hook doesn't let you change the behavior of Emacs's selection replies,
2655 it merely informs you that they have happened. */);
2656 Vx_sent_selection_functions = Qnil;
2658 DEFVAR_LISP ("x-select-enable-clipboard-manager",
2659 Vx_select_enable_clipboard_manager,
2660 doc: /* Whether to enable X clipboard manager support.
2661 If non-nil, then whenever Emacs is killed or an Emacs frame is deleted
2662 while owning the X clipboard, the clipboard contents are saved to the
2663 clipboard manager if one is present. */);
2664 Vx_select_enable_clipboard_manager = Qt;
2666 DEFVAR_INT ("x-selection-timeout", x_selection_timeout,
2667 doc: /* Number of milliseconds to wait for a selection reply.
2668 If the selection owner doesn't reply in this time, we give up.
2669 A value of 0 means wait as long as necessary. This is initialized from the
2670 \"*selectionTimeout\" resource. */);
2671 x_selection_timeout = 0;
2673 /* QPRIMARY is defined in keyboard.c. */
2674 DEFSYM (QSECONDARY, "SECONDARY");
2675 DEFSYM (QSTRING, "STRING");
2676 DEFSYM (QINTEGER, "INTEGER");
2677 DEFSYM (QCLIPBOARD, "CLIPBOARD");
2678 DEFSYM (QTIMESTAMP, "TIMESTAMP");
2679 DEFSYM (QTEXT, "TEXT");
2681 /* These are types of selection. */
2682 DEFSYM (QCOMPOUND_TEXT, "COMPOUND_TEXT");
2683 DEFSYM (QUTF8_STRING, "UTF8_STRING");
2685 DEFSYM (QDELETE, "DELETE");
2686 DEFSYM (QMULTIPLE, "MULTIPLE");
2687 DEFSYM (QINCR, "INCR");
2688 DEFSYM (QEMACS_TMP, "_EMACS_TMP_");
2689 DEFSYM (QTARGETS, "TARGETS");
2690 DEFSYM (QATOM, "ATOM");
2691 DEFSYM (QATOM_PAIR, "ATOM_PAIR");
2692 DEFSYM (QCLIPBOARD_MANAGER, "CLIPBOARD_MANAGER");
2693 DEFSYM (QSAVE_TARGETS, "SAVE_TARGETS");
2694 DEFSYM (QNULL, "NULL");
2695 DEFSYM (Qcompound_text_with_extensions, "compound-text-with-extensions");
2696 DEFSYM (Qforeign_selection, "foreign-selection");
2697 DEFSYM (Qx_lost_selection_functions, "x-lost-selection-functions");
2698 DEFSYM (Qx_sent_selection_functions, "x-sent-selection-functions");