Mercurial > hg > xemacs-beta
annotate src/select-x.c @ 5464:e79916901603 r21-5-30
XEmacs 21.5.30 "garlic" is released.
author | Stephen J. Turnbull <stephen@xemacs.org> |
---|---|
date | Wed, 27 Apr 2011 01:24:28 +0900 |
parents | 97eb4942aec8 |
children | 308d34e9f07d |
rev | line source |
---|---|
428 | 1 /* X Selection processing for XEmacs |
2 Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc. | |
5169
6c6d78781d59
cleanup of code related to xfree(), better KKCC backtrace capabilities, document XD_INLINE_LISP_OBJECT_BLOCK_PTR, fix some memory leaks, other code cleanup
Ben Wing <ben@xemacs.org>
parents:
4985
diff
changeset
|
3 Copyright (C) 2001, 2002, 2010 Ben Wing. |
428 | 4 |
5 This file is part of XEmacs. | |
6 | |
7 XEmacs is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
9 Free Software Foundation; either version 2, or (at your option) any | |
10 later version. | |
11 | |
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with XEmacs; see the file COPYING. If not, write to | |
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
20 Boston, MA 02111-1307, USA. */ | |
21 | |
22 /* Synched up with: Not synched with FSF. */ | |
23 | |
24 /* Rewritten by jwz */ | |
25 | |
26 #include <config.h> | |
27 #include "lisp.h" | |
28 | |
771 | 29 #include "charset.h" |
872 | 30 #include "device-impl.h" |
31 #include "frame-impl.h" | |
800 | 32 #include "opaque.h" |
33 #include "select.h" | |
34 | |
872 | 35 #include "console-x-impl.h" |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4985
diff
changeset
|
36 #include "fontcolor-x.h" |
428 | 37 |
38 #include "systime.h" | |
39 | |
40 int lisp_to_time (Lisp_Object, time_t *); | |
41 Lisp_Object time_to_lisp (time_t); | |
42 | |
43 #ifdef LWLIB_USES_MOTIF | |
44 # define MOTIF_CLIPBOARDS | |
45 #endif | |
46 | |
47 #ifdef MOTIF_CLIPBOARDS | |
1315 | 48 # include "xmotif.h" |
49 /* Kludge around shadowing warnings */ | |
50 # define index index_ | |
428 | 51 # include <Xm/CutPaste.h> |
1315 | 52 # undef index |
428 | 53 static void hack_motif_clipboard_selection (Atom selection_atom, |
54 Lisp_Object selection_value, | |
55 Time thyme, Display *display, | |
456 | 56 Window selecting_window, |
57 int owned_p); | |
428 | 58 #endif |
59 | |
60 #define CUT_BUFFER_SUPPORT | |
61 | |
62 #ifdef CUT_BUFFER_SUPPORT | |
63 Lisp_Object QCUT_BUFFER0, QCUT_BUFFER1, QCUT_BUFFER2, QCUT_BUFFER3, | |
64 QCUT_BUFFER4, QCUT_BUFFER5, QCUT_BUFFER6, QCUT_BUFFER7; | |
65 #endif | |
66 | |
67 Lisp_Object Vx_sent_selection_hooks; | |
68 | |
69 /* If this is a smaller number than the max-request-size of the display, | |
70 emacs will use INCR selection transfer when the selection is larger | |
71 than this. The max-request-size is usually around 64k, so if you want | |
72 emacs to use incremental selection transfers when the selection is | |
73 smaller than that, set this. I added this mostly for debugging the | |
74 incremental transfer stuff, but it might improve server performance. | |
75 */ | |
76 #define MAX_SELECTION_QUANTUM 0xFFFFFF | |
77 | |
78 #define SELECTION_QUANTUM(dpy) ((XMaxRequestSize (dpy) << 2) - 100) | |
79 | |
80 /* If the selection owner takes too long to reply to a selection request, | |
81 we give up on it. This is in seconds (0 = no timeout). | |
82 */ | |
458 | 83 Fixnum x_selection_timeout; |
428 | 84 |
456 | 85 /* Enable motif selection optimizations. */ |
86 int x_selection_strict_motif_ownership; | |
87 | |
428 | 88 |
89 /* Utility functions */ | |
90 | |
91 static Lisp_Object x_get_window_property_as_lisp_data (Display *, | |
92 Window, | |
93 Atom property, | |
94 Lisp_Object target_type, | |
95 Atom selection_atom); | |
96 | |
97 static int expect_property_change (Display *, Window, Atom prop, int state); | |
98 static void wait_for_property_change (long); | |
99 static void unexpect_property_change (int); | |
100 static int waiting_for_other_props_on_window (Display *, Window); | |
101 | |
102 /* This converts a Lisp symbol to a server Atom, avoiding a server | |
103 roundtrip whenever possible. | |
104 */ | |
105 static Atom | |
106 symbol_to_x_atom (struct device *d, Lisp_Object sym, int only_if_exists) | |
107 { | |
108 Display *display = DEVICE_X_DISPLAY (d); | |
109 | |
110 if (NILP (sym)) return XA_PRIMARY; | |
111 if (EQ (sym, Qt)) return XA_SECONDARY; | |
112 if (EQ (sym, QPRIMARY)) return XA_PRIMARY; | |
113 if (EQ (sym, QSECONDARY)) return XA_SECONDARY; | |
114 if (EQ (sym, QSTRING)) return XA_STRING; | |
115 if (EQ (sym, QINTEGER)) return XA_INTEGER; | |
116 if (EQ (sym, QATOM)) return XA_ATOM; | |
117 if (EQ (sym, QCLIPBOARD)) return DEVICE_XATOM_CLIPBOARD (d); | |
118 if (EQ (sym, QTIMESTAMP)) return DEVICE_XATOM_TIMESTAMP (d); | |
119 if (EQ (sym, QTEXT)) return DEVICE_XATOM_TEXT (d); | |
120 if (EQ (sym, QDELETE)) return DEVICE_XATOM_DELETE (d); | |
121 if (EQ (sym, QMULTIPLE)) return DEVICE_XATOM_MULTIPLE (d); | |
122 if (EQ (sym, QINCR)) return DEVICE_XATOM_INCR (d); | |
123 if (EQ (sym, QEMACS_TMP)) return DEVICE_XATOM_EMACS_TMP (d); | |
124 if (EQ (sym, QTARGETS)) return DEVICE_XATOM_TARGETS (d); | |
125 if (EQ (sym, QNULL)) return DEVICE_XATOM_NULL (d); | |
126 if (EQ (sym, QATOM_PAIR)) return DEVICE_XATOM_ATOM_PAIR (d); | |
127 if (EQ (sym, QCOMPOUND_TEXT)) return DEVICE_XATOM_COMPOUND_TEXT (d); | |
128 | |
129 #ifdef CUT_BUFFER_SUPPORT | |
130 if (EQ (sym, QCUT_BUFFER0)) return XA_CUT_BUFFER0; | |
131 if (EQ (sym, QCUT_BUFFER1)) return XA_CUT_BUFFER1; | |
132 if (EQ (sym, QCUT_BUFFER2)) return XA_CUT_BUFFER2; | |
133 if (EQ (sym, QCUT_BUFFER3)) return XA_CUT_BUFFER3; | |
134 if (EQ (sym, QCUT_BUFFER4)) return XA_CUT_BUFFER4; | |
135 if (EQ (sym, QCUT_BUFFER5)) return XA_CUT_BUFFER5; | |
136 if (EQ (sym, QCUT_BUFFER6)) return XA_CUT_BUFFER6; | |
137 if (EQ (sym, QCUT_BUFFER7)) return XA_CUT_BUFFER7; | |
138 #endif /* CUT_BUFFER_SUPPORT */ | |
139 | |
140 { | |
647 | 141 const Extbyte *nameext; |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
142 nameext = LISP_STRING_TO_EXTERNAL (Fsymbol_name (sym), Qctext); |
428 | 143 return XInternAtom (display, nameext, only_if_exists ? True : False); |
144 } | |
145 } | |
146 | |
147 | |
148 /* This converts a server Atom to a Lisp symbol, avoiding server roundtrips | |
149 and calls to intern whenever possible. | |
150 */ | |
151 static Lisp_Object | |
152 x_atom_to_symbol (struct device *d, Atom atom) | |
153 { | |
154 Display *display = DEVICE_X_DISPLAY (d); | |
155 | |
156 if (! atom) return Qnil; | |
157 if (atom == XA_PRIMARY) return QPRIMARY; | |
158 if (atom == XA_SECONDARY) return QSECONDARY; | |
159 if (atom == XA_STRING) return QSTRING; | |
160 if (atom == XA_INTEGER) return QINTEGER; | |
161 if (atom == XA_ATOM) return QATOM; | |
162 if (atom == DEVICE_XATOM_CLIPBOARD (d)) return QCLIPBOARD; | |
163 if (atom == DEVICE_XATOM_TIMESTAMP (d)) return QTIMESTAMP; | |
164 if (atom == DEVICE_XATOM_TEXT (d)) return QTEXT; | |
165 if (atom == DEVICE_XATOM_DELETE (d)) return QDELETE; | |
166 if (atom == DEVICE_XATOM_MULTIPLE (d)) return QMULTIPLE; | |
167 if (atom == DEVICE_XATOM_INCR (d)) return QINCR; | |
168 if (atom == DEVICE_XATOM_EMACS_TMP (d)) return QEMACS_TMP; | |
169 if (atom == DEVICE_XATOM_TARGETS (d)) return QTARGETS; | |
170 if (atom == DEVICE_XATOM_NULL (d)) return QNULL; | |
171 if (atom == DEVICE_XATOM_ATOM_PAIR (d)) return QATOM_PAIR; | |
172 if (atom == DEVICE_XATOM_COMPOUND_TEXT (d)) return QCOMPOUND_TEXT; | |
173 | |
174 #ifdef CUT_BUFFER_SUPPORT | |
175 if (atom == XA_CUT_BUFFER0) return QCUT_BUFFER0; | |
176 if (atom == XA_CUT_BUFFER1) return QCUT_BUFFER1; | |
177 if (atom == XA_CUT_BUFFER2) return QCUT_BUFFER2; | |
178 if (atom == XA_CUT_BUFFER3) return QCUT_BUFFER3; | |
179 if (atom == XA_CUT_BUFFER4) return QCUT_BUFFER4; | |
180 if (atom == XA_CUT_BUFFER5) return QCUT_BUFFER5; | |
181 if (atom == XA_CUT_BUFFER6) return QCUT_BUFFER6; | |
182 if (atom == XA_CUT_BUFFER7) return QCUT_BUFFER7; | |
183 #endif | |
184 | |
185 { | |
867 | 186 Ibyte *intstr; |
771 | 187 Extbyte *str = XGetAtomName (display, atom); |
428 | 188 |
189 if (! str) return Qnil; | |
190 | |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
191 intstr = EXTERNAL_TO_ITEXT (str, Qctext); |
428 | 192 XFree (str); |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
3833
diff
changeset
|
193 return intern_istring (intstr); |
428 | 194 } |
195 } | |
196 | |
4984 | 197 #define THIS_IS_X |
198 #include "select-xlike-inc.c" | |
199 #undef THIS_IS_X | |
428 | 200 |
201 /* Do protocol to assert ourself as a selection owner. | |
202 */ | |
203 static Lisp_Object | |
2286 | 204 x_own_selection (Lisp_Object selection_name, |
205 #ifdef MOTIF_CLIPBOARDS | |
206 Lisp_Object selection_value, | |
207 #else | |
208 Lisp_Object UNUSED (selection_value), | |
209 #endif | |
210 Lisp_Object UNUSED (how_to_add), | |
211 Lisp_Object UNUSED (selection_type), | |
212 #ifdef MOTIF_CLIPBOARDS | |
213 int owned_p | |
214 #else | |
215 int UNUSED (owned_p) | |
216 #endif | |
217 ) | |
428 | 218 { |
219 struct device *d = decode_x_device (Qnil); | |
220 Display *display = DEVICE_X_DISPLAY (d); | |
221 struct frame *sel_frame = selected_frame (); | |
222 Window selecting_window = XtWindow (FRAME_X_TEXT_WIDGET (sel_frame)); | |
223 Lisp_Object selection_time; | |
224 /* Use the time of the last-read mouse or keyboard event. | |
225 For selection purposes, we use this as a sleazy way of knowing what the | |
226 current time is in server-time. This assumes that the most recently read | |
227 mouse or keyboard event has something to do with the assertion of the | |
228 selection, which is probably true. | |
229 */ | |
230 Time thyme = DEVICE_X_MOUSE_TIMESTAMP (d); | |
231 Atom selection_atom; | |
232 | |
233 CHECK_SYMBOL (selection_name); | |
234 selection_atom = symbol_to_x_atom (d, selection_name, 0); | |
235 | |
236 XSetSelectionOwner (display, selection_atom, selecting_window, thyme); | |
237 | |
2620 | 238 /* [[ We do NOT use time_to_lisp() here any more, like we used to. |
428 | 239 That assumed equivalence of time_t and Time, which is not |
240 necessarily the case (e.g. under OSF on the Alphas, where | |
2620 | 241 Time is a 64-bit quantity and time_t is a 32-bit quantity).]] |
242 | |
243 This is wrong--on Digital Unix, time_t is a sixty-four-bit quantity, | |
244 and Time is, as the X protocol dictates, a thirty-two-bit quantity. | |
442 | 245 |
2620 | 246 [[ Opaque pointers are the clean way to go here. ]] |
247 | |
248 Again, I disagree--the Lisp selection infrastructure needs to be | |
249 able to manipulate the selection timestamps if it is, as we want | |
250 it to, to be able to do most of the work. Though I have moved the | |
251 conversion to lisp to get-xemacs-selection-timestamp. -- Aidan. */ | |
252 | |
440 | 253 selection_time = make_opaque (&thyme, sizeof (thyme)); |
428 | 254 |
255 #ifdef MOTIF_CLIPBOARDS | |
256 hack_motif_clipboard_selection (selection_atom, selection_value, | |
456 | 257 thyme, display, selecting_window, owned_p); |
428 | 258 #endif |
259 return selection_time; | |
260 } | |
261 | |
262 #ifdef MOTIF_CLIPBOARDS /* Bend over baby. Take it and like it. */ | |
263 | |
264 # ifdef MOTIF_INCREMENTAL_CLIPBOARDS_WORK | |
265 static void motif_clipboard_cb (); | |
266 # endif | |
267 | |
268 static void | |
269 hack_motif_clipboard_selection (Atom selection_atom, | |
270 Lisp_Object selection_value, | |
271 Time thyme, | |
272 Display *display, | |
456 | 273 Window selecting_window, |
274 int owned_p) | |
428 | 275 { |
276 struct device *d = get_device_from_display (display); | |
277 /* Those Motif wankers can't be bothered to follow the ICCCM, and do | |
278 their own non-Xlib non-Xt clipboard processing. So we have to do | |
279 this so that linked-in Motif widgets don't get themselves wedged. | |
280 */ | |
281 if (selection_atom == DEVICE_XATOM_CLIPBOARD (d) | |
282 && STRINGP (selection_value) | |
283 | |
284 /* If we already own the clipboard, don't own it again in the Motif | |
285 way. This might lose in some subtle way, since the timestamp won't | |
286 be current, but owning the selection on the Motif way does a | |
287 SHITLOAD of X protocol, and it makes killing text be incredibly | |
288 slow when using an X terminal. ARRRRGGGHHH!!!! | |
289 */ | |
290 /* No, this is no good, because then Motif text fields don't bother | |
291 to look up the new value, and you can't Copy from a buffer, Paste | |
292 into a text field, then Copy something else from the buffer and | |
293 paste it into the text field -- it pastes the first thing again. */ | |
456 | 294 && (!owned_p |
295 /* Selectively re-enable this because for most users its | |
296 just too painful - especially over a remote link. */ | |
297 || x_selection_strict_motif_ownership) | |
428 | 298 ) |
299 { | |
300 #ifdef MOTIF_INCREMENTAL_CLIPBOARDS_WORK | |
301 Widget widget = FRAME_X_TEXT_WIDGET (selected_frame()); | |
302 #endif | |
303 long itemid; | |
304 #if XmVersion >= 1002 | |
305 long dataid; | |
306 #else | |
307 int dataid; /* 1.2 wants long, but 1.1.5 wants int... */ | |
308 #endif | |
309 XmString fmh; | |
310 String encoding = "STRING"; | |
867 | 311 const Ibyte *data = XSTRING_DATA (selection_value); |
444 | 312 Bytecount bytes = XSTRING_LENGTH (selection_value); |
428 | 313 |
314 #ifdef MULE | |
315 { | |
316 enum { ASCII, LATIN_1, WORLD } chartypes = ASCII; | |
867 | 317 const Ibyte *ptr = data, *end = ptr + bytes; |
428 | 318 /* Optimize for the common ASCII case */ |
319 while (ptr <= end) | |
320 { | |
826 | 321 if (byte_ascii_p (*ptr)) |
428 | 322 { |
323 ptr++; | |
324 continue; | |
325 } | |
326 | |
327 if ((*ptr) == LEADING_BYTE_LATIN_ISO8859_1 || | |
328 (*ptr) == LEADING_BYTE_CONTROL_1) | |
329 { | |
330 chartypes = LATIN_1; | |
331 ptr += 2; | |
332 continue; | |
333 } | |
334 | |
335 chartypes = WORLD; | |
336 break; | |
337 } | |
338 | |
339 if (chartypes == LATIN_1) | |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
340 LISP_STRING_TO_SIZED_EXTERNAL (selection_value, data, bytes, |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
341 Qbinary); |
428 | 342 else if (chartypes == WORLD) |
343 { | |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
344 LISP_STRING_TO_SIZED_EXTERNAL (selection_value, data, bytes, |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
345 Qctext); |
428 | 346 encoding = "COMPOUND_TEXT"; |
347 } | |
348 } | |
349 #endif /* MULE */ | |
350 | |
351 fmh = XmStringCreateLtoR ("Clipboard", XmSTRING_DEFAULT_CHARSET); | |
352 while (ClipboardSuccess != | |
353 XmClipboardStartCopy (display, selecting_window, fmh, thyme, | |
354 #ifdef MOTIF_INCREMENTAL_CLIPBOARDS_WORK | |
355 widget, motif_clipboard_cb, | |
356 #else | |
357 0, NULL, | |
358 #endif | |
359 &itemid)) | |
360 ; | |
361 XmStringFree (fmh); | |
362 while (ClipboardSuccess != | |
363 XmClipboardCopy (display, selecting_window, itemid, encoding, | |
364 #ifdef MOTIF_INCREMENTAL_CLIPBOARDS_WORK | |
365 /* O'Reilly examples say size can be 0, | |
366 but this clearly is not the case. */ | |
367 0, bytes, (int) selecting_window, /* private id */ | |
368 #else /* !MOTIF_INCREMENTAL_CLIPBOARDS_WORK */ | |
369 (XtPointer) data, bytes, 0, | |
370 #endif /* !MOTIF_INCREMENTAL_CLIPBOARDS_WORK */ | |
371 &dataid)) | |
372 ; | |
373 while (ClipboardSuccess != | |
374 XmClipboardEndCopy (display, selecting_window, itemid)) | |
375 ; | |
376 } | |
377 } | |
378 | |
379 # ifdef MOTIF_INCREMENTAL_CLIPBOARDS_WORK | |
380 /* I tried to treat the clipboard like a real selection, and not send | |
381 the data until it was requested, but it looks like that just doesn't | |
382 work at all unless the selection owner and requestor are in different | |
383 processes. From reading the Motif source, it looks like they never | |
384 even considered having two widgets in the same application transfer | |
385 data between each other using "by-name" clipboard values. What a | |
386 bunch of fuckups. | |
387 */ | |
388 static void | |
389 motif_clipboard_cb (Widget widget, int *data_id, int *private_id, int *reason) | |
390 { | |
391 switch (*reason) | |
392 { | |
393 case XmCR_CLIPBOARD_DATA_REQUEST: | |
394 { | |
395 Display *dpy = XtDisplay (widget); | |
396 Window window = (Window) *private_id; | |
442 | 397 Lisp_Object selection = select_convert_out (QCLIPBOARD, Qnil, Qnil); |
398 | |
2500 | 399 /* Whichever lazy git wrote this originally just called ABORT() |
442 | 400 when anything didn't go their way... */ |
401 | |
402 /* Try some other text types */ | |
403 if (NILP (selection)) | |
404 selection = select_convert_out (QCLIPBOARD, QSTRING, Qnil); | |
405 if (NILP (selection)) | |
406 selection = select_convert_out (QCLIPBOARD, QTEXT, Qnil); | |
407 if (NILP (selection)) | |
408 selection = select_convert_out (QCLIPBOARD, QCOMPOUND_TEXT, Qnil); | |
409 | |
410 if (CONSP (selection) && SYMBOLP (XCAR (selection)) | |
411 && (EQ (XCAR (selection), QSTRING) | |
412 || EQ (XCAR (selection), QTEXT) | |
413 || EQ (XCAR (selection), QCOMPOUND_TEXT))) | |
414 selection = XCDR (selection); | |
415 | |
416 if (NILP (selection)) | |
563 | 417 signal_error (Qselection_conversion_error, "no selection", |
418 Qunbound); | |
442 | 419 |
420 if (!STRINGP (selection)) | |
421 signal_error (Qselection_conversion_error, | |
563 | 422 "couldn't convert selection to string", Qunbound); |
442 | 423 |
424 | |
428 | 425 XmClipboardCopyByName (dpy, window, *data_id, |
426 (char *) XSTRING_DATA (selection), | |
427 XSTRING_LENGTH (selection) + 1, | |
428 0); | |
429 } | |
430 break; | |
431 case XmCR_CLIPBOARD_DATA_DELETE: | |
432 default: | |
433 /* don't need to free anything */ | |
434 break; | |
435 } | |
436 } | |
437 # endif /* MOTIF_INCREMENTAL_CLIPBOARDS_WORK */ | |
438 #endif /* MOTIF_CLIPBOARDS */ | |
439 | |
440 | |
441 | |
442 | |
443 /* Send a SelectionNotify event to the requestor with property=None, meaning | |
444 we were unable to do what they wanted. | |
445 */ | |
446 static void | |
447 x_decline_selection_request (XSelectionRequestEvent *event) | |
448 { | |
449 XSelectionEvent reply; | |
450 reply.type = SelectionNotify; | |
451 reply.display = event->display; | |
452 reply.requestor = event->requestor; | |
453 reply.selection = event->selection; | |
454 reply.time = event->time; | |
455 reply.target = event->target; | |
456 reply.property = None; | |
457 | |
458 XSendEvent (reply.display, reply.requestor, False, 0L, (XEvent *) &reply); | |
459 XFlush (reply.display); | |
460 } | |
461 | |
462 | |
463 /* Used as an unwind-protect clause so that, if a selection-converter signals | |
464 an error, we tell the requestor that we were unable to do what they wanted | |
465 before we throw to top-level or go into the debugger or whatever. | |
466 */ | |
467 static Lisp_Object | |
468 x_selection_request_lisp_error (Lisp_Object closure) | |
469 { | |
470 XSelectionRequestEvent *event = (XSelectionRequestEvent *) | |
471 get_opaque_ptr (closure); | |
472 | |
473 free_opaque_ptr (closure); | |
474 if (event->type == 0) /* we set this to mean "completed normally" */ | |
475 return Qnil; | |
476 x_decline_selection_request (event); | |
477 return Qnil; | |
478 } | |
479 | |
480 | |
481 /* Convert our selection to the requested type, and put that data where the | |
482 requestor wants it. Then tell them whether we've succeeded. | |
483 */ | |
484 static void | |
485 x_reply_selection_request (XSelectionRequestEvent *event, int format, | |
2367 | 486 Rawbyte *data, Bytecount size, Atom type) |
428 | 487 { |
488 /* This function can GC */ | |
489 XSelectionEvent reply; | |
490 Display *display = event->display; | |
491 struct device *d = get_device_from_display (display); | |
492 Window window = event->requestor; | |
665 | 493 Bytecount bytes_remaining; |
428 | 494 int format_bytes = format/8; |
665 | 495 Bytecount max_bytes = SELECTION_QUANTUM (display); |
428 | 496 if (max_bytes > MAX_SELECTION_QUANTUM) max_bytes = MAX_SELECTION_QUANTUM; |
497 | |
498 reply.type = SelectionNotify; | |
499 reply.display = display; | |
500 reply.requestor = window; | |
501 reply.selection = event->selection; | |
502 reply.time = event->time; | |
503 reply.target = event->target; | |
504 reply.property = (event->property == None ? event->target : event->property); | |
505 | |
506 /* #### XChangeProperty can generate BadAlloc, and we must handle it! */ | |
507 | |
508 /* Store the data on the requested property. | |
509 If the selection is large, only store the first N bytes of it. | |
510 */ | |
511 bytes_remaining = size * format_bytes; | |
512 if (bytes_remaining <= max_bytes) | |
513 { | |
514 /* Send all the data at once, with minimal handshaking. */ | |
515 #if 0 | |
516 stderr_out ("\nStoring all %d\n", bytes_remaining); | |
517 #endif | |
518 XChangeProperty (display, window, reply.property, type, format, | |
519 PropModeReplace, data, size); | |
520 /* At this point, the selection was successfully stored; ack it. */ | |
521 XSendEvent (display, window, False, 0L, (XEvent *) &reply); | |
522 XFlush (display); | |
523 } | |
524 else | |
525 { | |
2625 | 526 #ifndef HAVE_XTREGISTERDRAWABLE |
2627 | 527 invalid_operation("Copying that much data requires X11R6.", Qunbound); |
2625 | 528 #else |
428 | 529 /* Send an INCR selection. */ |
530 int prop_id; | |
2623 | 531 Widget widget = FRAME_X_TEXT_WIDGET (XFRAME(DEVICE_SELECTED_FRAME(d))); |
428 | 532 |
533 if (x_window_to_frame (d, window)) /* #### debug */ | |
2619 | 534 invalid_operation ("attempt to transfer an INCR to ourself!", |
535 Qunbound); | |
428 | 536 #if 0 |
537 stderr_out ("\nINCR %d\n", bytes_remaining); | |
538 #endif | |
2619 | 539 |
540 /* Tell Xt not to drop PropertyNotify events that arrive for the | |
541 target window, rather, pass them to us. This would be a hack, but | |
542 the Xt selection routines are broken for our purposes--we can't | |
543 pass them callbacks from Lisp, for example. Let's call it a | |
2629 | 544 workaround. |
545 | |
546 The call to wait_for_property_change means we can break out of that | |
547 function, switch to another frame on the same display (which will | |
548 be another Xt widget), select a huge amount of text, and have the | |
549 same (foreign) app ask for another incremental selection | |
550 transfer. Programming like X11 made sense, would mean that, in that | |
551 case, XtRegisterDrawable is called twice with different widgets. | |
552 | |
553 Since the results of calling XtRegisterDrawable when the drawable | |
554 is already registered with another widget are undefined, we want to | |
555 avoid that--so, only call it when XtWindowToWidget returns NULL, | |
556 which it will only do with a valid Window if it's not already | |
557 registered. */ | |
558 if (NULL == XtWindowToWidget(display, window)) | |
559 { | |
560 XtRegisterDrawable(display, (Drawable)window, widget); | |
561 } | |
2619 | 562 |
428 | 563 prop_id = expect_property_change (display, window, reply.property, |
564 PropertyDelete); | |
565 | |
566 XChangeProperty (display, window, reply.property, DEVICE_XATOM_INCR (d), | |
2367 | 567 32, PropModeReplace, (Rawbyte *) |
428 | 568 &bytes_remaining, 1); |
569 XSelectInput (display, window, PropertyChangeMask); | |
570 /* Tell 'em the INCR data is there... */ | |
571 XSendEvent (display, window, False, 0L, (XEvent *) &reply); | |
572 XFlush (display); | |
573 | |
574 /* First, wait for the requestor to ack by deleting the property. | |
575 This can run random lisp code (process handlers) or signal. | |
576 */ | |
577 wait_for_property_change (prop_id); | |
578 | |
579 while (bytes_remaining) | |
580 { | |
665 | 581 Bytecount i = ((bytes_remaining < max_bytes) |
428 | 582 ? bytes_remaining |
583 : max_bytes); | |
584 prop_id = expect_property_change (display, window, reply.property, | |
585 PropertyDelete); | |
586 #if 0 | |
587 stderr_out (" INCR adding %d\n", i); | |
588 #endif | |
589 /* Append the next chunk of data to the property. */ | |
590 XChangeProperty (display, window, reply.property, type, format, | |
591 PropModeAppend, data, i / format_bytes); | |
592 bytes_remaining -= i; | |
593 data += i; | |
594 | |
595 /* Now wait for the requestor to ack this chunk by deleting the | |
596 property. This can run random lisp code or signal. | |
597 */ | |
598 wait_for_property_change (prop_id); | |
599 } | |
600 /* Now write a zero-length chunk to the property to tell the requestor | |
601 that we're done. */ | |
602 #if 0 | |
603 stderr_out (" INCR done\n"); | |
604 #endif | |
605 if (! waiting_for_other_props_on_window (display, window)) | |
2619 | 606 { |
428 | 607 XSelectInput (display, window, 0L); |
2619 | 608 XtUnregisterDrawable(display, (Drawable)window); |
609 } | |
428 | 610 XChangeProperty (display, window, reply.property, type, format, |
611 PropModeReplace, data, 0); | |
2625 | 612 #endif /* HAVE_XTREGISTERDRAWABLE */ |
428 | 613 } |
614 } | |
615 | |
616 | |
617 | |
618 /* Called from the event-loop in response to a SelectionRequest event. | |
619 */ | |
620 void | |
621 x_handle_selection_request (XSelectionRequestEvent *event) | |
622 { | |
623 /* This function can GC */ | |
442 | 624 struct gcpro gcpro1, gcpro2; |
625 Lisp_Object temp_obj; | |
428 | 626 Lisp_Object selection_symbol; |
627 Lisp_Object target_symbol = Qnil; | |
628 Lisp_Object converted_selection = Qnil; | |
629 Time local_selection_time; | |
630 Lisp_Object successful_p = Qnil; | |
631 int count; | |
632 struct device *d = get_device_from_display (event->display); | |
633 | |
442 | 634 GCPRO2 (converted_selection, target_symbol); |
428 | 635 |
636 selection_symbol = x_atom_to_symbol (d, event->selection); | |
442 | 637 target_symbol = x_atom_to_symbol (d, event->target); |
428 | 638 |
442 | 639 #if 0 /* #### MULTIPLE doesn't work yet */ |
640 if (EQ (target_symbol, QMULTIPLE)) | |
641 target_symbol = fetch_multiple_target (event); | |
428 | 642 #endif |
643 | |
2620 | 644 temp_obj = get_selection_raw_time (selection_symbol); |
442 | 645 |
646 if (NILP (temp_obj)) | |
428 | 647 { |
442 | 648 /* We don't appear to have the selection. */ |
428 | 649 x_decline_selection_request (event); |
442 | 650 |
428 | 651 goto DONE_LABEL; |
652 } | |
653 | |
442 | 654 local_selection_time = * (Time *) XOPAQUE_DATA (temp_obj); |
428 | 655 |
656 if (event->time != CurrentTime && | |
657 local_selection_time > event->time) | |
658 { | |
659 /* Someone asked for the selection, and we have one, but not the one | |
660 they're looking for. */ | |
661 x_decline_selection_request (event); | |
662 goto DONE_LABEL; | |
663 } | |
664 | |
442 | 665 converted_selection = select_convert_out (selection_symbol, |
666 target_symbol, Qnil); | |
667 | |
668 /* #### Is this the right thing to do? I'm no X expert. -- ajh */ | |
669 if (NILP (converted_selection)) | |
670 { | |
671 /* We don't appear to have a selection in that data type. */ | |
672 x_decline_selection_request (event); | |
673 goto DONE_LABEL; | |
674 } | |
675 | |
428 | 676 count = specpdl_depth (); |
677 record_unwind_protect (x_selection_request_lisp_error, | |
678 make_opaque_ptr (event)); | |
679 | |
442 | 680 { |
2367 | 681 Rawbyte *data; |
665 | 682 Bytecount size; |
442 | 683 int format; |
684 Atom type; | |
685 lisp_data_to_selection_data (d, converted_selection, | |
686 &data, &type, &size, &format); | |
428 | 687 |
442 | 688 x_reply_selection_request (event, format, data, size, type); |
689 successful_p = Qt; | |
690 /* Tell x_selection_request_lisp_error() it's cool. */ | |
691 event->type = 0; | |
2620 | 692 /* Data need not have been allocated; cf. select-convert-to-delete in |
693 lisp/select.el . */ | |
5169
6c6d78781d59
cleanup of code related to xfree(), better KKCC backtrace capabilities, document XD_INLINE_LISP_OBJECT_BLOCK_PTR, fix some memory leaks, other code cleanup
Ben Wing <ben@xemacs.org>
parents:
4985
diff
changeset
|
694 if (data) |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
695 xfree (data); |
442 | 696 } |
697 | |
771 | 698 unbind_to (count); |
428 | 699 |
700 DONE_LABEL: | |
701 | |
702 UNGCPRO; | |
703 | |
704 /* Let random lisp code notice that the selection has been asked for. */ | |
705 { | |
706 Lisp_Object val = Vx_sent_selection_hooks; | |
707 if (!UNBOUNDP (val) && !NILP (val)) | |
708 { | |
442 | 709 Lisp_Object rest; |
428 | 710 if (CONSP (val) && !EQ (XCAR (val), Qlambda)) |
711 for (rest = val; !NILP (rest); rest = Fcdr (rest)) | |
442 | 712 call3 (Fcar (rest), selection_symbol, target_symbol, successful_p); |
428 | 713 else |
442 | 714 call3 (val, selection_symbol, target_symbol, successful_p); |
428 | 715 } |
716 } | |
717 } | |
718 | |
719 | |
720 /* Called from the event-loop in response to a SelectionClear event. | |
721 */ | |
722 void | |
723 x_handle_selection_clear (XSelectionClearEvent *event) | |
724 { | |
725 Display *display = event->display; | |
726 struct device *d = get_device_from_display (display); | |
727 Atom selection = event->selection; | |
728 Time changed_owner_time = event->time; | |
729 | |
442 | 730 Lisp_Object selection_symbol, local_selection_time_lisp; |
428 | 731 Time local_selection_time; |
732 | |
733 selection_symbol = x_atom_to_symbol (d, selection); | |
734 | |
2620 | 735 local_selection_time_lisp = get_selection_raw_time (selection_symbol); |
428 | 736 |
442 | 737 /* We don't own the selection, so that's fine. */ |
738 if (NILP (local_selection_time_lisp)) | |
739 return; | |
428 | 740 |
442 | 741 local_selection_time = * (Time *) XOPAQUE_DATA (local_selection_time_lisp); |
428 | 742 |
743 /* This SelectionClear is for a selection that we no longer own, so we can | |
744 disregard it. (That is, we have reasserted the selection since this | |
745 request was generated.) | |
746 */ | |
747 if (changed_owner_time != CurrentTime && | |
748 local_selection_time > changed_owner_time) | |
749 return; | |
442 | 750 |
428 | 751 handle_selection_clear (selection_symbol); |
752 } | |
753 | |
754 | |
755 /* This stuff is so that INCR selections are reentrant (that is, so we can | |
756 be servicing multiple INCR selection requests simultaneously). I haven't | |
757 actually tested that yet. | |
758 */ | |
759 | |
760 static int prop_location_tick; | |
761 | |
762 static struct prop_location { | |
763 int tick; | |
764 Display *display; | |
765 Window window; | |
766 Atom property; | |
767 int desired_state; | |
768 struct prop_location *next; | |
769 } *for_whom_the_bell_tolls; | |
770 | |
771 | |
772 static int | |
773 property_deleted_p (void *tick) | |
774 { | |
775 struct prop_location *rest = for_whom_the_bell_tolls; | |
776 while (rest) | |
777 if (rest->tick == (long) tick) | |
778 return 0; | |
779 else | |
780 rest = rest->next; | |
781 return 1; | |
782 } | |
783 | |
784 static int | |
785 waiting_for_other_props_on_window (Display *display, Window window) | |
786 { | |
787 struct prop_location *rest = for_whom_the_bell_tolls; | |
788 while (rest) | |
789 if (rest->display == display && rest->window == window) | |
790 return 1; | |
791 else | |
792 rest = rest->next; | |
793 return 0; | |
794 } | |
795 | |
796 | |
797 static int | |
798 expect_property_change (Display *display, Window window, | |
799 Atom property, int state) | |
800 { | |
801 struct prop_location *pl = xnew (struct prop_location); | |
802 pl->tick = ++prop_location_tick; | |
803 pl->display = display; | |
804 pl->window = window; | |
805 pl->property = property; | |
806 pl->desired_state = state; | |
807 pl->next = for_whom_the_bell_tolls; | |
808 for_whom_the_bell_tolls = pl; | |
809 return pl->tick; | |
810 } | |
811 | |
812 static void | |
813 unexpect_property_change (int tick) | |
814 { | |
815 struct prop_location *prev = 0, *rest = for_whom_the_bell_tolls; | |
816 while (rest) | |
817 { | |
818 if (rest->tick == tick) | |
819 { | |
820 if (prev) | |
821 prev->next = rest->next; | |
822 else | |
823 for_whom_the_bell_tolls = rest->next; | |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
824 xfree (rest); |
428 | 825 return; |
826 } | |
827 prev = rest; | |
828 rest = rest->next; | |
829 } | |
830 } | |
831 | |
832 static void | |
833 wait_for_property_change (long tick) | |
834 { | |
835 /* This function can GC */ | |
836 wait_delaying_user_input (property_deleted_p, (void *) tick); | |
837 } | |
838 | |
839 | |
840 /* Called from the event-loop in response to a PropertyNotify event. | |
841 */ | |
842 void | |
843 x_handle_property_notify (XPropertyEvent *event) | |
844 { | |
845 struct prop_location *prev = 0, *rest = for_whom_the_bell_tolls; | |
846 while (rest) | |
847 { | |
848 if (rest->property == event->atom && | |
849 rest->window == event->window && | |
850 rest->display == event->display && | |
851 rest->desired_state == event->state) | |
852 { | |
853 #if 0 | |
854 stderr_out ("Saw expected prop-%s on %s\n", | |
793 | 855 (event->state == PropertyDelete ? "delete" : "change"), |
856 XSTRING_DATA | |
857 (XSYMBOL (x_atom_to_symbol | |
858 (get_device_from_display (event->display), | |
1726 | 859 event->atom))->name)); |
428 | 860 #endif |
861 if (prev) | |
862 prev->next = rest->next; | |
863 else | |
864 for_whom_the_bell_tolls = rest->next; | |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
865 xfree (rest); |
428 | 866 return; |
867 } | |
868 prev = rest; | |
869 rest = rest->next; | |
870 } | |
871 #if 0 | |
872 stderr_out ("Saw UNexpected prop-%s on %s\n", | |
793 | 873 (event->state == PropertyDelete ? "delete" : "change"), |
874 XSTRING_DATA (XSYMBOL (x_atom_to_symbol | |
875 (get_device_from_display (event->display), | |
876 event->atom))->name)); | |
428 | 877 #endif |
878 } | |
879 | |
880 | |
881 | |
882 #if 0 /* #### MULTIPLE doesn't work yet */ | |
883 | |
884 static Lisp_Object | |
885 fetch_multiple_target (XSelectionRequestEvent *event) | |
886 { | |
887 /* This function can GC */ | |
888 Display *display = event->display; | |
889 Window window = event->requestor; | |
890 Atom target = event->target; | |
891 Atom selection_atom = event->selection; | |
892 int result; | |
893 | |
894 return | |
895 Fcons (QMULTIPLE, | |
896 x_get_window_property_as_lisp_data (display, window, target, | |
897 QMULTIPLE, | |
898 selection_atom)); | |
899 } | |
900 | |
901 static Lisp_Object | |
902 copy_multiple_data (Lisp_Object obj) | |
903 { | |
904 Lisp_Object vec; | |
665 | 905 Elemcount i; |
906 Elemcount len; | |
428 | 907 if (CONSP (obj)) |
908 return Fcons (XCAR (obj), copy_multiple_data (XCDR (obj))); | |
909 | |
910 CHECK_VECTOR (obj); | |
911 len = XVECTOR_LENGTH (obj); | |
912 vec = make_vector (len, Qnil); | |
913 for (i = 0; i < len; i++) | |
914 { | |
915 Lisp_Object vec2 = XVECTOR_DATA (obj) [i]; | |
916 CHECK_VECTOR (vec2); | |
917 if (XVECTOR_LENGTH (vec2) != 2) | |
563 | 918 sferror ("vectors must be of length 2", vec2); |
428 | 919 XVECTOR_DATA (vec) [i] = make_vector (2, Qnil); |
920 XVECTOR_DATA (XVECTOR_DATA (vec) [i]) [0] = XVECTOR_DATA (vec2) [0]; | |
921 XVECTOR_DATA (XVECTOR_DATA (vec) [i]) [1] = XVECTOR_DATA (vec2) [1]; | |
922 } | |
923 return vec; | |
924 } | |
925 | |
926 #endif /* 0 */ | |
927 | |
928 | |
929 static Window reading_selection_reply; | |
930 static Atom reading_which_selection; | |
931 static int selection_reply_timed_out; | |
932 | |
933 static int | |
2286 | 934 selection_reply_done (void *UNUSED (unused)) |
428 | 935 { |
936 return !reading_selection_reply; | |
937 } | |
938 | |
939 static Lisp_Object Qx_selection_reply_timeout_internal; | |
940 | |
941 DEFUN ("x-selection-reply-timeout-internal", Fx_selection_reply_timeout_internal, | |
942 1, 1, 0, /* | |
943 */ | |
2286 | 944 (UNUSED (arg))) |
428 | 945 { |
946 selection_reply_timed_out = 1; | |
947 reading_selection_reply = 0; | |
948 return Qnil; | |
949 } | |
950 | |
951 | |
952 /* Do protocol to read selection-data from the server. | |
953 Converts this to lisp data and returns it. | |
954 */ | |
955 static Lisp_Object | |
956 x_get_foreign_selection (Lisp_Object selection_symbol, Lisp_Object target_type) | |
957 { | |
958 /* This function can GC */ | |
959 struct device *d = decode_x_device (Qnil); | |
960 Display *display = DEVICE_X_DISPLAY (d); | |
961 struct frame *sel_frame = selected_frame (); | |
962 Window requestor_window = XtWindow (FRAME_X_TEXT_WIDGET (sel_frame)); | |
963 Time requestor_time = DEVICE_X_MOUSE_TIMESTAMP (d); | |
964 Atom target_property = DEVICE_XATOM_EMACS_TMP (d); | |
965 Atom selection_atom = symbol_to_x_atom (d, selection_symbol, 0); | |
966 int speccount; | |
967 Atom type_atom = symbol_to_x_atom (d, (CONSP (target_type) ? | |
968 XCAR (target_type) : target_type), 0); | |
969 | |
970 XConvertSelection (display, selection_atom, type_atom, target_property, | |
971 requestor_window, requestor_time); | |
972 | |
973 /* Block until the reply has been read. */ | |
974 reading_selection_reply = requestor_window; | |
975 reading_which_selection = selection_atom; | |
976 selection_reply_timed_out = 0; | |
977 | |
978 speccount = specpdl_depth (); | |
979 | |
980 /* add a timeout handler */ | |
981 if (x_selection_timeout > 0) | |
982 { | |
983 Lisp_Object id = Fadd_timeout (make_int (x_selection_timeout), | |
984 Qx_selection_reply_timeout_internal, | |
985 Qnil, Qnil); | |
986 record_unwind_protect (Fdisable_timeout, id); | |
987 } | |
988 | |
989 /* This is ^Gable */ | |
990 wait_delaying_user_input (selection_reply_done, 0); | |
991 | |
992 if (selection_reply_timed_out) | |
563 | 993 signal_error (Qselection_conversion_error, "timed out waiting for reply from selection owner", Qunbound); |
428 | 994 |
771 | 995 unbind_to (speccount); |
428 | 996 |
997 /* otherwise, the selection is waiting for us on the requested property. */ | |
442 | 998 |
999 return select_convert_in (selection_symbol, | |
1000 target_type, | |
1001 x_get_window_property_as_lisp_data(display, | |
1002 requestor_window, | |
1003 target_property, | |
1004 target_type, | |
1005 selection_atom)); | |
428 | 1006 } |
1007 | |
1008 | |
1009 static void | |
1010 x_get_window_property (Display *display, Window window, Atom property, | |
2367 | 1011 Rawbyte **data_ret, Bytecount *bytes_ret, |
428 | 1012 Atom *actual_type_ret, int *actual_format_ret, |
1013 unsigned long *actual_size_ret, int delete_p) | |
1014 { | |
665 | 1015 Bytecount total_size; |
428 | 1016 unsigned long bytes_remaining; |
665 | 1017 Bytecount offset = 0; |
2367 | 1018 Rawbyte *tmp_data = 0; |
428 | 1019 int result; |
665 | 1020 Bytecount buffer_size = SELECTION_QUANTUM (display); |
428 | 1021 if (buffer_size > MAX_SELECTION_QUANTUM) buffer_size = MAX_SELECTION_QUANTUM; |
1022 | |
1023 /* First probe the thing to find out how big it is. */ | |
1024 result = XGetWindowProperty (display, window, property, | |
1025 0, 0, False, AnyPropertyType, | |
1026 actual_type_ret, actual_format_ret, | |
1027 actual_size_ret, | |
1028 &bytes_remaining, &tmp_data); | |
1029 if (result != Success) | |
1030 { | |
1031 *data_ret = 0; | |
1032 *bytes_ret = 0; | |
1033 return; | |
1034 } | |
1035 XFree ((char *) tmp_data); | |
1036 | |
1037 if (*actual_type_ret == None || *actual_format_ret == 0) | |
1038 { | |
1039 if (delete_p) XDeleteProperty (display, window, property); | |
1040 *data_ret = 0; | |
1041 *bytes_ret = 0; | |
1042 return; | |
1043 } | |
1044 | |
3833 | 1045 /* The manpage for XGetWindowProperty from X.org X11.7.2 sez: |
1046 nitems_return [[ our actual_size_ret ]] | |
1047 Returns the actual number of 8-bit, 16-bit, or 32-bit items | |
1048 stored in the prop_return data. | |
1049 prop_return [[ our tmp_data ]] | |
1050 Returns the data in the specified format. If the returned | |
1051 format is 8, the returned data is represented as a char | |
1052 array. If the returned format is 16, the returned data is | |
1053 represented as a array of short int type and should be cast | |
1054 to that type to obtain the elements. If the returned format | |
1055 is 32, the property data will be stored as an array of longs | |
1056 (which in a 64-bit application will be 64-bit values that are | |
1057 padded in the upper 4 bytes). | |
1058 bytes_after_return [[ our bytes_remaining ]] | |
1059 Returns the number of bytes remaining to be read in the prop- | |
1060 erty if a partial read was performed. | |
1061 | |
1062 AFAIK XEmacs does not support any platforms where the char type is other | |
1063 than 8 bits (Cray?), or where the short type is other than 16 bits. | |
1064 There is no such agreement on the size of long, and 64-bit platforms | |
1065 generally make long be a 64-bit quantity while while it's 32 bits on | |
1066 32-bit platforms. | |
1067 | |
1068 This means that on all platforms the wire item is the same size as our | |
1069 buffer unit when format == 8 or format == 16 or format == wordsize == 32, | |
1070 and the buffer size can be taken as bytes_remaining plus padding. | |
1071 However, when format == 32 and wordsize == 64, the buffer unit is twice | |
1072 the size of the wire item. Obviously this code below is not 128-bit | |
1073 safe. (We could replace the factor 2 with (sizeof(long)*8/32.) | |
1074 | |
1075 We can hope it doesn't much matter on versions of X11 earlier than R7. | |
1076 */ | |
1077 if (sizeof(long) == 8 && *actual_format_ret == 32) | |
1078 total_size = 2 * bytes_remaining + 1; | |
1079 else | |
1080 total_size = bytes_remaining + 1; | |
2367 | 1081 *data_ret = xnew_rawbytes (total_size); |
428 | 1082 |
1083 /* Now read, until we've gotten it all. */ | |
1084 while (bytes_remaining) | |
1085 { | |
1086 #if 0 | |
665 | 1087 Bytecount last = bytes_remaining; |
428 | 1088 #endif |
1089 result = | |
1090 XGetWindowProperty (display, window, property, | |
1091 offset/4, buffer_size/4, | |
1092 (delete_p ? True : False), | |
1093 AnyPropertyType, | |
1094 actual_type_ret, actual_format_ret, | |
1095 actual_size_ret, &bytes_remaining, &tmp_data); | |
1096 #if 0 | |
1097 stderr_out ("<< read %d\n", last-bytes_remaining); | |
1098 #endif | |
1099 /* If this doesn't return Success at this point, it means that | |
1100 some clod deleted the selection while we were in the midst of | |
1101 reading it. Deal with that, I guess.... | |
1102 */ | |
1103 if (result != Success) break; | |
3833 | 1104 /* Again we need to compute the number of bytes in our buffer, not |
1105 the number of bytes transferred for the property. */ | |
1106 if (sizeof(long) == 8 && *actual_format_ret == 32) | |
1107 *actual_size_ret *= 8; | |
1108 else | |
1109 *actual_size_ret *= *actual_format_ret / 8; | |
428 | 1110 memcpy ((*data_ret) + offset, tmp_data, *actual_size_ret); |
1111 offset += *actual_size_ret; | |
1112 XFree ((char *) tmp_data); | |
1113 } | |
1114 *bytes_ret = offset; | |
1115 } | |
1116 | |
1117 | |
1118 static void | |
1119 receive_incremental_selection (Display *display, Window window, Atom property, | |
1120 /* this one is for error messages only */ | |
2286 | 1121 Lisp_Object UNUSED (target_type), |
665 | 1122 Bytecount min_size_bytes, |
2367 | 1123 Rawbyte **data_ret, |
665 | 1124 Bytecount *size_bytes_ret, |
428 | 1125 Atom *type_ret, int *format_ret, |
1126 unsigned long *size_ret) | |
1127 { | |
1128 /* This function can GC */ | |
665 | 1129 Bytecount offset = 0; |
428 | 1130 int prop_id; |
1131 *size_bytes_ret = min_size_bytes; | |
2367 | 1132 *data_ret = xnew_rawbytes (*size_bytes_ret); |
428 | 1133 #if 0 |
1134 stderr_out ("\nread INCR %d\n", min_size_bytes); | |
1135 #endif | |
1136 /* At this point, we have read an INCR property, and deleted it (which | |
1137 is how we ack its receipt: the sending window will be selecting | |
1138 PropertyNotify events on our window to notice this). | |
1139 | |
1140 Now, we must loop, waiting for the sending window to put a value on | |
1141 that property, then reading the property, then deleting it to ack. | |
1142 We are done when the sender places a property of length 0. | |
1143 */ | |
1144 prop_id = expect_property_change (display, window, property, | |
1145 PropertyNewValue); | |
1146 while (1) | |
1147 { | |
2367 | 1148 Rawbyte *tmp_data; |
665 | 1149 Bytecount tmp_size_bytes; |
428 | 1150 wait_for_property_change (prop_id); |
1151 /* expect it again immediately, because x_get_window_property may | |
1152 .. no it won't, I don't get it. | |
1153 .. Ok, I get it now, the Xt code that implements INCR is broken. | |
1154 */ | |
1155 prop_id = expect_property_change (display, window, property, | |
1156 PropertyNewValue); | |
1157 x_get_window_property (display, window, property, | |
1158 &tmp_data, &tmp_size_bytes, | |
1159 type_ret, format_ret, size_ret, 1); | |
1160 | |
1161 if (tmp_size_bytes == 0) /* we're done */ | |
1162 { | |
1163 #if 0 | |
1164 stderr_out (" read INCR done\n"); | |
1165 #endif | |
1166 unexpect_property_change (prop_id); | |
1726 | 1167 if (tmp_data) |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
1168 xfree (tmp_data); |
428 | 1169 break; |
1170 } | |
1171 #if 0 | |
1172 stderr_out (" read INCR %d\n", tmp_size_bytes); | |
1173 #endif | |
1174 if (*size_bytes_ret < offset + tmp_size_bytes) | |
1175 { | |
1176 #if 0 | |
1177 stderr_out (" read INCR realloc %d -> %d\n", | |
1178 *size_bytes_ret, offset + tmp_size_bytes); | |
1179 #endif | |
1180 *size_bytes_ret = offset + tmp_size_bytes; | |
2367 | 1181 *data_ret = (Rawbyte *) xrealloc (*data_ret, *size_bytes_ret); |
428 | 1182 } |
1183 memcpy ((*data_ret) + offset, tmp_data, tmp_size_bytes); | |
1184 offset += tmp_size_bytes; | |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
1185 xfree (tmp_data); |
428 | 1186 } |
1187 } | |
1188 | |
1189 | |
1190 static Lisp_Object | |
1191 x_get_window_property_as_lisp_data (Display *display, | |
1192 Window window, | |
1193 Atom property, | |
1194 /* next two for error messages only */ | |
1195 Lisp_Object target_type, | |
1196 Atom selection_atom) | |
1197 { | |
1198 /* This function can GC */ | |
1199 Atom actual_type; | |
1200 int actual_format; | |
1201 unsigned long actual_size; | |
2367 | 1202 Rawbyte *data = NULL; |
665 | 1203 Bytecount bytes = 0; |
428 | 1204 Lisp_Object val; |
1205 struct device *d = get_device_from_display (display); | |
1206 | |
1207 x_get_window_property (display, window, property, &data, &bytes, | |
1208 &actual_type, &actual_format, &actual_size, 1); | |
1209 if (! data) | |
1210 { | |
1211 if (XGetSelectionOwner (display, selection_atom)) | |
1212 /* there is a selection owner */ | |
563 | 1213 signal_error (Qselection_conversion_error, |
1214 "selection owner couldn't convert", | |
1215 Fcons (Qunbound, | |
1216 Fcons (x_atom_to_symbol (d, selection_atom), | |
1217 actual_type ? | |
1218 list2 (target_type, | |
1219 x_atom_to_symbol (d, actual_type)) : | |
1220 list1 (target_type)))); | |
428 | 1221 else |
563 | 1222 signal_error (Qselection_conversion_error, |
1223 "no selection", | |
1224 x_atom_to_symbol (d, selection_atom)); | |
428 | 1225 } |
1226 | |
1227 if (actual_type == DEVICE_XATOM_INCR (d)) | |
1228 { | |
1229 /* Ok, that data wasn't *the* data, it was just the beginning. */ | |
1230 | |
665 | 1231 Bytecount min_size_bytes = |
647 | 1232 /* careful here. */ |
665 | 1233 (Bytecount) (* ((unsigned int *) data)); |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
1234 xfree (data); |
428 | 1235 receive_incremental_selection (display, window, property, target_type, |
1236 min_size_bytes, &data, &bytes, | |
1237 &actual_type, &actual_format, | |
1238 &actual_size); | |
1239 } | |
1240 | |
1241 /* It's been read. Now convert it to a lisp object in some semi-rational | |
1242 manner. */ | |
1243 val = selection_data_to_lisp_data (d, data, bytes, | |
1244 actual_type, actual_format); | |
1245 | |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
1246 xfree (data); |
428 | 1247 return val; |
1248 } | |
1249 | |
1250 | |
1251 /* Called from the event loop to handle SelectionNotify events. | |
1252 I don't think this needs to be reentrant. | |
1253 */ | |
1254 void | |
1255 x_handle_selection_notify (XSelectionEvent *event) | |
1256 { | |
1257 if (! reading_selection_reply) | |
1258 message ("received an unexpected SelectionNotify event"); | |
1259 else if (event->requestor != reading_selection_reply) | |
1260 message ("received a SelectionNotify event for the wrong window"); | |
1261 else if (event->selection != reading_which_selection) | |
1262 message ("received the wrong selection type in SelectionNotify!"); | |
1263 else | |
1264 reading_selection_reply = 0; /* we're done now. */ | |
1265 } | |
1266 | |
1267 static void | |
1268 x_disown_selection (Lisp_Object selection, Lisp_Object timeval) | |
1269 { | |
1270 struct device *d = decode_x_device (Qnil); | |
1271 Display *display = DEVICE_X_DISPLAY (d); | |
1272 Time timestamp; | |
1273 Atom selection_atom; | |
1274 | |
1275 CHECK_SYMBOL (selection); | |
1276 if (NILP (timeval)) | |
1277 timestamp = DEVICE_X_MOUSE_TIMESTAMP (d); | |
1278 else | |
1279 { | |
1280 /* #### This is bogus. See the comment above about problems | |
1281 on OSF/1 and DEC Alphas. Yet another reason why it sucks | |
1282 to have the implementation (i.e. cons of two 16-bit | |
1283 integers) exposed. */ | |
1284 time_t the_time; | |
1285 lisp_to_time (timeval, &the_time); | |
1286 timestamp = (Time) the_time; | |
1287 } | |
1288 | |
1289 selection_atom = symbol_to_x_atom (d, selection, 0); | |
1290 | |
1291 XSetSelectionOwner (display, selection_atom, None, timestamp); | |
1292 } | |
1293 | |
1294 static Lisp_Object | |
442 | 1295 x_selection_exists_p (Lisp_Object selection, |
2286 | 1296 Lisp_Object UNUSED (selection_type)) |
428 | 1297 { |
1298 struct device *d = decode_x_device (Qnil); | |
1299 Display *dpy = DEVICE_X_DISPLAY (d); | |
1300 return XGetSelectionOwner (dpy, symbol_to_x_atom (d, selection, 0)) != None ? | |
1301 Qt : Qnil; | |
1302 } | |
1303 | |
1304 | |
1305 #ifdef CUT_BUFFER_SUPPORT | |
1306 | |
1307 static int cut_buffers_initialized; /* Whether we're sure they all exist */ | |
1308 | |
1309 /* Ensure that all 8 cut buffers exist. ICCCM says we gotta... */ | |
1310 static void | |
1311 initialize_cut_buffers (Display *display, Window window) | |
1312 { | |
442 | 1313 static unsigned const char * const data = (unsigned const char *) ""; |
428 | 1314 #define FROB(atom) XChangeProperty (display, window, atom, XA_STRING, 8, \ |
1315 PropModeAppend, data, 0) | |
1316 FROB (XA_CUT_BUFFER0); | |
1317 FROB (XA_CUT_BUFFER1); | |
1318 FROB (XA_CUT_BUFFER2); | |
1319 FROB (XA_CUT_BUFFER3); | |
1320 FROB (XA_CUT_BUFFER4); | |
1321 FROB (XA_CUT_BUFFER5); | |
1322 FROB (XA_CUT_BUFFER6); | |
1323 FROB (XA_CUT_BUFFER7); | |
1324 #undef FROB | |
1325 cut_buffers_initialized = 1; | |
1326 } | |
1327 | |
1328 #define CHECK_CUTBUFFER(symbol) do { \ | |
1329 CHECK_SYMBOL (symbol); \ | |
1330 if (! (EQ (symbol, QCUT_BUFFER0) || \ | |
1331 EQ (symbol, QCUT_BUFFER1) || \ | |
1332 EQ (symbol, QCUT_BUFFER2) || \ | |
1333 EQ (symbol, QCUT_BUFFER3) || \ | |
1334 EQ (symbol, QCUT_BUFFER4) || \ | |
1335 EQ (symbol, QCUT_BUFFER5) || \ | |
1336 EQ (symbol, QCUT_BUFFER6) || \ | |
1337 EQ (symbol, QCUT_BUFFER7))) \ | |
563 | 1338 invalid_constant ("Doesn't name a cutbuffer", symbol); \ |
428 | 1339 } while (0) |
1340 | |
1341 DEFUN ("x-get-cutbuffer-internal", Fx_get_cutbuffer_internal, 1, 1, 0, /* | |
1342 Return the value of the named CUTBUFFER (typically CUT_BUFFER0). | |
1343 */ | |
1344 (cutbuffer)) | |
1345 { | |
1346 struct device *d = decode_x_device (Qnil); | |
1347 Display *display = DEVICE_X_DISPLAY (d); | |
1348 Window window = RootWindow (display, 0); /* Cutbuffers are on frame 0 */ | |
1349 Atom cut_buffer_atom; | |
2367 | 1350 Rawbyte *data; |
665 | 1351 Bytecount bytes; |
428 | 1352 Atom type; |
1353 int format; | |
1354 unsigned long size; | |
1355 Lisp_Object ret; | |
1356 | |
1357 CHECK_CUTBUFFER (cutbuffer); | |
1358 cut_buffer_atom = symbol_to_x_atom (d, cutbuffer, 0); | |
1359 | |
1360 x_get_window_property (display, window, cut_buffer_atom, &data, &bytes, | |
1361 &type, &format, &size, 0); | |
1362 if (!data) return Qnil; | |
1363 | |
1364 if (format != 8 || type != XA_STRING) | |
563 | 1365 invalid_state_2 ("Cut buffer doesn't contain 8-bit STRING data", |
1366 x_atom_to_symbol (d, type), | |
1367 make_int (format)); | |
428 | 1368 |
1369 /* We cheat - if the string contains an ESC character, that's | |
1370 technically not allowed in a STRING, so we assume it's | |
1371 COMPOUND_TEXT that we stored there ourselves earlier, | |
1372 in x-store-cutbuffer-internal */ | |
1373 ret = (bytes ? | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
3833
diff
changeset
|
1374 make_extstring ((Extbyte *) data, bytes, |
428 | 1375 memchr (data, 0x1b, bytes) ? |
440 | 1376 Qctext : Qbinary) |
428 | 1377 : Qnil); |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
1378 xfree (data); |
428 | 1379 return ret; |
1380 } | |
1381 | |
1382 | |
1383 DEFUN ("x-store-cutbuffer-internal", Fx_store_cutbuffer_internal, 2, 2, 0, /* | |
1384 Set the value of the named CUTBUFFER (typically CUT_BUFFER0) to STRING. | |
1385 */ | |
1386 (cutbuffer, string)) | |
1387 { | |
1388 struct device *d = decode_x_device (Qnil); | |
1389 Display *display = DEVICE_X_DISPLAY (d); | |
1390 Window window = RootWindow (display, 0); /* Cutbuffers are on frame 0 */ | |
1391 Atom cut_buffer_atom; | |
867 | 1392 const Ibyte *data = XSTRING_DATA (string); |
444 | 1393 Bytecount bytes = XSTRING_LENGTH (string); |
1394 Bytecount bytes_remaining; | |
665 | 1395 Bytecount max_bytes = SELECTION_QUANTUM (display); |
428 | 1396 #ifdef MULE |
867 | 1397 const Ibyte *ptr, *end; |
428 | 1398 enum { ASCII, LATIN_1, WORLD } chartypes = ASCII; |
1399 #endif | |
1400 | |
1401 if (max_bytes > MAX_SELECTION_QUANTUM) | |
1402 max_bytes = MAX_SELECTION_QUANTUM; | |
1403 | |
1404 CHECK_CUTBUFFER (cutbuffer); | |
1405 CHECK_STRING (string); | |
1406 cut_buffer_atom = symbol_to_x_atom (d, cutbuffer, 0); | |
1407 | |
1408 if (! cut_buffers_initialized) | |
1409 initialize_cut_buffers (display, window); | |
1410 | |
1411 /* We use the STRING encoding (Latin-1 only) if we can, else COMPOUND_TEXT. | |
1412 We cheat and use type = `STRING' even when using COMPOUND_TEXT. | |
1413 The ICCCM requires that this be so, and other clients assume it, | |
1414 as we do ourselves in initialize_cut_buffers. */ | |
1415 | |
1416 #ifdef MULE | |
1417 /* Optimize for the common ASCII case */ | |
1418 for (ptr = data, end = ptr + bytes; ptr <= end; ) | |
1419 { | |
826 | 1420 if (byte_ascii_p (*ptr)) |
428 | 1421 { |
1422 ptr++; | |
1423 continue; | |
1424 } | |
1425 | |
1426 if ((*ptr) == LEADING_BYTE_LATIN_ISO8859_1 || | |
1427 (*ptr) == LEADING_BYTE_CONTROL_1) | |
1428 { | |
1429 chartypes = LATIN_1; | |
1430 ptr += 2; | |
1431 continue; | |
1432 } | |
1433 | |
1434 chartypes = WORLD; | |
1435 break; | |
1436 } | |
1437 | |
1438 if (chartypes == LATIN_1) | |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
1439 LISP_STRING_TO_SIZED_EXTERNAL (string, data, bytes, Qbinary); |
428 | 1440 else if (chartypes == WORLD) |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
1441 LISP_STRING_TO_SIZED_EXTERNAL (string, data, bytes, Qctext); |
428 | 1442 #endif /* MULE */ |
1443 | |
1444 bytes_remaining = bytes; | |
1445 | |
1446 while (bytes_remaining) | |
1447 { | |
665 | 1448 Bytecount chunk = |
647 | 1449 bytes_remaining < max_bytes ? bytes_remaining : max_bytes; |
428 | 1450 XChangeProperty (display, window, cut_buffer_atom, XA_STRING, 8, |
1451 (bytes_remaining == bytes | |
1452 ? PropModeReplace : PropModeAppend), | |
1453 data, chunk); | |
1454 data += chunk; | |
1455 bytes_remaining -= chunk; | |
1456 } | |
1457 return string; | |
1458 } | |
1459 | |
1460 | |
1461 DEFUN ("x-rotate-cutbuffers-internal", Fx_rotate_cutbuffers_internal, 1, 1, 0, /* | |
1462 Rotate the values of the cutbuffers by the given number of steps; | |
1463 positive means move values forward, negative means backward. | |
1464 */ | |
1465 (n)) | |
1466 { | |
1467 struct device *d = decode_x_device (Qnil); | |
1468 Display *display = DEVICE_X_DISPLAY (d); | |
1469 Window window = RootWindow (display, 0); /* Cutbuffers are on frame 0 */ | |
1470 Atom props [8]; | |
1471 | |
1472 CHECK_INT (n); | |
1473 if (XINT (n) == 0) | |
1474 return n; | |
1475 if (! cut_buffers_initialized) | |
1476 initialize_cut_buffers (display, window); | |
1477 props[0] = XA_CUT_BUFFER0; | |
1478 props[1] = XA_CUT_BUFFER1; | |
1479 props[2] = XA_CUT_BUFFER2; | |
1480 props[3] = XA_CUT_BUFFER3; | |
1481 props[4] = XA_CUT_BUFFER4; | |
1482 props[5] = XA_CUT_BUFFER5; | |
1483 props[6] = XA_CUT_BUFFER6; | |
1484 props[7] = XA_CUT_BUFFER7; | |
1485 XRotateWindowProperties (display, window, props, 8, XINT (n)); | |
1486 return n; | |
1487 } | |
1488 | |
1489 #endif /* CUT_BUFFER_SUPPORT */ | |
1490 | |
1491 | |
1492 | |
1493 /************************************************************************/ | |
1494 /* initialization */ | |
1495 /************************************************************************/ | |
1496 | |
1497 void | |
440 | 1498 syms_of_select_x (void) |
428 | 1499 { |
1500 | |
1501 #ifdef CUT_BUFFER_SUPPORT | |
1502 DEFSUBR (Fx_get_cutbuffer_internal); | |
1503 DEFSUBR (Fx_store_cutbuffer_internal); | |
1504 DEFSUBR (Fx_rotate_cutbuffers_internal); | |
1505 #endif /* CUT_BUFFER_SUPPORT */ | |
1506 | |
1507 /* Unfortunately, timeout handlers must be lisp functions. */ | |
563 | 1508 DEFSYMBOL (Qx_selection_reply_timeout_internal); |
428 | 1509 DEFSUBR (Fx_selection_reply_timeout_internal); |
1510 | |
1511 #ifdef CUT_BUFFER_SUPPORT | |
1512 defsymbol (&QCUT_BUFFER0, "CUT_BUFFER0"); | |
1513 defsymbol (&QCUT_BUFFER1, "CUT_BUFFER1"); | |
1514 defsymbol (&QCUT_BUFFER2, "CUT_BUFFER2"); | |
1515 defsymbol (&QCUT_BUFFER3, "CUT_BUFFER3"); | |
1516 defsymbol (&QCUT_BUFFER4, "CUT_BUFFER4"); | |
1517 defsymbol (&QCUT_BUFFER5, "CUT_BUFFER5"); | |
1518 defsymbol (&QCUT_BUFFER6, "CUT_BUFFER6"); | |
1519 defsymbol (&QCUT_BUFFER7, "CUT_BUFFER7"); | |
1520 #endif /* CUT_BUFFER_SUPPORT */ | |
1521 } | |
1522 | |
1523 void | |
1524 console_type_create_select_x (void) | |
1525 { | |
1526 CONSOLE_HAS_METHOD (x, own_selection); | |
1527 CONSOLE_HAS_METHOD (x, disown_selection); | |
1528 CONSOLE_HAS_METHOD (x, get_foreign_selection); | |
1529 CONSOLE_HAS_METHOD (x, selection_exists_p); | |
1530 } | |
1531 | |
1532 void | |
440 | 1533 reinit_vars_of_select_x (void) |
428 | 1534 { |
1535 reading_selection_reply = 0; | |
1536 reading_which_selection = 0; | |
1537 selection_reply_timed_out = 0; | |
1538 for_whom_the_bell_tolls = 0; | |
1539 prop_location_tick = 0; | |
1540 } | |
1541 | |
1542 void | |
440 | 1543 vars_of_select_x (void) |
428 | 1544 { |
1545 #ifdef CUT_BUFFER_SUPPORT | |
1546 cut_buffers_initialized = 0; | |
1547 Fprovide (intern ("cut-buffer")); | |
1548 #endif | |
1549 | |
1550 DEFVAR_LISP ("x-sent-selection-hooks", &Vx_sent_selection_hooks /* | |
1551 A function or functions to be called after we have responded to some | |
1552 other client's request for the value of a selection that we own. The | |
1553 function(s) will be called with four arguments: | |
1554 - the name of the selection (typically PRIMARY, SECONDARY, or CLIPBOARD); | |
1555 - the name of the selection-type which we were requested to convert the | |
1556 selection into before sending (for example, STRING or LENGTH); | |
1557 - and whether we successfully transmitted the selection. | |
1558 We might have failed (and declined the request) for any number of reasons, | |
1559 including being asked for a selection that we no longer own, or being asked | |
1560 to convert into a type that we don't know about or that is inappropriate. | |
1561 This hook doesn't let you change the behavior of emacs's selection replies, | |
1562 it merely informs you that they have happened. | |
1563 */ ); | |
1564 Vx_sent_selection_hooks = Qunbound; | |
1565 | |
1566 DEFVAR_INT ("x-selection-timeout", &x_selection_timeout /* | |
1567 If the selection owner doesn't reply in this many seconds, we give up. | |
1568 A value of 0 means wait as long as necessary. This is initialized from the | |
1569 \"*selectionTimeout\" resource (which is expressed in milliseconds). | |
1570 */ ); | |
1571 x_selection_timeout = 0; | |
456 | 1572 |
1573 DEFVAR_BOOL ("x-selection-strict-motif-ownership", &x_selection_strict_motif_ownership /* | |
863 | 1574 *If nil and XEmacs already owns the clipboard, don't own it again in the |
456 | 1575 Motif way. Owning the selection on the Motif way does a huge amount of |
1576 X protocol, and it makes killing text incredibly slow when using an | |
1577 X terminal. However, when enabled Motif text fields don't bother to look up | |
1578 the new value, and you can't Copy from a buffer, Paste into a text | |
1579 field, then Copy something else from the buffer and paste it into the | |
1580 text field; it pastes the first thing again. | |
1581 */ ); | |
1582 x_selection_strict_motif_ownership = 1; | |
428 | 1583 } |
1584 | |
1585 void | |
440 | 1586 Xatoms_of_select_x (struct device *d) |
428 | 1587 { |
1588 Display *D = DEVICE_X_DISPLAY (d); | |
1589 | |
1590 /* Non-predefined atoms that we might end up using a lot */ | |
1591 DEVICE_XATOM_CLIPBOARD (d) = XInternAtom (D, "CLIPBOARD", False); | |
1592 DEVICE_XATOM_TIMESTAMP (d) = XInternAtom (D, "TIMESTAMP", False); | |
1593 DEVICE_XATOM_TEXT (d) = XInternAtom (D, "TEXT", False); | |
1594 DEVICE_XATOM_DELETE (d) = XInternAtom (D, "DELETE", False); | |
1595 DEVICE_XATOM_MULTIPLE (d) = XInternAtom (D, "MULTIPLE", False); | |
1596 DEVICE_XATOM_INCR (d) = XInternAtom (D, "INCR", False); | |
1597 DEVICE_XATOM_TARGETS (d) = XInternAtom (D, "TARGETS", False); | |
1598 DEVICE_XATOM_NULL (d) = XInternAtom (D, "NULL", False); | |
1599 DEVICE_XATOM_ATOM_PAIR (d) = XInternAtom (D, "ATOM_PAIR", False); | |
1600 DEVICE_XATOM_COMPOUND_TEXT (d) = XInternAtom (D, "COMPOUND_TEXT", False); | |
442 | 1601 |
1602 /* #### I don't like the looks of this... what is it for? - ajh */ | |
428 | 1603 DEVICE_XATOM_EMACS_TMP (d) = XInternAtom (D, "_EMACS_TMP_", False); |
1604 } |