1 /* X Selection processing for Emacs.
2 Copyright (C) 1993-1997, 2000-2013 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 */
24 #include <stdio.h> /* termhooks.h needs this */
26 #ifdef HAVE_SYS_TYPES_H
27 #include <sys/types.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"
40 #include "termhooks.h"
43 #include <X11/Xproto.h>
46 struct selection_data
;
48 static void x_decline_selection_request (struct input_event
*);
49 static int x_convert_selection (struct input_event
*, Lisp_Object
, Lisp_Object
,
50 Atom
, int, struct x_display_info
*);
51 static int waiting_for_other_props_on_window (Display
*, Window
);
52 static struct prop_location
*expect_property_change (Display
*, Window
,
54 static void unexpect_property_change (struct prop_location
*);
55 static void wait_for_property_change (struct prop_location
*);
56 static Lisp_Object
x_get_window_property_as_lisp_data (Display
*,
59 static Lisp_Object
selection_data_to_lisp_data (Display
*,
60 const unsigned char *,
61 ptrdiff_t, Atom
, int);
62 static void lisp_data_to_selection_data (Display
*, Lisp_Object
,
63 unsigned char **, Atom
*,
64 ptrdiff_t *, int *, int *);
66 /* Printing traces to stderr. */
68 #ifdef TRACE_SELECTION
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)
78 #define TRACE0(fmt) (void) 0
79 #define TRACE1(fmt, a0) (void) 0
80 #define TRACE2(fmt, a0, a1) (void) 0
84 static Lisp_Object QSECONDARY
, QSTRING
, QINTEGER
, QCLIPBOARD
, QTIMESTAMP
,
85 QTEXT
, QDELETE
, QMULTIPLE
, QINCR
, QEMACS_TMP
, QTARGETS
, QATOM
, QNULL
,
86 QATOM_PAIR
, QCLIPBOARD_MANAGER
, QSAVE_TARGETS
;
88 static Lisp_Object QCOMPOUND_TEXT
; /* This is a type of selection. */
89 static Lisp_Object QUTF8_STRING
; /* This is a type of selection. */
91 static Lisp_Object Qcompound_text_with_extensions
;
93 static Lisp_Object Qforeign_selection
;
94 static Lisp_Object Qx_lost_selection_functions
, Qx_sent_selection_functions
;
96 /* Bytes needed to represent 'long' data. This is as per libX11; it
97 is not necessarily sizeof (long). */
100 /* Extreme 'short' and 'long' values suitable for libX11. */
101 #define X_SHRT_MAX 0x7fff
102 #define X_SHRT_MIN (-1 - X_SHRT_MAX)
103 #define X_LONG_MAX 0x7fffffff
104 #define X_LONG_MIN (-1 - X_LONG_MAX)
105 #define X_ULONG_MAX 0xffffffffUL
107 /* If this is a smaller number than the max-request-size of the display,
108 emacs will use INCR selection transfer when the selection is larger
109 than this. The max-request-size is usually around 64k, so if you want
110 emacs to use incremental selection transfers when the selection is
111 smaller than that, set this. I added this mostly for debugging the
112 incremental transfer stuff, but it might improve server performance.
114 This value cannot exceed INT_MAX / max (X_LONG_SIZE, sizeof (long))
115 because it is multiplied by X_LONG_SIZE and by sizeof (long) in
116 subscript calculations. Similarly for PTRDIFF_MAX - 1 or SIZE_MAX
117 - 1 in place of INT_MAX. */
118 #define MAX_SELECTION_QUANTUM \
119 ((int) min (0xFFFFFF, (min (INT_MAX, min (PTRDIFF_MAX, SIZE_MAX) - 1) \
120 / max (X_LONG_SIZE, sizeof (long)))))
123 selection_quantum (Display
*display
)
125 long mrs
= XMaxRequestSize (display
);
126 return (mrs
< MAX_SELECTION_QUANTUM
/ X_LONG_SIZE
+ 25
127 ? (mrs
- 25) * X_LONG_SIZE
128 : MAX_SELECTION_QUANTUM
);
131 #define LOCAL_SELECTION(selection_symbol,dpyinfo) \
132 assq_no_quit (selection_symbol, dpyinfo->terminal->Vselection_alist)
135 /* Define a queue to save up SELECTION_REQUEST_EVENT events for later
138 struct selection_event_queue
140 struct input_event event
;
141 struct selection_event_queue
*next
;
144 static struct selection_event_queue
*selection_queue
;
146 /* Nonzero means queue up SELECTION_REQUEST_EVENT events. */
148 static int x_queue_selection_requests
;
150 /* Queue up an SELECTION_REQUEST_EVENT *EVENT, to be processed later. */
153 x_queue_event (struct input_event
*event
)
155 struct selection_event_queue
*queue_tmp
;
157 /* Don't queue repeated requests.
158 This only happens for large requests which uses the incremental protocol. */
159 for (queue_tmp
= selection_queue
; queue_tmp
; queue_tmp
= queue_tmp
->next
)
161 if (!memcmp (&queue_tmp
->event
, event
, sizeof (*event
)))
163 TRACE1 ("DECLINE DUP SELECTION EVENT %p", queue_tmp
);
164 x_decline_selection_request (event
);
169 queue_tmp
= xmalloc (sizeof *queue_tmp
);
170 TRACE1 ("QUEUE SELECTION EVENT %p", queue_tmp
);
171 queue_tmp
->event
= *event
;
172 queue_tmp
->next
= selection_queue
;
173 selection_queue
= queue_tmp
;
176 /* Start queuing SELECTION_REQUEST_EVENT events. */
179 x_start_queuing_selection_requests (void)
181 if (x_queue_selection_requests
)
184 x_queue_selection_requests
++;
185 TRACE1 ("x_start_queuing_selection_requests %d", x_queue_selection_requests
);
188 /* Stop queuing SELECTION_REQUEST_EVENT events. */
191 x_stop_queuing_selection_requests (void)
193 TRACE1 ("x_stop_queuing_selection_requests %d", x_queue_selection_requests
);
194 --x_queue_selection_requests
;
196 /* Take all the queued events and put them back
197 so that they get processed afresh. */
199 while (selection_queue
!= NULL
)
201 struct selection_event_queue
*queue_tmp
= selection_queue
;
202 TRACE1 ("RESTORE SELECTION EVENT %p", queue_tmp
);
203 kbd_buffer_unget_event (&queue_tmp
->event
);
204 selection_queue
= queue_tmp
->next
;
210 /* This converts a Lisp symbol to a server Atom, avoiding a server
211 roundtrip whenever possible. */
214 symbol_to_x_atom (struct x_display_info
*dpyinfo
, Lisp_Object sym
)
217 if (NILP (sym
)) return 0;
218 if (EQ (sym
, QPRIMARY
)) return XA_PRIMARY
;
219 if (EQ (sym
, QSECONDARY
)) return XA_SECONDARY
;
220 if (EQ (sym
, QSTRING
)) return XA_STRING
;
221 if (EQ (sym
, QINTEGER
)) return XA_INTEGER
;
222 if (EQ (sym
, QATOM
)) return XA_ATOM
;
223 if (EQ (sym
, QCLIPBOARD
)) return dpyinfo
->Xatom_CLIPBOARD
;
224 if (EQ (sym
, QTIMESTAMP
)) return dpyinfo
->Xatom_TIMESTAMP
;
225 if (EQ (sym
, QTEXT
)) return dpyinfo
->Xatom_TEXT
;
226 if (EQ (sym
, QCOMPOUND_TEXT
)) return dpyinfo
->Xatom_COMPOUND_TEXT
;
227 if (EQ (sym
, QUTF8_STRING
)) return dpyinfo
->Xatom_UTF8_STRING
;
228 if (EQ (sym
, QDELETE
)) return dpyinfo
->Xatom_DELETE
;
229 if (EQ (sym
, QMULTIPLE
)) return dpyinfo
->Xatom_MULTIPLE
;
230 if (EQ (sym
, QINCR
)) return dpyinfo
->Xatom_INCR
;
231 if (EQ (sym
, QEMACS_TMP
)) return dpyinfo
->Xatom_EMACS_TMP
;
232 if (EQ (sym
, QTARGETS
)) return dpyinfo
->Xatom_TARGETS
;
233 if (EQ (sym
, QNULL
)) return dpyinfo
->Xatom_NULL
;
234 if (!SYMBOLP (sym
)) emacs_abort ();
236 TRACE1 (" XInternAtom %s", SSDATA (SYMBOL_NAME (sym
)));
238 val
= XInternAtom (dpyinfo
->display
, SSDATA (SYMBOL_NAME (sym
)), False
);
244 /* This converts a server Atom to a Lisp symbol, avoiding server roundtrips
245 and calls to intern whenever possible. */
248 x_atom_to_symbol (Display
*dpy
, Atom atom
)
250 struct x_display_info
*dpyinfo
;
271 dpyinfo
= x_display_info_for_display (dpy
);
274 if (atom
== dpyinfo
->Xatom_CLIPBOARD
)
276 if (atom
== dpyinfo
->Xatom_TIMESTAMP
)
278 if (atom
== dpyinfo
->Xatom_TEXT
)
280 if (atom
== dpyinfo
->Xatom_COMPOUND_TEXT
)
281 return QCOMPOUND_TEXT
;
282 if (atom
== dpyinfo
->Xatom_UTF8_STRING
)
284 if (atom
== dpyinfo
->Xatom_DELETE
)
286 if (atom
== dpyinfo
->Xatom_MULTIPLE
)
288 if (atom
== dpyinfo
->Xatom_INCR
)
290 if (atom
== dpyinfo
->Xatom_EMACS_TMP
)
292 if (atom
== dpyinfo
->Xatom_TARGETS
)
294 if (atom
== dpyinfo
->Xatom_NULL
)
298 str
= XGetAtomName (dpy
, atom
);
300 TRACE1 ("XGetAtomName --> %s", str
);
301 if (! str
) return Qnil
;
304 /* This was allocated by Xlib, so use XFree. */
310 /* Do protocol to assert ourself as a selection owner.
311 FRAME shall be the owner; it must be a valid X frame.
312 Update the Vselection_alist so that we can reply to later requests for
316 x_own_selection (Lisp_Object selection_name
, Lisp_Object selection_value
,
319 struct frame
*f
= XFRAME (frame
);
320 Window selecting_window
= FRAME_X_WINDOW (f
);
321 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
322 Display
*display
= dpyinfo
->display
;
323 Time timestamp
= last_event_timestamp
;
324 Atom selection_atom
= symbol_to_x_atom (dpyinfo
, selection_name
);
327 x_catch_errors (display
);
328 XSetSelectionOwner (display
, selection_atom
, selecting_window
, timestamp
);
329 x_check_errors (display
, "Can't set selection: %s");
333 /* Now update the local cache */
335 Lisp_Object selection_data
;
336 Lisp_Object prev_value
;
338 selection_data
= list4 (selection_name
, selection_value
,
339 INTEGER_TO_CONS (timestamp
), frame
);
340 prev_value
= LOCAL_SELECTION (selection_name
, dpyinfo
);
344 Fcons (selection_data
, dpyinfo
->terminal
->Vselection_alist
));
346 /* If we already owned the selection, remove the old selection
347 data. Don't use Fdelq as that may QUIT. */
348 if (!NILP (prev_value
))
350 /* We know it's not the CAR, so it's easy. */
351 Lisp_Object rest
= dpyinfo
->terminal
->Vselection_alist
;
352 for (; CONSP (rest
); rest
= XCDR (rest
))
353 if (EQ (prev_value
, Fcar (XCDR (rest
))))
355 XSETCDR (rest
, XCDR (XCDR (rest
)));
362 /* Given a selection-name and desired type, look up our local copy of
363 the selection value and convert it to the type.
364 Return nil, a string, a vector, a symbol, an integer, or a cons
365 that CONS_TO_INTEGER could plausibly handle.
366 This function is used both for remote requests (LOCAL_REQUEST is zero)
367 and for local x-get-selection-internal (LOCAL_REQUEST is nonzero).
369 This calls random Lisp code, and may signal or gc. */
372 x_get_local_selection (Lisp_Object selection_symbol
, Lisp_Object target_type
,
373 int local_request
, struct x_display_info
*dpyinfo
)
375 Lisp_Object local_value
;
376 Lisp_Object handler_fn
, value
, check
;
378 local_value
= LOCAL_SELECTION (selection_symbol
, dpyinfo
);
380 if (NILP (local_value
)) return Qnil
;
382 /* TIMESTAMP is a special case. */
383 if (EQ (target_type
, QTIMESTAMP
))
386 value
= XCAR (XCDR (XCDR (local_value
)));
390 /* Don't allow a quit within the converter.
391 When the user types C-g, he would be surprised
392 if by luck it came during a converter. */
393 ptrdiff_t count
= SPECPDL_INDEX ();
394 specbind (Qinhibit_quit
, Qt
);
396 CHECK_SYMBOL (target_type
);
397 handler_fn
= Fcdr (Fassq (target_type
, Vselection_converter_alist
));
398 /* gcpro is not needed here since nothing but HANDLER_FN
399 is live, and that ought to be a symbol. */
401 if (!NILP (handler_fn
))
402 value
= call3 (handler_fn
,
403 selection_symbol
, (local_request
? Qnil
: target_type
),
404 XCAR (XCDR (local_value
)));
407 unbind_to (count
, Qnil
);
410 /* Make sure this value is of a type that we could transmit
411 to another X client. */
415 && SYMBOLP (XCAR (value
)))
416 check
= XCDR (value
);
424 /* Check for a value that CONS_TO_INTEGER could handle. */
425 else if (CONSP (check
)
426 && INTEGERP (XCAR (check
))
427 && (INTEGERP (XCDR (check
))
429 (CONSP (XCDR (check
))
430 && INTEGERP (XCAR (XCDR (check
)))
431 && NILP (XCDR (XCDR (check
))))))
434 signal_error ("Invalid data returned by selection-conversion function",
435 list2 (handler_fn
, value
));
438 /* Subroutines of x_reply_selection_request. */
440 /* Send a SelectionNotify event to the requestor with property=None,
441 meaning we were unable to do what they wanted. */
444 x_decline_selection_request (struct input_event
*event
)
447 XSelectionEvent
*reply
= &(reply_base
.xselection
);
449 reply
->type
= SelectionNotify
;
450 reply
->display
= SELECTION_EVENT_DISPLAY (event
);
451 reply
->requestor
= SELECTION_EVENT_REQUESTOR (event
);
452 reply
->selection
= SELECTION_EVENT_SELECTION (event
);
453 reply
->time
= SELECTION_EVENT_TIME (event
);
454 reply
->target
= SELECTION_EVENT_TARGET (event
);
455 reply
->property
= None
;
457 /* The reason for the error may be that the receiver has
458 died in the meantime. Handle that case. */
460 x_catch_errors (reply
->display
);
461 XSendEvent (reply
->display
, reply
->requestor
, False
, 0L, &reply_base
);
462 XFlush (reply
->display
);
467 /* This is the selection request currently being processed.
468 It is set to zero when the request is fully processed. */
469 static struct input_event
*x_selection_current_request
;
471 /* Display info in x_selection_request. */
473 static struct x_display_info
*selection_request_dpyinfo
;
475 /* Raw selection data, for sending to a requestor window. */
477 struct selection_data
485 /* This can be set to non-NULL during x_reply_selection_request, if
486 the selection is waiting for an INCR transfer to complete. Don't
487 free these; that's done by unexpect_property_change. */
488 struct prop_location
*wait_object
;
489 struct selection_data
*next
;
492 /* Linked list of the above (in support of MULTIPLE targets). */
494 static struct selection_data
*converted_selections
;
496 /* "Data" to send a requestor for a failed MULTIPLE subtarget. */
497 static Atom conversion_fail_tag
;
499 /* Used as an unwind-protect clause so that, if a selection-converter signals
500 an error, we tell the requestor that we were unable to do what they wanted
501 before we throw to top-level or go into the debugger or whatever. */
504 x_selection_request_lisp_error (void)
506 struct selection_data
*cs
, *next
;
508 for (cs
= converted_selections
; cs
; cs
= next
)
511 if (cs
->nofree
== 0 && cs
->data
)
515 converted_selections
= NULL
;
517 if (x_selection_current_request
!= 0
518 && selection_request_dpyinfo
->display
)
519 x_decline_selection_request (x_selection_current_request
);
523 x_catch_errors_unwind (void)
531 /* This stuff is so that INCR selections are reentrant (that is, so we can
532 be servicing multiple INCR selection requests simultaneously.) I haven't
533 actually tested that yet. */
535 /* Keep a list of the property changes that are awaited. */
545 struct prop_location
*next
;
548 static int prop_location_identifier
;
550 static Lisp_Object property_change_reply
;
552 static struct prop_location
*property_change_reply_object
;
554 static struct prop_location
*property_change_wait_list
;
557 /* Send the reply to a selection request event EVENT. */
559 #ifdef TRACE_SELECTION
560 static int x_reply_selection_request_cnt
;
561 #endif /* TRACE_SELECTION */
564 x_reply_selection_request (struct input_event
*event
,
565 struct x_display_info
*dpyinfo
)
568 XSelectionEvent
*reply
= &(reply_base
.xselection
);
569 Display
*display
= SELECTION_EVENT_DISPLAY (event
);
570 Window window
= SELECTION_EVENT_REQUESTOR (event
);
571 ptrdiff_t bytes_remaining
;
572 int max_bytes
= selection_quantum (display
);
573 ptrdiff_t count
= SPECPDL_INDEX ();
574 struct selection_data
*cs
;
576 reply
->type
= SelectionNotify
;
577 reply
->display
= display
;
578 reply
->requestor
= window
;
579 reply
->selection
= SELECTION_EVENT_SELECTION (event
);
580 reply
->time
= SELECTION_EVENT_TIME (event
);
581 reply
->target
= SELECTION_EVENT_TARGET (event
);
582 reply
->property
= SELECTION_EVENT_PROPERTY (event
);
583 if (reply
->property
== None
)
584 reply
->property
= reply
->target
;
587 /* The protected block contains wait_for_property_change, which can
588 run random lisp code (process handlers) or signal. Therefore, we
589 put the x_uncatch_errors call in an unwind. */
590 record_unwind_protect_void (x_catch_errors_unwind
);
591 x_catch_errors (display
);
593 /* Loop over converted selections, storing them in the requested
594 properties. If data is large, only store the first N bytes
595 (section 2.7.2 of ICCCM). Note that we store the data for a
596 MULTIPLE request in the opposite order; the ICCM says only that
597 the conversion itself must be done in the same order. */
598 for (cs
= converted_selections
; cs
; cs
= cs
->next
)
600 if (cs
->property
== None
)
603 bytes_remaining
= cs
->size
;
604 bytes_remaining
*= cs
->format
>> 3;
605 if (bytes_remaining
<= max_bytes
)
607 /* Send all the data at once, with minimal handshaking. */
608 TRACE1 ("Sending all %"pD
"d bytes", bytes_remaining
);
609 XChangeProperty (display
, window
, cs
->property
,
610 cs
->type
, cs
->format
, PropModeReplace
,
615 /* Send an INCR tag to initiate incremental transfer. */
618 TRACE2 ("Start sending %"pD
"d bytes incrementally (%s)",
619 bytes_remaining
, XGetAtomName (display
, cs
->property
));
621 = expect_property_change (display
, window
, cs
->property
,
624 /* XChangeProperty expects an array of long even if long is
625 more than 32 bits. */
626 value
[0] = min (bytes_remaining
, X_LONG_MAX
);
627 XChangeProperty (display
, window
, cs
->property
,
628 dpyinfo
->Xatom_INCR
, 32, PropModeReplace
,
629 (unsigned char *) value
, 1);
630 XSelectInput (display
, window
, PropertyChangeMask
);
634 /* Now issue the SelectionNotify event. */
635 XSendEvent (display
, window
, False
, 0L, &reply_base
);
638 #ifdef TRACE_SELECTION
640 char *sel
= XGetAtomName (display
, reply
->selection
);
641 char *tgt
= XGetAtomName (display
, reply
->target
);
642 TRACE3 ("Sent SelectionNotify: %s, target %s (%d)",
643 sel
, tgt
, ++x_reply_selection_request_cnt
);
644 if (sel
) XFree (sel
);
645 if (tgt
) XFree (tgt
);
647 #endif /* TRACE_SELECTION */
649 /* Finish sending the rest of each of the INCR values. This should
650 be improved; there's a chance of deadlock if more than one
651 subtarget in a MULTIPLE selection requires an INCR transfer, and
652 the requestor and Emacs loop waiting on different transfers. */
653 for (cs
= converted_selections
; cs
; cs
= cs
->next
)
656 int format_bytes
= cs
->format
/ 8;
657 int had_errors
= x_had_errors_p (display
);
660 bytes_remaining
= cs
->size
;
661 bytes_remaining
*= format_bytes
;
663 /* Wait for the requestor to ack by deleting the property.
664 This can run Lisp code (process handlers) or signal. */
667 TRACE1 ("Waiting for ACK (deletion of %s)",
668 XGetAtomName (display
, cs
->property
));
669 wait_for_property_change (cs
->wait_object
);
672 unexpect_property_change (cs
->wait_object
);
674 while (bytes_remaining
)
676 int i
= ((bytes_remaining
< max_bytes
)
678 : max_bytes
) / format_bytes
;
682 = expect_property_change (display
, window
, cs
->property
,
685 TRACE1 ("Sending increment of %d elements", i
);
686 TRACE1 ("Set %s to increment data",
687 XGetAtomName (display
, cs
->property
));
689 /* Append the next chunk of data to the property. */
690 XChangeProperty (display
, window
, cs
->property
,
691 cs
->type
, cs
->format
, PropModeAppend
,
693 bytes_remaining
-= i
* format_bytes
;
694 cs
->data
+= i
* ((cs
->format
== 32) ? sizeof (long)
697 had_errors
= x_had_errors_p (display
);
700 if (had_errors
) break;
702 /* Wait for the requestor to ack this chunk by deleting
703 the property. This can run Lisp code or signal. */
704 TRACE1 ("Waiting for increment ACK (deletion of %s)",
705 XGetAtomName (display
, cs
->property
));
706 wait_for_property_change (cs
->wait_object
);
709 /* Now write a zero-length chunk to the property to tell the
710 requestor that we're done. */
712 if (! waiting_for_other_props_on_window (display
, window
))
713 XSelectInput (display
, window
, 0L);
715 TRACE1 ("Set %s to a 0-length chunk to indicate EOF",
716 XGetAtomName (display
, cs
->property
));
717 XChangeProperty (display
, window
, cs
->property
,
718 cs
->type
, cs
->format
, PropModeReplace
,
720 TRACE0 ("Done sending incrementally");
723 /* rms, 2003-01-03: I think I have fixed this bug. */
724 /* The window we're communicating with may have been deleted
725 in the meantime (that's a real situation from a bug report).
726 In this case, there may be events in the event queue still
727 referring to the deleted window, and we'll get a BadWindow error
728 in XTread_socket when processing the events. I don't have
729 an idea how to fix that. gerd, 2001-01-98. */
730 /* 2004-09-10: XSync and UNBLOCK so that possible protocol errors are
731 delivered before uncatch errors. */
732 XSync (display
, False
);
735 /* GTK queues events in addition to the queue in Xlib. So we
736 UNBLOCK to enter the event loop and get possible errors delivered,
737 and then BLOCK again because x_uncatch_errors requires it. */
739 /* This calls x_uncatch_errors. */
740 unbind_to (count
, Qnil
);
744 /* Handle a SelectionRequest event EVENT.
745 This is called from keyboard.c when such an event is found in the queue. */
748 x_handle_selection_request (struct input_event
*event
)
750 struct gcpro gcpro1
, gcpro2
;
751 Time local_selection_time
;
753 Display
*display
= SELECTION_EVENT_DISPLAY (event
);
754 struct x_display_info
*dpyinfo
= x_display_info_for_display (display
);
755 Atom selection
= SELECTION_EVENT_SELECTION (event
);
756 Lisp_Object selection_symbol
= x_atom_to_symbol (display
, selection
);
757 Atom target
= SELECTION_EVENT_TARGET (event
);
758 Lisp_Object target_symbol
= x_atom_to_symbol (display
, target
);
759 Atom property
= SELECTION_EVENT_PROPERTY (event
);
760 Lisp_Object local_selection_data
;
762 ptrdiff_t count
= SPECPDL_INDEX ();
763 GCPRO2 (local_selection_data
, target_symbol
);
765 if (!dpyinfo
) goto DONE
;
767 local_selection_data
= LOCAL_SELECTION (selection_symbol
, dpyinfo
);
769 /* Decline if we don't own any selections. */
770 if (NILP (local_selection_data
)) goto DONE
;
772 /* Decline requests issued prior to our acquiring the selection. */
773 CONS_TO_INTEGER (XCAR (XCDR (XCDR (local_selection_data
))),
774 Time
, local_selection_time
);
775 if (SELECTION_EVENT_TIME (event
) != CurrentTime
776 && local_selection_time
> SELECTION_EVENT_TIME (event
))
779 x_selection_current_request
= event
;
780 selection_request_dpyinfo
= dpyinfo
;
781 record_unwind_protect_void (x_selection_request_lisp_error
);
783 /* We might be able to handle nested x_handle_selection_requests,
784 but this is difficult to test, and seems unimportant. */
785 x_start_queuing_selection_requests ();
786 record_unwind_protect_void (x_stop_queuing_selection_requests
);
788 TRACE2 ("x_handle_selection_request: selection=%s, target=%s",
789 SDATA (SYMBOL_NAME (selection_symbol
)),
790 SDATA (SYMBOL_NAME (target_symbol
)));
792 if (EQ (target_symbol
, QMULTIPLE
))
794 /* For MULTIPLE targets, the event property names a list of atom
795 pairs; the first atom names a target and the second names a
796 non-None property. */
797 Window requestor
= SELECTION_EVENT_REQUESTOR (event
);
798 Lisp_Object multprop
;
799 ptrdiff_t j
, nselections
;
801 if (property
== None
) goto DONE
;
803 = x_get_window_property_as_lisp_data (display
, requestor
, property
,
804 QMULTIPLE
, selection
);
806 if (!VECTORP (multprop
) || ASIZE (multprop
) % 2)
809 nselections
= ASIZE (multprop
) / 2;
810 /* Perform conversions. This can signal. */
811 for (j
= 0; j
< nselections
; j
++)
813 Lisp_Object subtarget
= AREF (multprop
, 2*j
);
814 Atom subproperty
= symbol_to_x_atom (dpyinfo
,
815 AREF (multprop
, 2*j
+1));
817 if (subproperty
!= None
)
818 x_convert_selection (event
, selection_symbol
, subtarget
,
819 subproperty
, 1, dpyinfo
);
825 if (property
== None
)
826 property
= SELECTION_EVENT_TARGET (event
);
827 success
= x_convert_selection (event
, selection_symbol
,
828 target_symbol
, property
,
835 x_reply_selection_request (event
, dpyinfo
);
837 x_decline_selection_request (event
);
838 x_selection_current_request
= 0;
840 /* Run the `x-sent-selection-functions' abnormal hook. */
841 if (!NILP (Vx_sent_selection_functions
)
842 && !EQ (Vx_sent_selection_functions
, Qunbound
))
845 args
[0] = Qx_sent_selection_functions
;
846 args
[1] = selection_symbol
;
847 args
[2] = target_symbol
;
848 args
[3] = success
? Qt
: Qnil
;
849 Frun_hook_with_args (4, args
);
852 unbind_to (count
, Qnil
);
856 /* Perform the requested selection conversion, and write the data to
857 the converted_selections linked list, where it can be accessed by
858 x_reply_selection_request. If FOR_MULTIPLE is non-zero, write out
859 the data even if conversion fails, using conversion_fail_tag.
861 Return 0 if the selection failed to convert, 1 otherwise. */
864 x_convert_selection (struct input_event
*event
, Lisp_Object selection_symbol
,
865 Lisp_Object target_symbol
, Atom property
,
866 int for_multiple
, struct x_display_info
*dpyinfo
)
869 Lisp_Object lisp_selection
;
870 struct selection_data
*cs
;
871 GCPRO1 (lisp_selection
);
874 = x_get_local_selection (selection_symbol
, target_symbol
,
877 /* A nil return value means we can't perform the conversion. */
878 if (NILP (lisp_selection
)
879 || (CONSP (lisp_selection
) && NILP (XCDR (lisp_selection
))))
883 cs
= xmalloc (sizeof *cs
);
884 cs
->data
= (unsigned char *) &conversion_fail_tag
;
889 cs
->property
= property
;
890 cs
->wait_object
= NULL
;
891 cs
->next
= converted_selections
;
892 converted_selections
= cs
;
899 /* Otherwise, record the converted selection to binary. */
900 cs
= xmalloc (sizeof *cs
);
903 cs
->property
= property
;
904 cs
->wait_object
= NULL
;
905 cs
->next
= converted_selections
;
906 converted_selections
= cs
;
907 lisp_data_to_selection_data (SELECTION_EVENT_DISPLAY (event
),
909 &(cs
->data
), &(cs
->type
),
910 &(cs
->size
), &(cs
->format
),
916 /* Handle a SelectionClear event EVENT, which indicates that some
917 client cleared out our previously asserted selection.
918 This is called from keyboard.c when such an event is found in the queue. */
921 x_handle_selection_clear (struct input_event
*event
)
923 Display
*display
= SELECTION_EVENT_DISPLAY (event
);
924 Atom selection
= SELECTION_EVENT_SELECTION (event
);
925 Time changed_owner_time
= SELECTION_EVENT_TIME (event
);
927 Lisp_Object selection_symbol
, local_selection_data
;
928 Time local_selection_time
;
929 struct x_display_info
*dpyinfo
= x_display_info_for_display (display
);
930 Lisp_Object Vselection_alist
;
932 TRACE0 ("x_handle_selection_clear");
934 if (!dpyinfo
) return;
936 selection_symbol
= x_atom_to_symbol (display
, selection
);
937 local_selection_data
= LOCAL_SELECTION (selection_symbol
, dpyinfo
);
939 /* Well, we already believe that we don't own it, so that's just fine. */
940 if (NILP (local_selection_data
)) return;
942 CONS_TO_INTEGER (XCAR (XCDR (XCDR (local_selection_data
))),
943 Time
, local_selection_time
);
945 /* We have reasserted the selection since this SelectionClear was
946 generated, so we can disregard it. */
947 if (changed_owner_time
!= CurrentTime
948 && local_selection_time
> changed_owner_time
)
951 /* Otherwise, really clear. Don't use Fdelq as that may QUIT;. */
952 Vselection_alist
= dpyinfo
->terminal
->Vselection_alist
;
953 if (EQ (local_selection_data
, CAR (Vselection_alist
)))
954 Vselection_alist
= XCDR (Vselection_alist
);
958 for (rest
= Vselection_alist
; CONSP (rest
); rest
= XCDR (rest
))
959 if (EQ (local_selection_data
, CAR (XCDR (rest
))))
961 XSETCDR (rest
, XCDR (XCDR (rest
)));
965 tset_selection_alist (dpyinfo
->terminal
, Vselection_alist
);
967 /* Run the `x-lost-selection-functions' abnormal hook. */
970 args
[0] = Qx_lost_selection_functions
;
971 args
[1] = selection_symbol
;
972 Frun_hook_with_args (2, args
);
975 prepare_menu_bars ();
976 redisplay_preserve_echo_area (20);
980 x_handle_selection_event (struct input_event
*event
)
982 TRACE0 ("x_handle_selection_event");
983 if (event
->kind
!= SELECTION_REQUEST_EVENT
)
984 x_handle_selection_clear (event
);
985 else if (x_queue_selection_requests
)
986 x_queue_event (event
);
988 x_handle_selection_request (event
);
992 /* Clear all selections that were made from frame F.
993 We do this when about to delete a frame. */
996 x_clear_frame_selections (FRAME_PTR f
)
1000 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
1001 struct terminal
*t
= dpyinfo
->terminal
;
1003 XSETFRAME (frame
, f
);
1005 /* Delete elements from the beginning of Vselection_alist. */
1006 while (CONSP (t
->Vselection_alist
)
1007 && EQ (frame
, XCAR (XCDR (XCDR (XCDR (XCAR (t
->Vselection_alist
)))))))
1009 /* Run the `x-lost-selection-functions' abnormal hook. */
1010 Lisp_Object args
[2];
1011 args
[0] = Qx_lost_selection_functions
;
1012 args
[1] = Fcar (Fcar (t
->Vselection_alist
));
1013 Frun_hook_with_args (2, args
);
1015 tset_selection_alist (t
, XCDR (t
->Vselection_alist
));
1018 /* Delete elements after the beginning of Vselection_alist. */
1019 for (rest
= t
->Vselection_alist
; CONSP (rest
); rest
= XCDR (rest
))
1020 if (CONSP (XCDR (rest
))
1021 && EQ (frame
, XCAR (XCDR (XCDR (XCDR (XCAR (XCDR (rest
))))))))
1023 Lisp_Object args
[2];
1024 args
[0] = Qx_lost_selection_functions
;
1025 args
[1] = XCAR (XCAR (XCDR (rest
)));
1026 Frun_hook_with_args (2, args
);
1027 XSETCDR (rest
, XCDR (XCDR (rest
)));
1032 /* Nonzero if any properties for DISPLAY and WINDOW
1033 are on the list of what we are waiting for. */
1036 waiting_for_other_props_on_window (Display
*display
, Window window
)
1038 struct prop_location
*rest
= property_change_wait_list
;
1040 if (rest
->display
== display
&& rest
->window
== window
)
1047 /* Add an entry to the list of property changes we are waiting for.
1048 DISPLAY, WINDOW, PROPERTY, STATE describe what we will wait for.
1049 The return value is a number that uniquely identifies
1050 this awaited property change. */
1052 static struct prop_location
*
1053 expect_property_change (Display
*display
, Window window
,
1054 Atom property
, int state
)
1056 struct prop_location
*pl
= xmalloc (sizeof *pl
);
1057 pl
->identifier
= ++prop_location_identifier
;
1058 pl
->display
= display
;
1059 pl
->window
= window
;
1060 pl
->property
= property
;
1061 pl
->desired_state
= state
;
1062 pl
->next
= property_change_wait_list
;
1064 property_change_wait_list
= pl
;
1068 /* Delete an entry from the list of property changes we are waiting for.
1069 IDENTIFIER is the number that uniquely identifies the entry. */
1072 unexpect_property_change (struct prop_location
*location
)
1074 struct prop_location
*prev
= 0, *rest
= property_change_wait_list
;
1077 if (rest
== location
)
1080 prev
->next
= rest
->next
;
1082 property_change_wait_list
= rest
->next
;
1091 /* Remove the property change expectation element for IDENTIFIER. */
1094 wait_for_property_change_unwind (void *loc
)
1096 struct prop_location
*location
= loc
;
1098 unexpect_property_change (location
);
1099 if (location
== property_change_reply_object
)
1100 property_change_reply_object
= 0;
1103 /* Actually wait for a property change.
1104 IDENTIFIER should be the value that expect_property_change returned. */
1107 wait_for_property_change (struct prop_location
*location
)
1109 ptrdiff_t count
= SPECPDL_INDEX ();
1111 if (property_change_reply_object
)
1114 /* Make sure to do unexpect_property_change if we quit or err. */
1115 record_unwind_protect_ptr (wait_for_property_change_unwind
, location
);
1117 XSETCAR (property_change_reply
, Qnil
);
1118 property_change_reply_object
= location
;
1120 /* If the event we are waiting for arrives beyond here, it will set
1121 property_change_reply, because property_change_reply_object says so. */
1122 if (! location
->arrived
)
1124 EMACS_INT timeout
= max (0, x_selection_timeout
);
1125 EMACS_INT secs
= timeout
/ 1000;
1126 int nsecs
= (timeout
% 1000) * 1000000;
1127 TRACE2 (" Waiting %"pI
"d secs, %d nsecs", secs
, nsecs
);
1128 wait_reading_process_output (secs
, nsecs
, 0, 0,
1129 property_change_reply
, NULL
, 0);
1131 if (NILP (XCAR (property_change_reply
)))
1133 TRACE0 (" Timed out");
1134 error ("Timed out waiting for property-notify event");
1138 unbind_to (count
, Qnil
);
1141 /* Called from XTread_socket in response to a PropertyNotify event. */
1144 x_handle_property_notify (XPropertyEvent
*event
)
1146 struct prop_location
*rest
;
1148 for (rest
= property_change_wait_list
; rest
; rest
= rest
->next
)
1151 && rest
->property
== event
->atom
1152 && rest
->window
== event
->window
1153 && rest
->display
== event
->display
1154 && rest
->desired_state
== event
->state
)
1156 TRACE2 ("Expected %s of property %s",
1157 (event
->state
== PropertyDelete
? "deletion" : "change"),
1158 XGetAtomName (event
->display
, event
->atom
));
1162 /* If this is the one wait_for_property_change is waiting for,
1163 tell it to wake up. */
1164 if (rest
== property_change_reply_object
)
1165 XSETCAR (property_change_reply
, Qt
);
1174 /* Variables for communication with x_handle_selection_notify. */
1175 static Atom reading_which_selection
;
1176 static Lisp_Object reading_selection_reply
;
1177 static Window reading_selection_window
;
1179 /* Do protocol to read selection-data from the server.
1180 Converts this to Lisp data and returns it.
1181 FRAME is the frame whose X window shall request the selection. */
1184 x_get_foreign_selection (Lisp_Object selection_symbol
, Lisp_Object target_type
,
1185 Lisp_Object time_stamp
, Lisp_Object frame
)
1187 struct frame
*f
= XFRAME (frame
);
1188 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
1189 Display
*display
= dpyinfo
->display
;
1190 Window requestor_window
= FRAME_X_WINDOW (f
);
1191 Time requestor_time
= last_event_timestamp
;
1192 Atom target_property
= dpyinfo
->Xatom_EMACS_TMP
;
1193 Atom selection_atom
= symbol_to_x_atom (dpyinfo
, selection_symbol
);
1194 Atom type_atom
= (CONSP (target_type
)
1195 ? symbol_to_x_atom (dpyinfo
, XCAR (target_type
))
1196 : symbol_to_x_atom (dpyinfo
, target_type
));
1197 EMACS_INT timeout
, secs
;
1200 if (!FRAME_LIVE_P (f
))
1203 if (! NILP (time_stamp
))
1204 CONS_TO_INTEGER (time_stamp
, Time
, requestor_time
);
1207 TRACE2 ("Get selection %s, type %s",
1208 XGetAtomName (display
, type_atom
),
1209 XGetAtomName (display
, target_property
));
1211 x_catch_errors (display
);
1212 XConvertSelection (display
, selection_atom
, type_atom
, target_property
,
1213 requestor_window
, requestor_time
);
1214 x_check_errors (display
, "Can't convert selection: %s");
1215 x_uncatch_errors ();
1217 /* Prepare to block until the reply has been read. */
1218 reading_selection_window
= requestor_window
;
1219 reading_which_selection
= selection_atom
;
1220 XSETCAR (reading_selection_reply
, Qnil
);
1222 /* It should not be necessary to stop handling selection requests
1223 during this time. In fact, the SAVE_TARGETS mechanism requires
1224 us to handle a clipboard manager's requests before it returns
1227 x_start_queuing_selection_requests ();
1228 record_unwind_protect_void (x_stop_queuing_selection_requests
);
1233 /* This allows quits. Also, don't wait forever. */
1234 timeout
= max (0, x_selection_timeout
);
1235 secs
= timeout
/ 1000;
1236 nsecs
= (timeout
% 1000) * 1000000;
1237 TRACE1 (" Start waiting %"pI
"d secs for SelectionNotify", secs
);
1238 wait_reading_process_output (secs
, nsecs
, 0, 0,
1239 reading_selection_reply
, NULL
, 0);
1240 TRACE1 (" Got event = %d", !NILP (XCAR (reading_selection_reply
)));
1242 if (NILP (XCAR (reading_selection_reply
)))
1243 error ("Timed out waiting for reply from selection owner");
1244 if (EQ (XCAR (reading_selection_reply
), Qlambda
))
1247 /* Otherwise, the selection is waiting for us on the requested property. */
1249 x_get_window_property_as_lisp_data (display
, requestor_window
,
1250 target_property
, target_type
,
1254 /* Subroutines of x_get_window_property_as_lisp_data */
1256 /* Use xfree, not XFree, to free the data obtained with this function. */
1259 x_get_window_property (Display
*display
, Window window
, Atom property
,
1260 unsigned char **data_ret
, ptrdiff_t *bytes_ret
,
1261 Atom
*actual_type_ret
, int *actual_format_ret
,
1262 unsigned long *actual_size_ret
, int delete_p
)
1264 ptrdiff_t total_size
;
1265 unsigned long bytes_remaining
;
1266 ptrdiff_t offset
= 0;
1267 unsigned char *data
= 0;
1268 unsigned char *tmp_data
= 0;
1270 int buffer_size
= selection_quantum (display
);
1272 /* Wide enough to avoid overflow in expressions using it. */
1273 ptrdiff_t x_long_size
= X_LONG_SIZE
;
1275 /* Maximum value for TOTAL_SIZE. It cannot exceed PTRDIFF_MAX - 1
1276 and SIZE_MAX - 1, for an extra byte at the end. And it cannot
1277 exceed LONG_MAX * X_LONG_SIZE, for XGetWindowProperty. */
1278 ptrdiff_t total_size_max
=
1279 ((min (PTRDIFF_MAX
, SIZE_MAX
) - 1) / x_long_size
< LONG_MAX
1280 ? min (PTRDIFF_MAX
, SIZE_MAX
) - 1
1281 : LONG_MAX
* x_long_size
);
1285 /* First probe the thing to find out how big it is. */
1286 result
= XGetWindowProperty (display
, window
, property
,
1287 0L, 0L, False
, AnyPropertyType
,
1288 actual_type_ret
, actual_format_ret
,
1290 &bytes_remaining
, &tmp_data
);
1291 if (result
!= Success
)
1294 /* This was allocated by Xlib, so use XFree. */
1297 if (*actual_type_ret
== None
|| *actual_format_ret
== 0)
1300 if (total_size_max
< bytes_remaining
)
1302 total_size
= bytes_remaining
;
1303 data
= malloc (total_size
+ 1);
1305 goto memory_exhausted
;
1307 /* Now read, until we've gotten it all. */
1308 while (bytes_remaining
)
1310 ptrdiff_t bytes_gotten
;
1313 = XGetWindowProperty (display
, window
, property
,
1314 offset
/ X_LONG_SIZE
,
1315 buffer_size
/ X_LONG_SIZE
,
1318 actual_type_ret
, actual_format_ret
,
1319 actual_size_ret
, &bytes_remaining
, &tmp_data
);
1321 /* If this doesn't return Success at this point, it means that
1322 some clod deleted the selection while we were in the midst of
1323 reading it. Deal with that, I guess.... */
1324 if (result
!= Success
)
1327 bytes_per_item
= *actual_format_ret
>> 3;
1328 eassert (*actual_size_ret
<= buffer_size
/ bytes_per_item
);
1330 /* The man page for XGetWindowProperty says:
1331 "If the returned format is 32, the returned data is represented
1332 as a long array and should be cast to that type to obtain the
1334 This applies even if long is more than 32 bits, the X library
1335 converts from 32 bit elements received from the X server to long
1336 and passes the long array to us. Thus, for that case memcpy can not
1337 be used. We convert to a 32 bit type here, because so much code
1340 The bytes and offsets passed to XGetWindowProperty refers to the
1341 property and those are indeed in 32 bit quantities if format is 32. */
1343 bytes_gotten
= *actual_size_ret
;
1344 bytes_gotten
*= bytes_per_item
;
1346 TRACE2 ("Read %"pD
"d bytes from property %s",
1347 bytes_gotten
, XGetAtomName (display
, property
));
1349 if (total_size
- offset
< bytes_gotten
)
1351 unsigned char *data1
;
1352 ptrdiff_t remaining_lim
= total_size_max
- offset
- bytes_gotten
;
1353 if (remaining_lim
< 0 || remaining_lim
< bytes_remaining
)
1355 total_size
= offset
+ bytes_gotten
+ bytes_remaining
;
1356 data1
= realloc (data
, total_size
+ 1);
1358 goto memory_exhausted
;
1362 if (BITS_PER_LONG
> 32 && *actual_format_ret
== 32)
1365 int *idata
= (int *) (data
+ offset
);
1366 long *ldata
= (long *) tmp_data
;
1368 for (i
= 0; i
< *actual_size_ret
; ++i
)
1369 idata
[i
] = ldata
[i
];
1372 memcpy (data
+ offset
, tmp_data
, bytes_gotten
);
1374 offset
+= bytes_gotten
;
1376 /* This was allocated by Xlib, so use XFree. */
1381 data
[offset
] = '\0';
1386 *bytes_ret
= offset
;
1392 memory_full (SIZE_MAX
);
1397 memory_full (total_size
+ 1);
1400 /* Use xfree, not XFree, to free the data obtained with this function. */
1403 receive_incremental_selection (Display
*display
, Window window
, Atom property
,
1404 Lisp_Object target_type
,
1405 unsigned int min_size_bytes
,
1406 unsigned char **data_ret
,
1407 ptrdiff_t *size_bytes_ret
,
1408 Atom
*type_ret
, int *format_ret
,
1409 unsigned long *size_ret
)
1411 ptrdiff_t offset
= 0;
1412 struct prop_location
*wait_object
;
1413 if (min (PTRDIFF_MAX
, SIZE_MAX
) < min_size_bytes
)
1414 memory_full (SIZE_MAX
);
1415 *data_ret
= xmalloc (min_size_bytes
);
1416 *size_bytes_ret
= min_size_bytes
;
1418 TRACE1 ("Read %u bytes incrementally", min_size_bytes
);
1420 /* At this point, we have read an INCR property.
1421 Delete the property to ack it.
1422 (But first, prepare to receive the next event in this handshake.)
1424 Now, we must loop, waiting for the sending window to put a value on
1425 that property, then reading the property, then deleting it to ack.
1426 We are done when the sender places a property of length 0.
1429 XSelectInput (display
, window
, STANDARD_EVENT_SET
| PropertyChangeMask
);
1430 TRACE1 (" Delete property %s",
1431 SDATA (SYMBOL_NAME (x_atom_to_symbol (display
, property
))));
1432 XDeleteProperty (display
, window
, property
);
1433 TRACE1 (" Expect new value of property %s",
1434 SDATA (SYMBOL_NAME (x_atom_to_symbol (display
, property
))));
1435 wait_object
= expect_property_change (display
, window
, property
,
1442 unsigned char *tmp_data
;
1443 ptrdiff_t tmp_size_bytes
;
1445 TRACE0 (" Wait for property change");
1446 wait_for_property_change (wait_object
);
1448 /* expect it again immediately, because x_get_window_property may
1449 .. no it won't, I don't get it.
1450 .. Ok, I get it now, the Xt code that implements INCR is broken. */
1451 TRACE0 (" Get property value");
1452 x_get_window_property (display
, window
, property
,
1453 &tmp_data
, &tmp_size_bytes
,
1454 type_ret
, format_ret
, size_ret
, 1);
1456 TRACE1 (" Read increment of %"pD
"d bytes", tmp_size_bytes
);
1458 if (tmp_size_bytes
== 0) /* we're done */
1460 TRACE0 ("Done reading incrementally");
1462 if (! waiting_for_other_props_on_window (display
, window
))
1463 XSelectInput (display
, window
, STANDARD_EVENT_SET
);
1464 /* Use xfree, not XFree, because x_get_window_property
1465 calls xmalloc itself. */
1471 TRACE1 (" ACK by deleting property %s",
1472 XGetAtomName (display
, property
));
1473 XDeleteProperty (display
, window
, property
);
1474 wait_object
= expect_property_change (display
, window
, property
,
1479 if (*size_bytes_ret
- offset
< tmp_size_bytes
)
1480 *data_ret
= xpalloc (*data_ret
, size_bytes_ret
,
1481 tmp_size_bytes
- (*size_bytes_ret
- offset
),
1484 memcpy ((*data_ret
) + offset
, tmp_data
, tmp_size_bytes
);
1485 offset
+= tmp_size_bytes
;
1487 /* Use xfree, not XFree, because x_get_window_property
1488 calls xmalloc itself. */
1494 /* Fetch a value from property PROPERTY of X window WINDOW on display
1495 DISPLAY. TARGET_TYPE and SELECTION_ATOM are used in error message
1499 x_get_window_property_as_lisp_data (Display
*display
, Window window
,
1501 Lisp_Object target_type
,
1502 Atom selection_atom
)
1506 unsigned long actual_size
;
1507 unsigned char *data
= 0;
1508 ptrdiff_t bytes
= 0;
1510 struct x_display_info
*dpyinfo
= x_display_info_for_display (display
);
1512 TRACE0 ("Reading selection data");
1514 x_get_window_property (display
, window
, property
, &data
, &bytes
,
1515 &actual_type
, &actual_format
, &actual_size
, 1);
1518 int there_is_a_selection_owner
;
1520 there_is_a_selection_owner
1521 = XGetSelectionOwner (display
, selection_atom
);
1523 if (there_is_a_selection_owner
)
1524 signal_error ("Selection owner couldn't convert",
1526 ? list2 (target_type
,
1527 x_atom_to_symbol (display
, actual_type
))
1530 signal_error ("No selection",
1531 x_atom_to_symbol (display
, selection_atom
));
1534 if (actual_type
== dpyinfo
->Xatom_INCR
)
1536 /* That wasn't really the data, just the beginning. */
1538 unsigned int min_size_bytes
= * ((unsigned int *) data
);
1540 /* Use xfree, not XFree, because x_get_window_property
1541 calls xmalloc itself. */
1544 receive_incremental_selection (display
, window
, property
, target_type
,
1545 min_size_bytes
, &data
, &bytes
,
1546 &actual_type
, &actual_format
,
1551 TRACE1 (" Delete property %s", XGetAtomName (display
, property
));
1552 XDeleteProperty (display
, window
, property
);
1556 /* It's been read. Now convert it to a lisp object in some semi-rational
1558 val
= selection_data_to_lisp_data (display
, data
, bytes
,
1559 actual_type
, actual_format
);
1561 /* Use xfree, not XFree, because x_get_window_property
1562 calls xmalloc itself. */
1567 /* These functions convert from the selection data read from the server into
1568 something that we can use from Lisp, and vice versa.
1570 Type: Format: Size: Lisp Type:
1571 ----- ------- ----- -----------
1574 ATOM 32 > 1 Vector of Symbols
1576 * 16 > 1 Vector of Integers
1577 * 32 1 if <=16 bits: Integer
1578 if > 16 bits: Cons of top16, bot16
1579 * 32 > 1 Vector of the above
1581 When converting a Lisp number to C, it is assumed to be of format 16 if
1582 it is an integer, and of format 32 if it is a cons of two integers.
1584 When converting a vector of numbers from Lisp to C, it is assumed to be
1585 of format 16 if every element in the vector is an integer, and is assumed
1586 to be of format 32 if any element is a cons of two integers.
1588 When converting an object to C, it may be of the form (SYMBOL . <data>)
1589 where SYMBOL is what we should claim that the type is. Format and
1590 representation are as above.
1592 Important: When format is 32, data should contain an array of int,
1593 not an array of long as the X library returns. This makes a difference
1594 when sizeof(long) != sizeof(int). */
1599 selection_data_to_lisp_data (Display
*display
, const unsigned char *data
,
1600 ptrdiff_t size
, Atom type
, int format
)
1602 struct x_display_info
*dpyinfo
= x_display_info_for_display (display
);
1604 if (type
== dpyinfo
->Xatom_NULL
)
1607 /* Convert any 8-bit data to a string, for compactness. */
1608 else if (format
== 8)
1610 Lisp_Object str
, lispy_type
;
1612 str
= make_unibyte_string ((char *) data
, size
);
1613 /* Indicate that this string is from foreign selection by a text
1614 property `foreign-selection' so that the caller of
1615 x-get-selection-internal (usually x-get-selection) can know
1616 that the string must be decode. */
1617 if (type
== dpyinfo
->Xatom_COMPOUND_TEXT
)
1618 lispy_type
= QCOMPOUND_TEXT
;
1619 else if (type
== dpyinfo
->Xatom_UTF8_STRING
)
1620 lispy_type
= QUTF8_STRING
;
1622 lispy_type
= QSTRING
;
1623 Fput_text_property (make_number (0), make_number (size
),
1624 Qforeign_selection
, lispy_type
, str
);
1627 /* Convert a single atom to a Lisp_Symbol. Convert a set of atoms to
1628 a vector of symbols. */
1629 else if (type
== XA_ATOM
1630 /* Treat ATOM_PAIR type similar to list of atoms. */
1631 || type
== dpyinfo
->Xatom_ATOM_PAIR
)
1634 /* On a 64 bit machine sizeof(Atom) == sizeof(long) == 8.
1635 But the callers of these function has made sure the data for
1636 format == 32 is an array of int. Thus, use int instead
1638 int *idata
= (int *) data
;
1640 if (size
== sizeof (int))
1641 return x_atom_to_symbol (display
, (Atom
) idata
[0]);
1644 Lisp_Object v
= make_uninit_vector (size
/ sizeof (int));
1646 for (i
= 0; i
< size
/ sizeof (int); i
++)
1647 ASET (v
, i
, x_atom_to_symbol (display
, (Atom
) idata
[i
]));
1652 /* Convert a single 16-bit number or a small 32-bit number to a Lisp_Int.
1653 If the number is 32 bits and won't fit in a Lisp_Int,
1654 convert it to a cons of integers, 16 bits in each half.
1656 else if (format
== 32 && size
== sizeof (int))
1657 return INTEGER_TO_CONS (((int *) data
) [0]);
1658 else if (format
== 16 && size
== sizeof (short))
1659 return make_number (((short *) data
) [0]);
1661 /* Convert any other kind of data to a vector of numbers, represented
1662 as above (as an integer, or a cons of two 16 bit integers.)
1664 else if (format
== 16)
1667 Lisp_Object v
= make_uninit_vector (size
/ 2);
1669 for (i
= 0; i
< size
/ 2; i
++)
1671 short j
= ((short *) data
) [i
];
1672 ASET (v
, i
, make_number (j
));
1679 Lisp_Object v
= make_uninit_vector (size
/ X_LONG_SIZE
);
1681 for (i
= 0; i
< size
/ X_LONG_SIZE
; i
++)
1683 int j
= ((int *) data
) [i
];
1684 ASET (v
, i
, INTEGER_TO_CONS (j
));
1690 /* Convert OBJ to an X long value, and return it as unsigned long.
1691 OBJ should be an integer or a cons representing an integer.
1692 Treat values in the range X_LONG_MAX + 1 .. X_ULONG_MAX as X
1693 unsigned long values: in theory these values are supposed to be
1694 signed but in practice unsigned 32-bit data are communicated via X
1695 selections and we need to support that. */
1696 static unsigned long
1697 cons_to_x_long (Lisp_Object obj
)
1699 if (X_ULONG_MAX
<= INTMAX_MAX
1700 || XINT (INTEGERP (obj
) ? obj
: XCAR (obj
)) < 0)
1701 return cons_to_signed (obj
, X_LONG_MIN
, min (X_ULONG_MAX
, INTMAX_MAX
));
1703 return cons_to_unsigned (obj
, X_ULONG_MAX
);
1706 /* Use xfree, not XFree, to free the data obtained with this function. */
1709 lisp_data_to_selection_data (Display
*display
, Lisp_Object obj
,
1710 unsigned char **data_ret
, Atom
*type_ret
,
1711 ptrdiff_t *size_ret
,
1712 int *format_ret
, int *nofree_ret
)
1714 Lisp_Object type
= Qnil
;
1715 struct x_display_info
*dpyinfo
= x_display_info_for_display (display
);
1719 if (CONSP (obj
) && SYMBOLP (XCAR (obj
)))
1723 if (CONSP (obj
) && NILP (XCDR (obj
)))
1727 if (EQ (obj
, QNULL
) || (EQ (type
, QNULL
)))
1728 { /* This is not the same as declining */
1734 else if (STRINGP (obj
))
1736 if (SCHARS (obj
) < SBYTES (obj
))
1737 /* OBJ is a multibyte string containing a non-ASCII char. */
1738 signal_error ("Non-ASCII string must be encoded in advance", obj
);
1742 *size_ret
= SBYTES (obj
);
1743 *data_ret
= SDATA (obj
);
1746 else if (SYMBOLP (obj
))
1748 void *data
= xmalloc (sizeof (Atom
) + 1);
1749 Atom
*x_atom_ptr
= data
;
1753 (*data_ret
) [sizeof (Atom
)] = 0;
1754 *x_atom_ptr
= symbol_to_x_atom (dpyinfo
, obj
);
1755 if (NILP (type
)) type
= QATOM
;
1757 else if (RANGED_INTEGERP (X_SHRT_MIN
, obj
, X_SHRT_MAX
))
1759 void *data
= xmalloc (sizeof (short) + 1);
1760 short *short_ptr
= data
;
1764 (*data_ret
) [sizeof (short)] = 0;
1765 *short_ptr
= XINT (obj
);
1766 if (NILP (type
)) type
= QINTEGER
;
1768 else if (INTEGERP (obj
)
1769 || (CONSP (obj
) && INTEGERP (XCAR (obj
))
1770 && (INTEGERP (XCDR (obj
))
1771 || (CONSP (XCDR (obj
))
1772 && INTEGERP (XCAR (XCDR (obj
)))))))
1774 void *data
= xmalloc (sizeof (unsigned long) + 1);
1775 unsigned long *x_long_ptr
= data
;
1779 (*data_ret
) [sizeof (unsigned long)] = 0;
1780 *x_long_ptr
= cons_to_x_long (obj
);
1781 if (NILP (type
)) type
= QINTEGER
;
1783 else if (VECTORP (obj
))
1785 /* Lisp_Vectors may represent a set of ATOMs;
1786 a set of 16 or 32 bit INTEGERs;
1787 or a set of ATOM_PAIRs (represented as [[A1 A2] [A3 A4] ...]
1790 ptrdiff_t size
= ASIZE (obj
);
1792 if (SYMBOLP (AREF (obj
, 0)))
1793 /* This vector is an ATOM set */
1797 if (NILP (type
)) type
= QATOM
;
1798 for (i
= 0; i
< size
; i
++)
1799 if (!SYMBOLP (AREF (obj
, i
)))
1800 signal_error ("All elements of selection vector must have same type", obj
);
1802 *data_ret
= data
= xnmalloc (size
, sizeof *x_atoms
);
1806 for (i
= 0; i
< size
; i
++)
1807 x_atoms
[i
] = symbol_to_x_atom (dpyinfo
, AREF (obj
, i
));
1810 /* This vector is an INTEGER set, or something like it */
1813 int data_size
= sizeof (short);
1815 unsigned long *x_atoms
;
1817 if (NILP (type
)) type
= QINTEGER
;
1818 for (i
= 0; i
< size
; i
++)
1820 if (! RANGED_INTEGERP (X_SHRT_MIN
, AREF (obj
, i
),
1823 /* Use sizeof (long) even if it is more than 32 bits.
1824 See comment in x_get_window_property and
1825 x_fill_property_data. */
1826 data_size
= sizeof (long);
1831 *data_ret
= data
= xnmalloc (size
, data_size
);
1834 *format_ret
= format
;
1836 for (i
= 0; i
< size
; i
++)
1839 x_atoms
[i
] = cons_to_x_long (AREF (obj
, i
));
1841 shorts
[i
] = XINT (AREF (obj
, i
));
1846 signal_error (/* Qselection_error */ "Unrecognized selection data", obj
);
1848 *type_ret
= symbol_to_x_atom (dpyinfo
, type
);
1852 clean_local_selection_data (Lisp_Object obj
)
1855 && INTEGERP (XCAR (obj
))
1856 && CONSP (XCDR (obj
))
1857 && INTEGERP (XCAR (XCDR (obj
)))
1858 && NILP (XCDR (XCDR (obj
))))
1859 obj
= Fcons (XCAR (obj
), XCDR (obj
));
1862 && INTEGERP (XCAR (obj
))
1863 && INTEGERP (XCDR (obj
)))
1865 if (XINT (XCAR (obj
)) == 0)
1867 if (XINT (XCAR (obj
)) == -1)
1868 return make_number (- XINT (XCDR (obj
)));
1873 ptrdiff_t size
= ASIZE (obj
);
1876 return clean_local_selection_data (AREF (obj
, 0));
1877 copy
= make_uninit_vector (size
);
1878 for (i
= 0; i
< size
; i
++)
1879 ASET (copy
, i
, clean_local_selection_data (AREF (obj
, i
)));
1885 /* Called from XTread_socket to handle SelectionNotify events.
1886 If it's the selection we are waiting for, stop waiting
1887 by setting the car of reading_selection_reply to non-nil.
1888 We store t there if the reply is successful, lambda if not. */
1891 x_handle_selection_notify (XSelectionEvent
*event
)
1893 if (event
->requestor
!= reading_selection_window
)
1895 if (event
->selection
!= reading_which_selection
)
1898 TRACE0 ("Received SelectionNotify");
1899 XSETCAR (reading_selection_reply
,
1900 (event
->property
!= 0 ? Qt
: Qlambda
));
1904 /* From a Lisp_Object, return a suitable frame for selection
1905 operations. OBJECT may be a frame, a terminal object, or nil
1906 (which stands for the selected frame--or, if that is not an X
1907 frame, the first X display on the list). If no suitable frame can
1908 be found, return NULL. */
1910 static struct frame
*
1911 frame_for_x_selection (Lisp_Object object
)
1913 Lisp_Object tail
, frame
;
1918 f
= XFRAME (selected_frame
);
1919 if (FRAME_X_P (f
) && FRAME_LIVE_P (f
))
1922 FOR_EACH_FRAME (tail
, frame
)
1925 if (FRAME_X_P (f
) && FRAME_LIVE_P (f
))
1929 else if (TERMINALP (object
))
1931 struct terminal
*t
= get_terminal (object
, 1);
1933 if (t
->type
== output_x_window
)
1934 FOR_EACH_FRAME (tail
, frame
)
1937 if (FRAME_LIVE_P (f
) && f
->terminal
== t
)
1941 else if (FRAMEP (object
))
1943 f
= XFRAME (object
);
1944 if (FRAME_X_P (f
) && FRAME_LIVE_P (f
))
1952 DEFUN ("x-own-selection-internal", Fx_own_selection_internal
,
1953 Sx_own_selection_internal
, 2, 3, 0,
1954 doc
: /* Assert an X selection of type SELECTION and value VALUE.
1955 SELECTION is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.
1956 \(Those are literal upper-case symbol names, since that's what X expects.)
1957 VALUE is typically a string, or a cons of two markers, but may be
1958 anything that the functions on `selection-converter-alist' know about.
1960 FRAME should be a frame that should own the selection. If omitted or
1961 nil, it defaults to the selected frame.
1963 On Nextstep, FRAME is unused. */)
1964 (Lisp_Object selection
, Lisp_Object value
, Lisp_Object frame
)
1966 if (NILP (frame
)) frame
= selected_frame
;
1967 if (!FRAME_LIVE_P (XFRAME (frame
)) || !FRAME_X_P (XFRAME (frame
)))
1968 error ("X selection unavailable for this frame");
1970 CHECK_SYMBOL (selection
);
1971 if (NILP (value
)) error ("VALUE may not be nil");
1972 x_own_selection (selection
, value
, frame
);
1977 /* Request the selection value from the owner. If we are the owner,
1978 simply return our selection value. If we are not the owner, this
1979 will block until all of the data has arrived. */
1981 DEFUN ("x-get-selection-internal", Fx_get_selection_internal
,
1982 Sx_get_selection_internal
, 2, 4, 0,
1983 doc
: /* Return text selected from some X window.
1984 SELECTION-SYMBOL is typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.
1985 \(Those are literal upper-case symbol names, since that's what X expects.)
1986 TARGET-TYPE is the type of data desired, typically `STRING'.
1988 TIME-STAMP is the time to use in the XConvertSelection call for foreign
1989 selections. If omitted, defaults to the time for the last event.
1991 TERMINAL should be a terminal object or a frame specifying the X
1992 server to query. If omitted or nil, that stands for the selected
1993 frame's display, or the first available X display.
1995 On Nextstep, TIME-STAMP and TERMINAL are unused. */)
1996 (Lisp_Object selection_symbol
, Lisp_Object target_type
,
1997 Lisp_Object time_stamp
, Lisp_Object terminal
)
1999 Lisp_Object val
= Qnil
;
2000 struct gcpro gcpro1
, gcpro2
;
2001 struct frame
*f
= frame_for_x_selection (terminal
);
2002 GCPRO2 (target_type
, val
); /* we store newly consed data into these */
2004 CHECK_SYMBOL (selection_symbol
);
2005 CHECK_SYMBOL (target_type
);
2006 if (EQ (target_type
, QMULTIPLE
))
2007 error ("Retrieving MULTIPLE selections is currently unimplemented");
2009 error ("X selection unavailable for this frame");
2011 val
= x_get_local_selection (selection_symbol
, target_type
, 1,
2012 FRAME_X_DISPLAY_INFO (f
));
2014 if (NILP (val
) && FRAME_LIVE_P (f
))
2017 XSETFRAME (frame
, f
);
2018 RETURN_UNGCPRO (x_get_foreign_selection (selection_symbol
, target_type
,
2019 time_stamp
, frame
));
2022 if (CONSP (val
) && SYMBOLP (XCAR (val
)))
2025 if (CONSP (val
) && NILP (XCDR (val
)))
2028 RETURN_UNGCPRO (clean_local_selection_data (val
));
2031 DEFUN ("x-disown-selection-internal", Fx_disown_selection_internal
,
2032 Sx_disown_selection_internal
, 1, 3, 0,
2033 doc
: /* If we own the selection SELECTION, disown it.
2034 Disowning it means there is no such selection.
2036 Sets the last-change time for the selection to TIME-OBJECT (by default
2037 the time of the last event).
2039 TERMINAL should be a terminal object or a frame specifying the X
2040 server to query. If omitted or nil, that stands for the selected
2041 frame's display, or the first available X display.
2043 On Nextstep, the TIME-OBJECT and TERMINAL arguments are unused.
2044 On MS-DOS, all this does is return non-nil if we own the selection. */)
2045 (Lisp_Object selection
, Lisp_Object time_object
, Lisp_Object terminal
)
2048 Atom selection_atom
;
2050 struct selection_input_event sie
;
2051 struct input_event ie
;
2053 struct frame
*f
= frame_for_x_selection (terminal
);
2054 struct x_display_info
*dpyinfo
;
2059 dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
2060 CHECK_SYMBOL (selection
);
2062 /* Don't disown the selection when we're not the owner. */
2063 if (NILP (LOCAL_SELECTION (selection
, dpyinfo
)))
2066 selection_atom
= symbol_to_x_atom (dpyinfo
, selection
);
2069 if (NILP (time_object
))
2070 timestamp
= last_event_timestamp
;
2072 CONS_TO_INTEGER (time_object
, Time
, timestamp
);
2073 XSetSelectionOwner (dpyinfo
->display
, selection_atom
, None
, timestamp
);
2076 /* It doesn't seem to be guaranteed that a SelectionClear event will be
2077 generated for a window which owns the selection when that window sets
2078 the selection owner to None. The NCD server does, the MIT Sun4 server
2079 doesn't. So we synthesize one; this means we might get two, but
2080 that's ok, because the second one won't have any effect. */
2081 SELECTION_EVENT_DISPLAY (&event
.sie
) = dpyinfo
->display
;
2082 SELECTION_EVENT_SELECTION (&event
.sie
) = selection_atom
;
2083 SELECTION_EVENT_TIME (&event
.sie
) = timestamp
;
2084 x_handle_selection_clear (&event
.ie
);
2089 DEFUN ("x-selection-owner-p", Fx_selection_owner_p
, Sx_selection_owner_p
,
2091 doc
: /* Whether the current Emacs process owns the given X Selection.
2092 The arg should be the name of the selection in question, typically one of
2093 the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.
2094 \(Those are literal upper-case symbol names, since that's what X expects.)
2095 For convenience, the symbol nil is the same as `PRIMARY',
2096 and t is the same as `SECONDARY'.
2098 TERMINAL should be a terminal object or a frame specifying the X
2099 server to query. If omitted or nil, that stands for the selected
2100 frame's display, or the first available X display.
2102 On Nextstep, TERMINAL is unused. */)
2103 (Lisp_Object selection
, Lisp_Object terminal
)
2105 struct frame
*f
= frame_for_x_selection (terminal
);
2107 CHECK_SYMBOL (selection
);
2108 if (EQ (selection
, Qnil
)) selection
= QPRIMARY
;
2109 if (EQ (selection
, Qt
)) selection
= QSECONDARY
;
2111 if (f
&& !NILP (LOCAL_SELECTION (selection
, FRAME_X_DISPLAY_INFO (f
))))
2117 DEFUN ("x-selection-exists-p", Fx_selection_exists_p
, Sx_selection_exists_p
,
2119 doc
: /* Whether there is an owner for the given X selection.
2120 SELECTION should be the name of the selection in question, typically
2121 one of the symbols `PRIMARY', `SECONDARY', `CLIPBOARD', or
2122 `CLIPBOARD_MANAGER' (X expects these literal upper-case names.) The
2123 symbol nil is the same as `PRIMARY', and t is the same as `SECONDARY'.
2125 TERMINAL should be a terminal object or a frame specifying the X
2126 server to query. If omitted or nil, that stands for the selected
2127 frame's display, or the first available X display.
2129 On Nextstep, TERMINAL is unused. */)
2130 (Lisp_Object selection
, Lisp_Object terminal
)
2134 struct frame
*f
= frame_for_x_selection (terminal
);
2135 struct x_display_info
*dpyinfo
;
2137 CHECK_SYMBOL (selection
);
2138 if (EQ (selection
, Qnil
)) selection
= QPRIMARY
;
2139 if (EQ (selection
, Qt
)) selection
= QSECONDARY
;
2144 dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
2146 if (!NILP (LOCAL_SELECTION (selection
, dpyinfo
)))
2149 atom
= symbol_to_x_atom (dpyinfo
, selection
);
2150 if (atom
== 0) return Qnil
;
2152 owner
= XGetSelectionOwner (dpyinfo
->display
, atom
);
2154 return (owner
? Qt
: Qnil
);
2158 /* Send clipboard manager a SAVE_TARGETS request with a UTF8_STRING
2159 property (http://www.freedesktop.org/wiki/ClipboardManager). */
2162 x_clipboard_manager_save (Lisp_Object frame
)
2164 struct frame
*f
= XFRAME (frame
);
2165 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
2166 Atom data
= dpyinfo
->Xatom_UTF8_STRING
;
2168 XChangeProperty (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2169 dpyinfo
->Xatom_EMACS_TMP
,
2170 dpyinfo
->Xatom_ATOM
, 32, PropModeReplace
,
2171 (unsigned char *) &data
, 1);
2172 x_get_foreign_selection (QCLIPBOARD_MANAGER
, QSAVE_TARGETS
,
2177 /* Error handler for x_clipboard_manager_save_frame. */
2180 x_clipboard_manager_error_1 (Lisp_Object err
)
2182 Lisp_Object args
[2];
2183 args
[0] = build_string ("X clipboard manager error: %s\n\
2184 If the problem persists, set `x-select-enable-clipboard-manager' to nil.");
2185 args
[1] = CAR (CDR (err
));
2190 /* Error handler for x_clipboard_manager_save_all. */
2193 x_clipboard_manager_error_2 (Lisp_Object err
)
2195 fprintf (stderr
, "Error saving to X clipboard manager.\n\
2196 If the problem persists, set `x-select-enable-clipboard-manager' \
2201 /* Called from delete_frame: save any clipboard owned by FRAME to the
2202 clipboard manager. Do nothing if FRAME does not own the clipboard,
2203 or if no clipboard manager is present. */
2206 x_clipboard_manager_save_frame (Lisp_Object frame
)
2210 if (!NILP (Vx_select_enable_clipboard_manager
)
2212 && (f
= XFRAME (frame
), FRAME_X_P (f
))
2213 && FRAME_LIVE_P (f
))
2215 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
2216 Lisp_Object local_selection
2217 = LOCAL_SELECTION (QCLIPBOARD
, dpyinfo
);
2219 if (!NILP (local_selection
)
2220 && EQ (frame
, XCAR (XCDR (XCDR (XCDR (local_selection
)))))
2221 && XGetSelectionOwner (dpyinfo
->display
,
2222 dpyinfo
->Xatom_CLIPBOARD_MANAGER
))
2223 internal_condition_case_1 (x_clipboard_manager_save
, frame
, Qt
,
2224 x_clipboard_manager_error_1
);
2228 /* Called from Fkill_emacs: save any clipboard owned by FRAME to the
2229 clipboard manager. Do nothing if FRAME does not own the clipboard,
2230 or if no clipboard manager is present. */
2233 x_clipboard_manager_save_all (void)
2235 /* Loop through all X displays, saving owned clipboards. */
2236 struct x_display_info
*dpyinfo
;
2237 Lisp_Object local_selection
, local_frame
;
2239 if (NILP (Vx_select_enable_clipboard_manager
))
2242 for (dpyinfo
= x_display_list
; dpyinfo
; dpyinfo
= dpyinfo
->next
)
2244 local_selection
= LOCAL_SELECTION (QCLIPBOARD
, dpyinfo
);
2245 if (NILP (local_selection
)
2246 || !XGetSelectionOwner (dpyinfo
->display
,
2247 dpyinfo
->Xatom_CLIPBOARD_MANAGER
))
2250 local_frame
= XCAR (XCDR (XCDR (XCDR (local_selection
))));
2251 if (FRAME_LIVE_P (XFRAME (local_frame
)))
2253 Lisp_Object args
[1];
2254 args
[0] = build_string ("Saving clipboard to X clipboard manager...");
2257 internal_condition_case_1 (x_clipboard_manager_save
, local_frame
,
2258 Qt
, x_clipboard_manager_error_2
);
2264 /***********************************************************************
2265 Drag and drop support
2266 ***********************************************************************/
2267 /* Check that lisp values are of correct type for x_fill_property_data.
2268 That is, number, string or a cons with two numbers (low and high 16
2269 bit parts of a 32 bit number). Return the number of items in DATA,
2270 or -1 if there is an error. */
2273 x_check_property_data (Lisp_Object data
)
2278 for (iter
= data
; CONSP (iter
); iter
= XCDR (iter
))
2280 Lisp_Object o
= XCAR (iter
);
2282 if (! NUMBERP (o
) && ! STRINGP (o
) && ! CONSP (o
))
2284 else if (CONSP (o
) &&
2285 (! NUMBERP (XCAR (o
)) || ! NUMBERP (XCDR (o
))))
2287 if (size
== INT_MAX
)
2295 /* Convert lisp values to a C array. Values may be a number, a string
2296 which is taken as an X atom name and converted to the atom value, or
2297 a cons containing the two 16 bit parts of a 32 bit number.
2299 DPY is the display use to look up X atoms.
2300 DATA is a Lisp list of values to be converted.
2301 RET is the C array that contains the converted values. It is assumed
2302 it is big enough to hold all values.
2303 FORMAT is 8, 16 or 32 and denotes char/short/long for each C value to
2304 be stored in RET. Note that long is used for 32 even if long is more
2305 than 32 bits (see man pages for XChangeProperty, XGetWindowProperty and
2306 XClientMessageEvent). */
2309 x_fill_property_data (Display
*dpy
, Lisp_Object data
, void *ret
, int format
)
2312 long *d32
= (long *) ret
;
2313 short *d16
= (short *) ret
;
2314 char *d08
= (char *) ret
;
2317 for (iter
= data
; CONSP (iter
); iter
= XCDR (iter
))
2319 Lisp_Object o
= XCAR (iter
);
2321 if (INTEGERP (o
) || FLOATP (o
) || CONSP (o
))
2322 val
= cons_to_signed (o
, LONG_MIN
, LONG_MAX
);
2323 else if (STRINGP (o
))
2326 val
= (long) XInternAtom (dpy
, SSDATA (o
), False
);
2330 error ("Wrong type, must be string, number or cons");
2334 if (CHAR_MIN
<= val
&& val
<= CHAR_MAX
)
2337 error ("Out of 'char' range");
2339 else if (format
== 16)
2341 if (SHRT_MIN
<= val
&& val
<= SHRT_MAX
)
2344 error ("Out of 'short' range");
2351 /* Convert an array of C values to a Lisp list.
2352 F is the frame to be used to look up X atoms if the TYPE is XA_ATOM.
2353 DATA is a C array of values to be converted.
2354 TYPE is the type of the data. Only XA_ATOM is special, it converts
2355 each number in DATA to its corresponding X atom as a symbol.
2356 FORMAT is 8, 16 or 32 and gives the size in bits for each C value to
2358 SIZE is the number of elements in DATA.
2360 Important: When format is 32, data should contain an array of int,
2361 not an array of long as the X library returns. This makes a difference
2362 when sizeof(long) != sizeof(int).
2364 Also see comment for selection_data_to_lisp_data above. */
2367 x_property_data_to_lisp (struct frame
*f
, const unsigned char *data
,
2368 Atom type
, int format
, long unsigned int size
)
2370 ptrdiff_t format_bytes
= format
>> 3;
2371 if (PTRDIFF_MAX
/ format_bytes
< size
)
2372 memory_full (SIZE_MAX
);
2373 return selection_data_to_lisp_data (FRAME_X_DISPLAY (f
),
2374 data
, size
* format_bytes
, type
, format
);
2377 /* Get the mouse position in frame relative coordinates. */
2380 mouse_position_for_drop (FRAME_PTR f
, int *x
, int *y
)
2382 Window root
, dummy_window
;
2387 XQueryPointer (FRAME_X_DISPLAY (f
),
2388 DefaultRootWindow (FRAME_X_DISPLAY (f
)),
2390 /* The root window which contains the pointer. */
2393 /* Window pointer is on, not used */
2396 /* The position on that root window. */
2399 /* x/y in dummy_window coordinates, not used. */
2402 /* Modifier keys and pointer buttons, about which
2404 (unsigned int *) &dummy
);
2407 /* Absolute to relative. */
2408 *x
-= f
->left_pos
+ FRAME_OUTER_TO_INNER_DIFF_X (f
);
2409 *y
-= f
->top_pos
+ FRAME_OUTER_TO_INNER_DIFF_Y (f
);
2414 DEFUN ("x-get-atom-name", Fx_get_atom_name
,
2415 Sx_get_atom_name
, 1, 2, 0,
2416 doc
: /* Return the X atom name for VALUE as a string.
2417 VALUE may be a number or a cons where the car is the upper 16 bits and
2418 the cdr is the lower 16 bits of a 32 bit value.
2419 Use the display for FRAME or the current frame if FRAME is not given or nil.
2421 If the value is 0 or the atom is not known, return the empty string. */)
2422 (Lisp_Object value
, Lisp_Object frame
)
2424 struct frame
*f
= decode_window_system_frame (frame
);
2427 Lisp_Object ret
= Qnil
;
2428 Display
*dpy
= FRAME_X_DISPLAY (f
);
2432 CONS_TO_INTEGER (value
, Atom
, atom
);
2435 x_catch_errors (dpy
);
2436 name
= atom
? XGetAtomName (dpy
, atom
) : empty
;
2437 had_errors
= x_had_errors_p (dpy
);
2438 x_uncatch_errors ();
2441 ret
= build_string (name
);
2443 if (atom
&& name
) XFree (name
);
2444 if (NILP (ret
)) ret
= empty_unibyte_string
;
2451 DEFUN ("x-register-dnd-atom", Fx_register_dnd_atom
,
2452 Sx_register_dnd_atom
, 1, 2, 0,
2453 doc
: /* Request that dnd events are made for ClientMessages with ATOM.
2454 ATOM can be a symbol or a string. The ATOM is interned on the display that
2455 FRAME is on. If FRAME is nil, the selected frame is used. */)
2456 (Lisp_Object atom
, Lisp_Object frame
)
2459 struct frame
*f
= decode_window_system_frame (frame
);
2461 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
2465 x_atom
= symbol_to_x_atom (dpyinfo
, atom
);
2466 else if (STRINGP (atom
))
2469 x_atom
= XInternAtom (FRAME_X_DISPLAY (f
), SSDATA (atom
), False
);
2473 error ("ATOM must be a symbol or a string");
2475 for (i
= 0; i
< dpyinfo
->x_dnd_atoms_length
; ++i
)
2476 if (dpyinfo
->x_dnd_atoms
[i
] == x_atom
)
2479 if (dpyinfo
->x_dnd_atoms_length
== dpyinfo
->x_dnd_atoms_size
)
2480 dpyinfo
->x_dnd_atoms
=
2481 xpalloc (dpyinfo
->x_dnd_atoms
, &dpyinfo
->x_dnd_atoms_size
,
2482 1, -1, sizeof *dpyinfo
->x_dnd_atoms
);
2484 dpyinfo
->x_dnd_atoms
[dpyinfo
->x_dnd_atoms_length
++] = x_atom
;
2488 /* Convert an XClientMessageEvent to a Lisp event of type DRAG_N_DROP_EVENT. */
2491 x_handle_dnd_message (struct frame
*f
, XClientMessageEvent
*event
,
2492 struct x_display_info
*dpyinfo
, struct input_event
*bufp
)
2496 /* format 32 => size 5, format 16 => size 10, format 8 => size 20 */
2497 unsigned long size
= 160/event
->format
;
2499 unsigned char *data
= (unsigned char *) event
->data
.b
;
2503 for (i
= 0; i
< dpyinfo
->x_dnd_atoms_length
; ++i
)
2504 if (dpyinfo
->x_dnd_atoms
[i
] == event
->message_type
) break;
2506 if (i
== dpyinfo
->x_dnd_atoms_length
) return 0;
2508 XSETFRAME (frame
, f
);
2510 /* On a 64 bit machine, the event->data.l array members are 64 bits (long),
2511 but the x_property_data_to_lisp (or rather selection_data_to_lisp_data)
2512 function expects them to be of size int (i.e. 32). So to be able to
2513 use that function, put the data in the form it expects if format is 32. */
2515 if (BITS_PER_LONG
> 32 && event
->format
== 32)
2517 for (i
= 0; i
< 5; ++i
) /* There are only 5 longs in a ClientMessage. */
2518 idata
[i
] = event
->data
.l
[i
];
2519 data
= (unsigned char *) idata
;
2522 vec
= Fmake_vector (make_number (4), Qnil
);
2523 ASET (vec
, 0, SYMBOL_NAME (x_atom_to_symbol (FRAME_X_DISPLAY (f
),
2524 event
->message_type
)));
2525 ASET (vec
, 1, frame
);
2526 ASET (vec
, 2, make_number (event
->format
));
2527 ASET (vec
, 3, x_property_data_to_lisp (f
,
2529 event
->message_type
,
2533 mouse_position_for_drop (f
, &x
, &y
);
2534 bufp
->kind
= DRAG_N_DROP_EVENT
;
2535 bufp
->frame_or_window
= frame
;
2536 bufp
->timestamp
= CurrentTime
;
2537 bufp
->x
= make_number (x
);
2538 bufp
->y
= make_number (y
);
2540 bufp
->modifiers
= 0;
2545 DEFUN ("x-send-client-message", Fx_send_client_message
,
2546 Sx_send_client_message
, 6, 6, 0,
2547 doc
: /* Send a client message of MESSAGE-TYPE to window DEST on DISPLAY.
2549 For DISPLAY, specify either a frame or a display name (a string).
2550 If DISPLAY is nil, that stands for the selected frame's display.
2551 DEST may be a number, in which case it is a Window id. The value 0 may
2552 be used to send to the root window of the DISPLAY.
2553 If DEST is a cons, it is converted to a 32 bit number
2554 with the high 16 bits from the car and the lower 16 bit from the cdr. That
2555 number is then used as a window id.
2556 If DEST is a frame the event is sent to the outer window of that frame.
2557 A value of nil means the currently selected frame.
2558 If DEST is the string "PointerWindow" the event is sent to the window that
2559 contains the pointer. If DEST is the string "InputFocus" the event is
2560 sent to the window that has the input focus.
2561 FROM is the frame sending the event. Use nil for currently selected frame.
2562 MESSAGE-TYPE is the name of an Atom as a string.
2563 FORMAT must be one of 8, 16 or 32 and determines the size of the values in
2564 bits. VALUES is a list of numbers, cons and/or strings containing the values
2565 to send. If a value is a string, it is converted to an Atom and the value of
2566 the Atom is sent. If a value is a cons, it is converted to a 32 bit number
2567 with the high 16 bits from the car and the lower 16 bit from the cdr.
2568 If more values than fits into the event is given, the excessive values
2570 (Lisp_Object display
, Lisp_Object dest
, Lisp_Object from
,
2571 Lisp_Object message_type
, Lisp_Object format
, Lisp_Object values
)
2573 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
2575 CHECK_STRING (message_type
);
2576 x_send_client_event (display
, dest
, from
,
2577 XInternAtom (dpyinfo
->display
,
2578 SSDATA (message_type
),
2586 x_send_client_event (Lisp_Object display
, Lisp_Object dest
, Lisp_Object from
,
2587 Atom message_type
, Lisp_Object format
, Lisp_Object values
)
2589 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
2592 struct frame
*f
= decode_window_system_frame (from
);
2595 CHECK_NUMBER (format
);
2596 CHECK_CONS (values
);
2598 if (x_check_property_data (values
) == -1)
2599 error ("Bad data in VALUES, must be number, cons or string");
2601 if (XINT (format
) != 8 && XINT (format
) != 16 && XINT (format
) != 32)
2602 error ("FORMAT must be one of 8, 16 or 32");
2604 event
.xclient
.type
= ClientMessage
;
2605 event
.xclient
.format
= XINT (format
);
2607 if (FRAMEP (dest
) || NILP (dest
))
2609 struct frame
*fdest
= decode_window_system_frame (dest
);
2610 wdest
= FRAME_OUTER_WINDOW (fdest
);
2612 else if (STRINGP (dest
))
2614 if (strcmp (SSDATA (dest
), "PointerWindow") == 0)
2615 wdest
= PointerWindow
;
2616 else if (strcmp (SSDATA (dest
), "InputFocus") == 0)
2619 error ("DEST as a string must be one of PointerWindow or InputFocus");
2621 else if (INTEGERP (dest
) || FLOATP (dest
) || CONSP (dest
))
2622 CONS_TO_INTEGER (dest
, Window
, wdest
);
2624 error ("DEST must be a frame, nil, string, number or cons");
2626 if (wdest
== 0) wdest
= dpyinfo
->root_window
;
2627 to_root
= wdest
== dpyinfo
->root_window
;
2631 event
.xclient
.message_type
= message_type
;
2632 event
.xclient
.display
= dpyinfo
->display
;
2634 /* Some clients (metacity for example) expects sending window to be here
2635 when sending to the root window. */
2636 event
.xclient
.window
= to_root
? FRAME_OUTER_WINDOW (f
) : wdest
;
2639 memset (event
.xclient
.data
.b
, 0, sizeof (event
.xclient
.data
.b
));
2640 x_fill_property_data (dpyinfo
->display
, values
, event
.xclient
.data
.b
,
2641 event
.xclient
.format
);
2643 /* If event mask is 0 the event is sent to the client that created
2644 the destination window. But if we are sending to the root window,
2645 there is no such client. Then we set the event mask to 0xffff. The
2646 event then goes to clients selecting for events on the root window. */
2647 x_catch_errors (dpyinfo
->display
);
2649 int propagate
= to_root
? False
: True
;
2650 unsigned mask
= to_root
? 0xffff : 0;
2651 XSendEvent (dpyinfo
->display
, wdest
, propagate
, mask
, &event
);
2652 XFlush (dpyinfo
->display
);
2654 x_uncatch_errors ();
2660 syms_of_xselect (void)
2662 defsubr (&Sx_get_selection_internal
);
2663 defsubr (&Sx_own_selection_internal
);
2664 defsubr (&Sx_disown_selection_internal
);
2665 defsubr (&Sx_selection_owner_p
);
2666 defsubr (&Sx_selection_exists_p
);
2668 defsubr (&Sx_get_atom_name
);
2669 defsubr (&Sx_send_client_message
);
2670 defsubr (&Sx_register_dnd_atom
);
2672 reading_selection_reply
= Fcons (Qnil
, Qnil
);
2673 staticpro (&reading_selection_reply
);
2674 reading_selection_window
= 0;
2675 reading_which_selection
= 0;
2677 property_change_wait_list
= 0;
2678 prop_location_identifier
= 0;
2679 property_change_reply
= Fcons (Qnil
, Qnil
);
2680 staticpro (&property_change_reply
);
2682 converted_selections
= NULL
;
2683 conversion_fail_tag
= None
;
2685 DEFVAR_LISP ("selection-converter-alist", Vselection_converter_alist
,
2686 doc
: /* An alist associating X Windows selection-types with functions.
2687 These functions are called to convert the selection, with three args:
2688 the name of the selection (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');
2689 a desired type to which the selection should be converted;
2690 and the local selection value (whatever was given to `x-own-selection').
2692 The function should return the value to send to the X server
2693 \(typically a string). A return value of nil
2694 means that the conversion could not be done.
2695 A return value which is the symbol `NULL'
2696 means that a side-effect was executed,
2697 and there is no meaningful selection value. */);
2698 Vselection_converter_alist
= Qnil
;
2700 DEFVAR_LISP ("x-lost-selection-functions", Vx_lost_selection_functions
,
2701 doc
: /* A list of functions to be called when Emacs loses an X selection.
2702 \(This happens when some other X client makes its own selection
2703 or when a Lisp program explicitly clears the selection.)
2704 The functions are called with one argument, the selection type
2705 \(a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'). */);
2706 Vx_lost_selection_functions
= Qnil
;
2708 DEFVAR_LISP ("x-sent-selection-functions", Vx_sent_selection_functions
,
2709 doc
: /* A list of functions to be called when Emacs answers a selection request.
2710 The functions are called with three arguments:
2711 - the selection name (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');
2712 - the selection-type which Emacs was asked to convert the
2713 selection into before sending (for example, `STRING' or `LENGTH');
2714 - a flag indicating success or failure for responding to the request.
2715 We might have failed (and declined the request) for any number of reasons,
2716 including being asked for a selection that we no longer own, or being asked
2717 to convert into a type that we don't know about or that is inappropriate.
2718 This hook doesn't let you change the behavior of Emacs's selection replies,
2719 it merely informs you that they have happened. */);
2720 Vx_sent_selection_functions
= Qnil
;
2722 DEFVAR_LISP ("x-select-enable-clipboard-manager",
2723 Vx_select_enable_clipboard_manager
,
2724 doc
: /* Whether to enable X clipboard manager support.
2725 If non-nil, then whenever Emacs is killed or an Emacs frame is deleted
2726 while owning the X clipboard, the clipboard contents are saved to the
2727 clipboard manager if one is present. */);
2728 Vx_select_enable_clipboard_manager
= Qt
;
2730 DEFVAR_INT ("x-selection-timeout", x_selection_timeout
,
2731 doc
: /* Number of milliseconds to wait for a selection reply.
2732 If the selection owner doesn't reply in this time, we give up.
2733 A value of 0 means wait as long as necessary. This is initialized from the
2734 \"*selectionTimeout\" resource. */);
2735 x_selection_timeout
= 0;
2737 /* QPRIMARY is defined in keyboard.c. */
2738 DEFSYM (QSECONDARY
, "SECONDARY");
2739 DEFSYM (QSTRING
, "STRING");
2740 DEFSYM (QINTEGER
, "INTEGER");
2741 DEFSYM (QCLIPBOARD
, "CLIPBOARD");
2742 DEFSYM (QTIMESTAMP
, "TIMESTAMP");
2743 DEFSYM (QTEXT
, "TEXT");
2744 DEFSYM (QCOMPOUND_TEXT
, "COMPOUND_TEXT");
2745 DEFSYM (QUTF8_STRING
, "UTF8_STRING");
2746 DEFSYM (QDELETE
, "DELETE");
2747 DEFSYM (QMULTIPLE
, "MULTIPLE");
2748 DEFSYM (QINCR
, "INCR");
2749 DEFSYM (QEMACS_TMP
, "_EMACS_TMP_");
2750 DEFSYM (QTARGETS
, "TARGETS");
2751 DEFSYM (QATOM
, "ATOM");
2752 DEFSYM (QATOM_PAIR
, "ATOM_PAIR");
2753 DEFSYM (QCLIPBOARD_MANAGER
, "CLIPBOARD_MANAGER");
2754 DEFSYM (QSAVE_TARGETS
, "SAVE_TARGETS");
2755 DEFSYM (QNULL
, "NULL");
2756 DEFSYM (Qcompound_text_with_extensions
, "compound-text-with-extensions");
2757 DEFSYM (Qforeign_selection
, "foreign-selection");
2758 DEFSYM (Qx_lost_selection_functions
, "x-lost-selection-functions");
2759 DEFSYM (Qx_sent_selection_functions
, "x-sent-selection-functions");