Mercurial > emacs
annotate src/xselect.c @ 4733:4d378f483cf4
Set up keymap at load time.
(iso-accents-mode): Not here. Just setq iso-accents-minor-mode.
(iso-accents-minor-mode): Make it local in all buffers.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 17 Sep 1993 16:49:28 +0000 |
parents | 1fc792473491 |
children | 69078817ec92 |
rev | line source |
---|---|
2161 | 1 /* X Selection processing for emacs |
2961 | 2 Copyright (C) 1993 Free Software Foundation. |
2161 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
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 2, or (at your option) | |
9 any later version. | |
10 | |
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. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
2961 | 20 /* x_handle_selection_notify |
3492
3e75726d76c7
(x_get_foreign_selection): Handle x_selection_timeout
Richard M. Stallman <rms@gnu.org>
parents:
3473
diff
changeset
|
21 x_reply_selection_request */ |
3e75726d76c7
(x_get_foreign_selection): Handle x_selection_timeout
Richard M. Stallman <rms@gnu.org>
parents:
3473
diff
changeset
|
22 |
2961 | 23 |
2161 | 24 /* Rewritten by jwz */ |
25 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4636
diff
changeset
|
26 #include <config.h> |
2161 | 27 #include "lisp.h" |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
28 #if 0 |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
29 #include <stdio.h> /* termhooks.h needs this */ |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
30 #include "termhooks.h" |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
31 #endif |
2161 | 32 #include "xterm.h" /* for all of the X includes */ |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
33 #include "dispextern.h" /* frame.h seems to want this */ |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
34 #include "frame.h" /* Need this to get the X window of selected_frame */ |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2372
diff
changeset
|
35 #include "blockinput.h" |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
36 |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
37 #define xfree free |
2161 | 38 |
39 #define CUT_BUFFER_SUPPORT | |
40 | |
41 static Atom Xatom_CLIPBOARD, Xatom_TIMESTAMP, Xatom_TEXT, Xatom_DELETE, | |
42 Xatom_MULTIPLE, Xatom_INCR, Xatom_EMACS_TMP, Xatom_TARGETS, Xatom_NULL, | |
43 Xatom_ATOM_PAIR; | |
44 | |
45 Lisp_Object QPRIMARY, QSECONDARY, QSTRING, QINTEGER, QCLIPBOARD, QTIMESTAMP, | |
46 QTEXT, QDELETE, QMULTIPLE, QINCR, QEMACS_TMP, QTARGETS, QATOM, QNULL, | |
47 QATOM_PAIR; | |
48 | |
49 #ifdef CUT_BUFFER_SUPPORT | |
50 Lisp_Object QCUT_BUFFER0, QCUT_BUFFER1, QCUT_BUFFER2, QCUT_BUFFER3, | |
51 QCUT_BUFFER4, QCUT_BUFFER5, QCUT_BUFFER6, QCUT_BUFFER7; | |
52 #endif | |
53 | |
54 Lisp_Object Vx_lost_selection_hooks; | |
55 Lisp_Object Vx_sent_selection_hooks; | |
56 | |
57 /* If this is a smaller number than the max-request-size of the display, | |
58 emacs will use INCR selection transfer when the selection is larger | |
59 than this. The max-request-size is usually around 64k, so if you want | |
60 emacs to use incremental selection transfers when the selection is | |
61 smaller than that, set this. I added this mostly for debugging the | |
62 incremental transfer stuff, but it might improve server performance. | |
63 */ | |
64 #define MAX_SELECTION_QUANTUM 0xFFFFFF | |
65 | |
2372
ad7cb938ae08
* xselect.c (SELECTION_QUANTUM): Don't use XMaxRequestSize on R3;
Jim Blandy <jimb@redhat.com>
parents:
2255
diff
changeset
|
66 #ifdef HAVE_X11R4 |
ad7cb938ae08
* xselect.c (SELECTION_QUANTUM): Don't use XMaxRequestSize on R3;
Jim Blandy <jimb@redhat.com>
parents:
2255
diff
changeset
|
67 #define SELECTION_QUANTUM(dpy) ((XMaxRequestSize(dpy) << 2) - 100) |
ad7cb938ae08
* xselect.c (SELECTION_QUANTUM): Don't use XMaxRequestSize on R3;
Jim Blandy <jimb@redhat.com>
parents:
2255
diff
changeset
|
68 #else |
ad7cb938ae08
* xselect.c (SELECTION_QUANTUM): Don't use XMaxRequestSize on R3;
Jim Blandy <jimb@redhat.com>
parents:
2255
diff
changeset
|
69 #define SELECTION_QUANTUM(dpy) (((dpy)->max_request_size << 2) - 100) |
ad7cb938ae08
* xselect.c (SELECTION_QUANTUM): Don't use XMaxRequestSize on R3;
Jim Blandy <jimb@redhat.com>
parents:
2255
diff
changeset
|
70 #endif |
2161 | 71 |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
72 /* The timestamp of the last input event Emacs received from the X server. */ |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
73 unsigned long last_event_timestamp; |
2161 | 74 |
75 /* This is an association list whose elements are of the form | |
76 ( selection-name selection-value selection-timestamp ) | |
77 selection-name is a lisp symbol, whose name is the name of an X Atom. | |
78 selection-value is the value that emacs owns for that selection. | |
79 It may be any kind of Lisp object. | |
80 selection-timestamp is the time at which emacs began owning this selection, | |
81 as a cons of two 16-bit numbers (making a 32 bit time.) | |
82 If there is an entry in this alist, then it can be assumed that emacs owns | |
83 that selection. | |
84 The only (eq) parts of this list that are visible from Lisp are the | |
85 selection-values. | |
86 */ | |
87 Lisp_Object Vselection_alist; | |
88 | |
89 /* This is an alist whose CARs are selection-types (whose names are the same | |
90 as the names of X Atoms) and whose CDRs are the names of Lisp functions to | |
91 call to convert the given Emacs selection value to a string representing | |
92 the given selection type. This is for Lisp-level extension of the emacs | |
93 selection handling. | |
94 */ | |
95 Lisp_Object Vselection_converter_alist; | |
96 | |
97 /* If the selection owner takes too long to reply to a selection request, | |
3492
3e75726d76c7
(x_get_foreign_selection): Handle x_selection_timeout
Richard M. Stallman <rms@gnu.org>
parents:
3473
diff
changeset
|
98 we give up on it. This is in milliseconds (0 = no timeout.) |
2161 | 99 */ |
100 int x_selection_timeout; | |
101 | |
102 | |
103 /* Utility functions */ | |
104 | |
105 static void lisp_data_to_selection_data (); | |
106 static Lisp_Object selection_data_to_lisp_data (); | |
107 static Lisp_Object x_get_window_property_as_lisp_data (); | |
108 | |
109 /* This converts a Lisp symbol to a server Atom, avoiding a server | |
110 roundtrip whenever possible. */ | |
111 | |
112 static Atom | |
113 symbol_to_x_atom (display, sym) | |
114 Display *display; | |
115 Lisp_Object sym; | |
116 { | |
117 Atom val; | |
118 if (NILP (sym)) return 0; | |
119 if (EQ (sym, QPRIMARY)) return XA_PRIMARY; | |
120 if (EQ (sym, QSECONDARY)) return XA_SECONDARY; | |
121 if (EQ (sym, QSTRING)) return XA_STRING; | |
122 if (EQ (sym, QINTEGER)) return XA_INTEGER; | |
123 if (EQ (sym, QATOM)) return XA_ATOM; | |
124 if (EQ (sym, QCLIPBOARD)) return Xatom_CLIPBOARD; | |
125 if (EQ (sym, QTIMESTAMP)) return Xatom_TIMESTAMP; | |
126 if (EQ (sym, QTEXT)) return Xatom_TEXT; | |
127 if (EQ (sym, QDELETE)) return Xatom_DELETE; | |
128 if (EQ (sym, QMULTIPLE)) return Xatom_MULTIPLE; | |
129 if (EQ (sym, QINCR)) return Xatom_INCR; | |
130 if (EQ (sym, QEMACS_TMP)) return Xatom_EMACS_TMP; | |
131 if (EQ (sym, QTARGETS)) return Xatom_TARGETS; | |
132 if (EQ (sym, QNULL)) return Xatom_NULL; | |
133 #ifdef CUT_BUFFER_SUPPORT | |
134 if (EQ (sym, QCUT_BUFFER0)) return XA_CUT_BUFFER0; | |
135 if (EQ (sym, QCUT_BUFFER1)) return XA_CUT_BUFFER1; | |
136 if (EQ (sym, QCUT_BUFFER2)) return XA_CUT_BUFFER2; | |
137 if (EQ (sym, QCUT_BUFFER3)) return XA_CUT_BUFFER3; | |
138 if (EQ (sym, QCUT_BUFFER4)) return XA_CUT_BUFFER4; | |
139 if (EQ (sym, QCUT_BUFFER5)) return XA_CUT_BUFFER5; | |
140 if (EQ (sym, QCUT_BUFFER6)) return XA_CUT_BUFFER6; | |
141 if (EQ (sym, QCUT_BUFFER7)) return XA_CUT_BUFFER7; | |
142 #endif | |
143 if (!SYMBOLP (sym)) abort (); | |
144 | |
145 #if 0 | |
146 fprintf (stderr, " XInternAtom %s\n", (char *) XSYMBOL (sym)->name->data); | |
147 #endif | |
148 BLOCK_INPUT; | |
149 val = XInternAtom (display, (char *) XSYMBOL (sym)->name->data, False); | |
150 UNBLOCK_INPUT; | |
151 return val; | |
152 } | |
153 | |
154 | |
155 /* This converts a server Atom to a Lisp symbol, avoiding server roundtrips | |
156 and calls to intern whenever possible. */ | |
157 | |
158 static Lisp_Object | |
159 x_atom_to_symbol (display, atom) | |
160 Display *display; | |
161 Atom atom; | |
162 { | |
163 char *str; | |
164 Lisp_Object val; | |
165 if (! atom) return Qnil; | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
166 switch (atom) |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
167 { |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
168 case XA_PRIMARY: |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
169 return QPRIMARY; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
170 case XA_SECONDARY: |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
171 return QSECONDARY; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
172 case XA_STRING: |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
173 return QSTRING; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
174 case XA_INTEGER: |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
175 return QINTEGER; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
176 case XA_ATOM: |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
177 return QATOM; |
2161 | 178 #ifdef CUT_BUFFER_SUPPORT |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
179 case XA_CUT_BUFFER0: |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
180 return QCUT_BUFFER0; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
181 case XA_CUT_BUFFER1: |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
182 return QCUT_BUFFER1; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
183 case XA_CUT_BUFFER2: |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
184 return QCUT_BUFFER2; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
185 case XA_CUT_BUFFER3: |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
186 return QCUT_BUFFER3; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
187 case XA_CUT_BUFFER4: |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
188 return QCUT_BUFFER4; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
189 case XA_CUT_BUFFER5: |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
190 return QCUT_BUFFER5; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
191 case XA_CUT_BUFFER6: |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
192 return QCUT_BUFFER6; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
193 case XA_CUT_BUFFER7: |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
194 return QCUT_BUFFER7; |
2161 | 195 #endif |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
196 } |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
197 |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
198 if (atom == Xatom_CLIPBOARD) |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
199 return QCLIPBOARD; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
200 if (atom == Xatom_TIMESTAMP) |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
201 return QTIMESTAMP; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
202 if (atom == Xatom_TEXT) |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
203 return QTEXT; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
204 if (atom == Xatom_DELETE) |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
205 return QDELETE; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
206 if (atom == Xatom_MULTIPLE) |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
207 return QMULTIPLE; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
208 if (atom == Xatom_INCR) |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
209 return QINCR; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
210 if (atom == Xatom_EMACS_TMP) |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
211 return QEMACS_TMP; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
212 if (atom == Xatom_TARGETS) |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
213 return QTARGETS; |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
214 if (atom == Xatom_NULL) |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
215 return QNULL; |
2161 | 216 |
217 BLOCK_INPUT; | |
218 str = XGetAtomName (display, atom); | |
219 UNBLOCK_INPUT; | |
220 #if 0 | |
221 fprintf (stderr, " XGetAtomName --> %s\n", str); | |
222 #endif | |
223 if (! str) return Qnil; | |
224 val = intern (str); | |
225 BLOCK_INPUT; | |
226 XFree (str); | |
227 UNBLOCK_INPUT; | |
228 return val; | |
229 } | |
2255
ff870650d188
(cons_to_long, long_to_cons): No longer static.
Richard M. Stallman <rms@gnu.org>
parents:
2169
diff
changeset
|
230 |
2161 | 231 /* Do protocol to assert ourself as a selection owner. |
232 Update the Vselection_alist so that we can reply to later requests for | |
233 our selection. */ | |
234 | |
235 static void | |
236 x_own_selection (selection_name, selection_value) | |
237 Lisp_Object selection_name, selection_value; | |
238 { | |
239 Display *display = x_current_display; | |
240 #ifdef X_TOOLKIT | |
241 Window selecting_window = XtWindow (selected_screen->display.x->edit_widget); | |
242 #else | |
243 Window selecting_window = FRAME_X_WINDOW (selected_frame); | |
244 #endif | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
245 Time time = last_event_timestamp; |
2161 | 246 Atom selection_atom; |
247 | |
248 CHECK_SYMBOL (selection_name, 0); | |
249 selection_atom = symbol_to_x_atom (display, selection_name); | |
250 | |
251 BLOCK_INPUT; | |
252 XSetSelectionOwner (display, selection_atom, selecting_window, time); | |
253 UNBLOCK_INPUT; | |
254 | |
255 /* Now update the local cache */ | |
256 { | |
257 Lisp_Object selection_time; | |
258 Lisp_Object selection_data; | |
259 Lisp_Object prev_value; | |
260 | |
261 selection_time = long_to_cons ((unsigned long) time); | |
262 selection_data = Fcons (selection_name, | |
263 Fcons (selection_value, | |
264 Fcons (selection_time, Qnil))); | |
265 prev_value = assq_no_quit (selection_name, Vselection_alist); | |
266 | |
267 Vselection_alist = Fcons (selection_data, Vselection_alist); | |
268 | |
269 /* If we already owned the selection, remove the old selection data. | |
270 Perhaps we should destructively modify it instead. | |
271 Don't use Fdelq as that may QUIT. */ | |
272 if (!NILP (prev_value)) | |
273 { | |
274 Lisp_Object rest; /* we know it's not the CAR, so it's easy. */ | |
275 for (rest = Vselection_alist; !NILP (rest); rest = Fcdr (rest)) | |
276 if (EQ (prev_value, Fcar (XCONS (rest)->cdr))) | |
277 { | |
278 XCONS (rest)->cdr = Fcdr (XCONS (rest)->cdr); | |
279 break; | |
280 } | |
281 } | |
282 } | |
283 } | |
284 | |
285 /* Given a selection-name and desired type, look up our local copy of | |
286 the selection value and convert it to the type. | |
287 The value is nil or a string. | |
288 This function is used both for remote requests | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
289 and for local x-get-selection-internal. |
2161 | 290 |
291 This calls random Lisp code, and may signal or gc. */ | |
292 | |
293 static Lisp_Object | |
294 x_get_local_selection (selection_symbol, target_type) | |
295 Lisp_Object selection_symbol, target_type; | |
296 { | |
297 Lisp_Object local_value; | |
298 Lisp_Object handler_fn, value, type, check; | |
299 int count; | |
300 | |
301 local_value = assq_no_quit (selection_symbol, Vselection_alist); | |
302 | |
303 if (NILP (local_value)) return Qnil; | |
304 | |
305 /* TIMESTAMP and MULTIPLE are special cases 'cause that's easiest. */ | |
306 if (EQ (target_type, QTIMESTAMP)) | |
307 { | |
308 handler_fn = Qnil; | |
309 value = XCONS (XCONS (XCONS (local_value)->cdr)->cdr)->car; | |
310 } | |
311 #if 0 | |
312 else if (EQ (target_type, QDELETE)) | |
313 { | |
314 handler_fn = Qnil; | |
315 Fx_disown_selection_internal | |
316 (selection_symbol, | |
317 XCONS (XCONS (XCONS (local_value)->cdr)->cdr)->car); | |
318 value = QNULL; | |
319 } | |
320 #endif | |
321 | |
322 #if 0 /* #### MULTIPLE doesn't work yet */ | |
323 else if (CONSP (target_type) | |
324 && XCONS (target_type)->car == QMULTIPLE) | |
325 { | |
326 Lisp_Object pairs = XCONS (target_type)->cdr; | |
327 int size = XVECTOR (pairs)->size; | |
328 int i; | |
329 /* If the target is MULTIPLE, then target_type looks like | |
330 (MULTIPLE . [[SELECTION1 TARGET1] [SELECTION2 TARGET2] ... ]) | |
331 We modify the second element of each pair in the vector and | |
332 return it as [[SELECTION1 <value1>] [SELECTION2 <value2>] ... ] | |
333 */ | |
334 for (i = 0; i < size; i++) | |
335 { | |
336 Lisp_Object pair = XVECTOR (pairs)->contents [i]; | |
337 XVECTOR (pair)->contents [1] | |
338 = x_get_local_selection (XVECTOR (pair)->contents [0], | |
339 XVECTOR (pair)->contents [1]); | |
340 } | |
341 return pairs; | |
342 } | |
343 #endif | |
344 else | |
345 { | |
346 /* Don't allow a quit within the converter. | |
347 When the user types C-g, he would be surprised | |
348 if by luck it came during a converter. */ | |
349 count = specpdl_ptr - specpdl; | |
350 specbind (Qinhibit_quit, Qt); | |
351 | |
352 CHECK_SYMBOL (target_type, 0); | |
353 handler_fn = Fcdr (Fassq (target_type, Vselection_converter_alist)); | |
3166
419d3bf1cb2b
(x_get_local_selection): If no conversion function
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
354 if (!NILP (handler_fn)) |
419d3bf1cb2b
(x_get_local_selection): If no conversion function
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
355 value = call3 (handler_fn, |
419d3bf1cb2b
(x_get_local_selection): If no conversion function
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
356 selection_symbol, target_type, |
419d3bf1cb2b
(x_get_local_selection): If no conversion function
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
357 XCONS (XCONS (local_value)->cdr)->car); |
419d3bf1cb2b
(x_get_local_selection): If no conversion function
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
358 else |
419d3bf1cb2b
(x_get_local_selection): If no conversion function
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
359 value = Qnil; |
2161 | 360 unbind_to (count, Qnil); |
361 } | |
362 | |
363 /* Make sure this value is of a type that we could transmit | |
364 to another X client. */ | |
2169 | 365 |
2161 | 366 check = value; |
367 if (CONSP (value) | |
368 && SYMBOLP (XCONS (value)->car)) | |
369 type = XCONS (value)->car, | |
370 check = XCONS (value)->cdr; | |
371 | |
372 if (STRINGP (check) | |
373 || VECTORP (check) | |
374 || SYMBOLP (check) | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
375 || INTEGERP (check) |
2161 | 376 || NILP (value)) |
377 return value; | |
2169 | 378 /* Check for a value that cons_to_long could handle. */ |
2161 | 379 else if (CONSP (check) |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
380 && INTEGERP (XCONS (check)->car) |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
381 && (INTEGERP (XCONS (check)->cdr) |
2161 | 382 || |
383 (CONSP (XCONS (check)->cdr) | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
384 && INTEGERP (XCONS (XCONS (check)->cdr)->car) |
2161 | 385 && NILP (XCONS (XCONS (check)->cdr)->cdr)))) |
386 return value; | |
387 else | |
388 return | |
389 Fsignal (Qerror, | |
2169 | 390 Fcons (build_string ("invalid data returned by selection-conversion function"), |
2161 | 391 Fcons (handler_fn, Fcons (value, Qnil)))); |
392 } | |
393 | |
394 /* Subroutines of x_reply_selection_request. */ | |
395 | |
396 /* Send a SelectionNotify event to the requestor with property=None, | |
397 meaning we were unable to do what they wanted. */ | |
398 | |
399 static void | |
400 x_decline_selection_request (event) | |
401 struct input_event *event; | |
402 { | |
403 XSelectionEvent reply; | |
404 reply.type = SelectionNotify; | |
405 reply.display = SELECTION_EVENT_DISPLAY (event); | |
406 reply.requestor = SELECTION_EVENT_REQUESTOR (event); | |
407 reply.selection = SELECTION_EVENT_SELECTION (event); | |
408 reply.time = SELECTION_EVENT_TIME (event); | |
409 reply.target = SELECTION_EVENT_TARGET (event); | |
410 reply.property = None; | |
411 | |
412 BLOCK_INPUT; | |
413 (void) XSendEvent (reply.display, reply.requestor, False, 0L, | |
414 (XEvent *) &reply); | |
415 UNBLOCK_INPUT; | |
416 } | |
417 | |
418 /* This is the selection request currently being processed. | |
419 It is set to zero when the request is fully processed. */ | |
420 static struct input_event *x_selection_current_request; | |
421 | |
422 /* Used as an unwind-protect clause so that, if a selection-converter signals | |
423 an error, we tell the requestor that we were unable to do what they wanted | |
424 before we throw to top-level or go into the debugger or whatever. */ | |
425 | |
426 static Lisp_Object | |
427 x_selection_request_lisp_error (ignore) | |
428 Lisp_Object ignore; | |
429 { | |
430 if (x_selection_current_request != 0) | |
431 x_decline_selection_request (x_selection_current_request); | |
432 return Qnil; | |
433 } | |
434 | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
435 |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
436 /* This stuff is so that INCR selections are reentrant (that is, so we can |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
437 be servicing multiple INCR selection requests simultaneously.) I haven't |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
438 actually tested that yet. */ |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
439 |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
440 /* Keep a list of the property changes that are awaited. */ |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
441 |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
442 struct prop_location |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
443 { |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
444 int identifier; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
445 Display *display; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
446 Window window; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
447 Atom property; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
448 int desired_state; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
449 int arrived; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
450 struct prop_location *next; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
451 }; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
452 |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
453 static struct prop_location *expect_property_change (); |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
454 static void wait_for_property_change (); |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
455 static void unexpect_property_change (); |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
456 static int waiting_for_other_props_on_window (); |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
457 |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
458 static int prop_location_identifier; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
459 |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
460 static Lisp_Object property_change_reply; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
461 |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
462 static struct prop_location *property_change_reply_object; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
463 |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
464 static struct prop_location *property_change_wait_list; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
465 |
2161 | 466 /* Send the reply to a selection request event EVENT. |
467 TYPE is the type of selection data requested. | |
468 DATA and SIZE describe the data to send, already converted. | |
469 FORMAT is the unit-size (in bits) of the data to be transmitted. */ | |
470 | |
471 static void | |
472 x_reply_selection_request (event, format, data, size, type) | |
473 struct input_event *event; | |
474 int format, size; | |
475 unsigned char *data; | |
476 Atom type; | |
477 { | |
478 XSelectionEvent reply; | |
479 Display *display = SELECTION_EVENT_DISPLAY (event); | |
480 Window window = SELECTION_EVENT_REQUESTOR (event); | |
481 int bytes_remaining; | |
482 int format_bytes = format/8; | |
483 int max_bytes = SELECTION_QUANTUM (display); | |
484 | |
485 if (max_bytes > MAX_SELECTION_QUANTUM) | |
486 max_bytes = MAX_SELECTION_QUANTUM; | |
487 | |
488 reply.type = SelectionNotify; | |
489 reply.display = display; | |
490 reply.requestor = window; | |
491 reply.selection = SELECTION_EVENT_SELECTION (event); | |
492 reply.time = SELECTION_EVENT_TIME (event); | |
493 reply.target = SELECTION_EVENT_TARGET (event); | |
494 reply.property = SELECTION_EVENT_PROPERTY (event); | |
495 if (reply.property == None) | |
496 reply.property = reply.target; | |
497 | |
498 /* #### XChangeProperty can generate BadAlloc, and we must handle it! */ | |
499 | |
500 /* Store the data on the requested property. | |
501 If the selection is large, only store the first N bytes of it. | |
502 */ | |
503 bytes_remaining = size * format_bytes; | |
504 if (bytes_remaining <= max_bytes) | |
505 { | |
506 /* Send all the data at once, with minimal handshaking. */ | |
507 #if 0 | |
508 fprintf (stderr,"\nStoring all %d\n", bytes_remaining); | |
509 #endif | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
510 BLOCK_INPUT; |
2161 | 511 XChangeProperty (display, window, reply.property, type, format, |
512 PropModeReplace, data, size); | |
513 /* At this point, the selection was successfully stored; ack it. */ | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
514 XSendEvent (display, window, False, 0L, (XEvent *) &reply); |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
515 XFlushQueue (); |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
516 UNBLOCK_INPUT; |
2161 | 517 } |
518 else | |
519 { | |
520 /* Send an INCR selection. */ | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
521 struct prop_location *wait_object; |
2161 | 522 |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
523 BLOCK_INPUT; |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
524 |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
525 if (x_window_to_frame (window)) /* #### debug */ |
2161 | 526 error ("attempt to transfer an INCR to ourself!"); |
527 #if 0 | |
528 fprintf (stderr, "\nINCR %d\n", bytes_remaining); | |
529 #endif | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
530 wait_object = expect_property_change (display, window, reply.property, |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
531 PropertyDelete); |
2161 | 532 |
533 XChangeProperty (display, window, reply.property, Xatom_INCR, | |
534 32, PropModeReplace, (unsigned char *) | |
535 &bytes_remaining, 1); | |
536 XSelectInput (display, window, PropertyChangeMask); | |
537 /* Tell 'em the INCR data is there... */ | |
538 (void) XSendEvent (display, window, False, 0L, (XEvent *) &reply); | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
539 XFlushQueue (); |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
540 UNBLOCK_INPUT; |
2161 | 541 |
542 /* First, wait for the requestor to ack by deleting the property. | |
543 This can run random lisp code (process handlers) or signal. */ | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
544 wait_for_property_change (wait_object); |
2161 | 545 |
546 while (bytes_remaining) | |
547 { | |
548 int i = ((bytes_remaining < max_bytes) | |
549 ? bytes_remaining | |
550 : max_bytes); | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
551 |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
552 BLOCK_INPUT; |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
553 |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
554 wait_object |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
555 = expect_property_change (display, window, reply.property, |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
556 PropertyDelete); |
2161 | 557 #if 0 |
558 fprintf (stderr," INCR adding %d\n", i); | |
559 #endif | |
560 /* Append the next chunk of data to the property. */ | |
561 XChangeProperty (display, window, reply.property, type, format, | |
562 PropModeAppend, data, i / format_bytes); | |
563 bytes_remaining -= i; | |
564 data += i; | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
565 XFlushQueue (); |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
566 UNBLOCK_INPUT; |
2161 | 567 |
568 /* Now wait for the requestor to ack this chunk by deleting the | |
569 property. This can run random lisp code or signal. | |
570 */ | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
571 wait_for_property_change (wait_object); |
2161 | 572 } |
573 /* Now write a zero-length chunk to the property to tell the requestor | |
574 that we're done. */ | |
575 #if 0 | |
576 fprintf (stderr," INCR done\n"); | |
577 #endif | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
578 BLOCK_INPUT; |
2161 | 579 if (! waiting_for_other_props_on_window (display, window)) |
580 XSelectInput (display, window, 0L); | |
581 | |
582 XChangeProperty (display, window, reply.property, type, format, | |
583 PropModeReplace, data, 0); | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
584 XFlushQueue (); |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
585 UNBLOCK_INPUT; |
2161 | 586 } |
587 } | |
588 | |
589 /* Handle a SelectionRequest event EVENT. | |
590 This is called from keyboard.c when such an event is found in the queue. */ | |
591 | |
592 void | |
593 x_handle_selection_request (event) | |
594 struct input_event *event; | |
595 { | |
596 struct gcpro gcpro1, gcpro2, gcpro3; | |
597 Lisp_Object local_selection_data = Qnil; | |
598 Lisp_Object selection_symbol; | |
599 Lisp_Object target_symbol = Qnil; | |
600 Lisp_Object converted_selection = Qnil; | |
601 Time local_selection_time; | |
602 Lisp_Object successful_p = Qnil; | |
603 int count; | |
604 | |
605 GCPRO3 (local_selection_data, converted_selection, target_symbol); | |
606 | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
607 selection_symbol = x_atom_to_symbol (SELECTION_EVENT_DISPLAY (event), |
2161 | 608 SELECTION_EVENT_SELECTION (event)); |
609 | |
610 local_selection_data = assq_no_quit (selection_symbol, Vselection_alist); | |
611 | |
612 if (NILP (local_selection_data)) | |
613 { | |
614 /* Someone asked for the selection, but we don't have it any more. | |
615 */ | |
616 x_decline_selection_request (event); | |
617 goto DONE; | |
618 } | |
619 | |
620 local_selection_time = (Time) | |
621 cons_to_long (XCONS (XCONS (XCONS (local_selection_data)->cdr)->cdr)->car); | |
622 | |
623 if (SELECTION_EVENT_TIME (event) != CurrentTime | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
624 && local_selection_time > SELECTION_EVENT_TIME (event)) |
2161 | 625 { |
626 /* Someone asked for the selection, and we have one, but not the one | |
627 they're looking for. | |
628 */ | |
629 x_decline_selection_request (event); | |
630 goto DONE; | |
631 } | |
632 | |
633 count = specpdl_ptr - specpdl; | |
634 x_selection_current_request = event; | |
635 record_unwind_protect (x_selection_request_lisp_error, Qnil); | |
636 | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
637 target_symbol = x_atom_to_symbol (SELECTION_EVENT_DISPLAY (event), |
2161 | 638 SELECTION_EVENT_TARGET (event)); |
639 | |
640 #if 0 /* #### MULTIPLE doesn't work yet */ | |
641 if (EQ (target_symbol, QMULTIPLE)) | |
642 target_symbol = fetch_multiple_target (event); | |
643 #endif | |
644 | |
645 /* Convert lisp objects back into binary data */ | |
646 | |
647 converted_selection | |
648 = x_get_local_selection (selection_symbol, target_symbol); | |
649 | |
650 if (! NILP (converted_selection)) | |
651 { | |
652 unsigned char *data; | |
653 unsigned int size; | |
654 int format; | |
655 Atom type; | |
4278
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
656 int nofree; |
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
657 |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
658 lisp_data_to_selection_data (SELECTION_EVENT_DISPLAY (event), |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
659 converted_selection, |
4278
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
660 &data, &type, &size, &format, &nofree); |
2161 | 661 |
662 x_reply_selection_request (event, format, data, size, type); | |
663 successful_p = Qt; | |
664 | |
665 /* Indicate we have successfully processed this event. */ | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
666 x_selection_current_request = 0; |
2161 | 667 |
4278
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
668 if (!nofree) |
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
669 xfree (data); |
2161 | 670 } |
671 unbind_to (count, Qnil); | |
672 | |
673 DONE: | |
674 | |
675 UNGCPRO; | |
676 | |
677 /* Let random lisp code notice that the selection has been asked for. */ | |
678 { | |
679 Lisp_Object rest = Vx_sent_selection_hooks; | |
680 if (!EQ (rest, Qunbound)) | |
681 for (; CONSP (rest); rest = Fcdr (rest)) | |
682 call3 (Fcar (rest), selection_symbol, target_symbol, successful_p); | |
683 } | |
684 } | |
685 | |
686 /* Handle a SelectionClear event EVENT, which indicates that some other | |
687 client cleared out our previously asserted selection. | |
688 This is called from keyboard.c when such an event is found in the queue. */ | |
689 | |
690 void | |
691 x_handle_selection_clear (event) | |
692 struct input_event *event; | |
693 { | |
694 Display *display = SELECTION_EVENT_DISPLAY (event); | |
695 Atom selection = SELECTION_EVENT_SELECTION (event); | |
696 Time changed_owner_time = SELECTION_EVENT_TIME (event); | |
697 | |
698 Lisp_Object selection_symbol, local_selection_data; | |
699 Time local_selection_time; | |
700 | |
701 selection_symbol = x_atom_to_symbol (display, selection); | |
702 | |
703 local_selection_data = assq_no_quit (selection_symbol, Vselection_alist); | |
704 | |
705 /* Well, we already believe that we don't own it, so that's just fine. */ | |
706 if (NILP (local_selection_data)) return; | |
707 | |
708 local_selection_time = (Time) | |
709 cons_to_long (XCONS (XCONS (XCONS (local_selection_data)->cdr)->cdr)->car); | |
710 | |
711 /* This SelectionClear is for a selection that we no longer own, so we can | |
712 disregard it. (That is, we have reasserted the selection since this | |
713 request was generated.) */ | |
714 | |
715 if (changed_owner_time != CurrentTime | |
716 && local_selection_time > changed_owner_time) | |
717 return; | |
718 | |
719 /* Otherwise, we're really honest and truly being told to drop it. | |
720 Don't use Fdelq as that may QUIT;. */ | |
721 | |
722 if (EQ (local_selection_data, Fcar (Vselection_alist))) | |
723 Vselection_alist = Fcdr (Vselection_alist); | |
724 else | |
725 { | |
726 Lisp_Object rest; | |
727 for (rest = Vselection_alist; !NILP (rest); rest = Fcdr (rest)) | |
728 if (EQ (local_selection_data, Fcar (XCONS (rest)->cdr))) | |
729 { | |
730 XCONS (rest)->cdr = Fcdr (XCONS (rest)->cdr); | |
731 break; | |
732 } | |
733 } | |
734 | |
735 /* Let random lisp code notice that the selection has been stolen. */ | |
736 | |
737 { | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
738 Lisp_Object rest; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
739 rest = Vx_lost_selection_hooks; |
2161 | 740 if (!EQ (rest, Qunbound)) |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
741 { |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
742 for (; CONSP (rest); rest = Fcdr (rest)) |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
743 call1 (Fcar (rest), selection_symbol); |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
744 redisplay_preserve_echo_area (); |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
745 } |
2161 | 746 } |
747 } | |
748 | |
749 | |
750 /* Nonzero if any properties for DISPLAY and WINDOW | |
751 are on the list of what we are waiting for. */ | |
752 | |
753 static int | |
754 waiting_for_other_props_on_window (display, window) | |
755 Display *display; | |
756 Window window; | |
757 { | |
758 struct prop_location *rest = property_change_wait_list; | |
759 while (rest) | |
760 if (rest->display == display && rest->window == window) | |
761 return 1; | |
762 else | |
763 rest = rest->next; | |
764 return 0; | |
765 } | |
766 | |
767 /* Add an entry to the list of property changes we are waiting for. | |
768 DISPLAY, WINDOW, PROPERTY, STATE describe what we will wait for. | |
769 The return value is a number that uniquely identifies | |
770 this awaited property change. */ | |
771 | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
772 static struct prop_location * |
2161 | 773 expect_property_change (display, window, property, state) |
774 Display *display; | |
775 Window window; | |
776 Lisp_Object property; | |
777 int state; | |
778 { | |
779 struct prop_location *pl | |
780 = (struct prop_location *) xmalloc (sizeof (struct prop_location)); | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
781 pl->identifier = ++prop_location_identifier; |
2161 | 782 pl->display = display; |
783 pl->window = window; | |
784 pl->property = property; | |
785 pl->desired_state = state; | |
786 pl->next = property_change_wait_list; | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
787 pl->arrived = 0; |
2161 | 788 property_change_wait_list = pl; |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
789 return pl; |
2161 | 790 } |
791 | |
792 /* Delete an entry from the list of property changes we are waiting for. | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
793 IDENTIFIER is the number that uniquely identifies the entry. */ |
2161 | 794 |
795 static void | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
796 unexpect_property_change (location) |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
797 struct prop_location *location; |
2161 | 798 { |
799 struct prop_location *prev = 0, *rest = property_change_wait_list; | |
800 while (rest) | |
801 { | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
802 if (rest == location) |
2161 | 803 { |
804 if (prev) | |
805 prev->next = rest->next; | |
806 else | |
807 property_change_wait_list = rest->next; | |
808 xfree (rest); | |
809 return; | |
810 } | |
811 prev = rest; | |
812 rest = rest->next; | |
813 } | |
814 } | |
815 | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
816 /* Remove the property change expectation element for IDENTIFIER. */ |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
817 |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
818 static Lisp_Object |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
819 wait_for_property_change_unwind (identifierval) |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
820 Lisp_Object identifierval; |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
821 { |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
822 unexpect_property_change (XPNTR (identifierval)); |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
823 } |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
824 |
2161 | 825 /* Actually wait for a property change. |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
826 IDENTIFIER should be the value that expect_property_change returned. */ |
2161 | 827 |
828 static void | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
829 wait_for_property_change (location) |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
830 struct prop_location *location; |
2161 | 831 { |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
832 int secs, usecs; |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
833 int count = specpdl_ptr - specpdl; |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
834 Lisp_Object tem; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
835 |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
836 XSET (tem, Lisp_Cons, location); |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
837 |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
838 /* Make sure to do unexpect_property_change if we quit or err. */ |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
839 record_unwind_protect (wait_for_property_change_unwind, tem); |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
840 |
2161 | 841 XCONS (property_change_reply)->car = Qnil; |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
842 |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
843 if (! location->arrived) |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
844 { |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
845 property_change_reply_object = location; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
846 secs = x_selection_timeout / 1000; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
847 usecs = (x_selection_timeout % 1000) * 1000; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
848 wait_reading_process_input (secs, usecs, property_change_reply, 0); |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
849 |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
850 if (NILP (XCONS (property_change_reply)->car)) |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
851 error ("timed out waiting for property-notify event"); |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
852 } |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
853 |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
854 unbind_to (count, Qnil); |
2161 | 855 } |
856 | |
857 /* Called from XTread_socket in response to a PropertyNotify event. */ | |
858 | |
859 void | |
860 x_handle_property_notify (event) | |
861 XPropertyEvent *event; | |
862 { | |
863 struct prop_location *prev = 0, *rest = property_change_wait_list; | |
864 while (rest) | |
865 { | |
866 if (rest->property == event->atom | |
867 && rest->window == event->window | |
868 && rest->display == event->display | |
869 && rest->desired_state == event->state) | |
870 { | |
871 #if 0 | |
872 fprintf (stderr, "Saw expected prop-%s on %s\n", | |
873 (event->state == PropertyDelete ? "delete" : "change"), | |
874 (char *) XSYMBOL (x_atom_to_symbol (event->display, | |
875 event->atom)) | |
876 ->name->data); | |
877 #endif | |
878 | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
879 rest->arrived = 1; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
880 |
2161 | 881 /* If this is the one wait_for_property_change is waiting for, |
882 tell it to wake up. */ | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
883 if (rest == property_change_reply_object) |
2161 | 884 XCONS (property_change_reply)->car = Qt; |
885 | |
886 if (prev) | |
887 prev->next = rest->next; | |
888 else | |
889 property_change_wait_list = rest->next; | |
890 xfree (rest); | |
891 return; | |
892 } | |
893 prev = rest; | |
894 rest = rest->next; | |
895 } | |
896 #if 0 | |
897 fprintf (stderr, "Saw UNexpected prop-%s on %s\n", | |
898 (event->state == PropertyDelete ? "delete" : "change"), | |
899 (char *) XSYMBOL (x_atom_to_symbol (event->display, event->atom)) | |
900 ->name->data); | |
901 #endif | |
902 } | |
903 | |
904 | |
905 | |
906 #if 0 /* #### MULTIPLE doesn't work yet */ | |
907 | |
908 static Lisp_Object | |
909 fetch_multiple_target (event) | |
910 XSelectionRequestEvent *event; | |
911 { | |
912 Display *display = event->display; | |
913 Window window = event->requestor; | |
914 Atom target = event->target; | |
915 Atom selection_atom = event->selection; | |
916 int result; | |
917 | |
918 return | |
919 Fcons (QMULTIPLE, | |
920 x_get_window_property_as_lisp_data (display, window, target, | |
921 QMULTIPLE, selection_atom)); | |
922 } | |
923 | |
924 static Lisp_Object | |
925 copy_multiple_data (obj) | |
926 Lisp_Object obj; | |
927 { | |
928 Lisp_Object vec; | |
929 int i; | |
930 int size; | |
931 if (CONSP (obj)) | |
932 return Fcons (XCONS (obj)->car, copy_multiple_data (XCONS (obj)->cdr)); | |
933 | |
934 CHECK_VECTOR (obj, 0); | |
935 vec = Fmake_vector (size = XVECTOR (obj)->size, Qnil); | |
936 for (i = 0; i < size; i++) | |
937 { | |
938 Lisp_Object vec2 = XVECTOR (obj)->contents [i]; | |
939 CHECK_VECTOR (vec2, 0); | |
940 if (XVECTOR (vec2)->size != 2) | |
941 /* ??? Confusing error message */ | |
942 Fsignal (Qerror, Fcons (build_string ("vectors must be of length 2"), | |
943 Fcons (vec2, Qnil))); | |
944 XVECTOR (vec)->contents [i] = Fmake_vector (2, Qnil); | |
945 XVECTOR (XVECTOR (vec)->contents [i])->contents [0] | |
946 = XVECTOR (vec2)->contents [0]; | |
947 XVECTOR (XVECTOR (vec)->contents [i])->contents [1] | |
948 = XVECTOR (vec2)->contents [1]; | |
949 } | |
950 return vec; | |
951 } | |
952 | |
953 #endif | |
954 | |
955 | |
956 /* Variables for communication with x_handle_selection_notify. */ | |
957 static Atom reading_which_selection; | |
958 static Lisp_Object reading_selection_reply; | |
959 static Window reading_selection_window; | |
960 | |
961 /* Do protocol to read selection-data from the server. | |
962 Converts this to Lisp data and returns it. */ | |
963 | |
964 static Lisp_Object | |
965 x_get_foreign_selection (selection_symbol, target_type) | |
966 Lisp_Object selection_symbol, target_type; | |
967 { | |
968 Display *display = x_current_display; | |
969 #ifdef X_TOOLKIT | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
970 Window requestor_window = XtWindow (selected_screen->display.x->edit_widget); |
2161 | 971 #else |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
972 Window requestor_window = FRAME_X_WINDOW (selected_frame); |
2161 | 973 #endif |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
974 Time requestor_time = last_event_timestamp; |
2161 | 975 Atom target_property = Xatom_EMACS_TMP; |
976 Atom selection_atom = symbol_to_x_atom (display, selection_symbol); | |
977 Atom type_atom; | |
3492
3e75726d76c7
(x_get_foreign_selection): Handle x_selection_timeout
Richard M. Stallman <rms@gnu.org>
parents:
3473
diff
changeset
|
978 int secs, usecs; |
2161 | 979 |
980 if (CONSP (target_type)) | |
981 type_atom = symbol_to_x_atom (display, XCONS (target_type)->car); | |
982 else | |
983 type_atom = symbol_to_x_atom (display, target_type); | |
984 | |
985 BLOCK_INPUT; | |
986 XConvertSelection (display, selection_atom, type_atom, target_property, | |
987 requestor_window, requestor_time); | |
2169 | 988 XFlushQueue (); |
2161 | 989 |
990 /* Prepare to block until the reply has been read. */ | |
991 reading_selection_window = requestor_window; | |
992 reading_which_selection = selection_atom; | |
993 XCONS (reading_selection_reply)->car = Qnil; | |
994 UNBLOCK_INPUT; | |
995 | |
3492
3e75726d76c7
(x_get_foreign_selection): Handle x_selection_timeout
Richard M. Stallman <rms@gnu.org>
parents:
3473
diff
changeset
|
996 /* This allows quits. Also, don't wait forever. */ |
3e75726d76c7
(x_get_foreign_selection): Handle x_selection_timeout
Richard M. Stallman <rms@gnu.org>
parents:
3473
diff
changeset
|
997 secs = x_selection_timeout / 1000; |
3e75726d76c7
(x_get_foreign_selection): Handle x_selection_timeout
Richard M. Stallman <rms@gnu.org>
parents:
3473
diff
changeset
|
998 usecs = (x_selection_timeout % 1000) * 1000; |
3e75726d76c7
(x_get_foreign_selection): Handle x_selection_timeout
Richard M. Stallman <rms@gnu.org>
parents:
3473
diff
changeset
|
999 wait_reading_process_input (secs, usecs, reading_selection_reply, 0); |
2161 | 1000 |
1001 if (NILP (XCONS (reading_selection_reply)->car)) | |
1002 error ("timed out waiting for reply from selection owner"); | |
1003 | |
1004 /* Otherwise, the selection is waiting for us on the requested property. */ | |
1005 return | |
1006 x_get_window_property_as_lisp_data (display, requestor_window, | |
1007 target_property, target_type, | |
1008 selection_atom); | |
1009 } | |
1010 | |
1011 /* Subroutines of x_get_window_property_as_lisp_data */ | |
1012 | |
1013 static void | |
1014 x_get_window_property (display, window, property, data_ret, bytes_ret, | |
1015 actual_type_ret, actual_format_ret, actual_size_ret, | |
1016 delete_p) | |
1017 Display *display; | |
1018 Window window; | |
1019 Atom property; | |
1020 unsigned char **data_ret; | |
1021 int *bytes_ret; | |
1022 Atom *actual_type_ret; | |
1023 int *actual_format_ret; | |
1024 unsigned long *actual_size_ret; | |
1025 int delete_p; | |
1026 { | |
1027 int total_size; | |
1028 unsigned long bytes_remaining; | |
1029 int offset = 0; | |
1030 unsigned char *tmp_data = 0; | |
1031 int result; | |
1032 int buffer_size = SELECTION_QUANTUM (display); | |
1033 if (buffer_size > MAX_SELECTION_QUANTUM) buffer_size = MAX_SELECTION_QUANTUM; | |
1034 | |
1035 BLOCK_INPUT; | |
1036 /* First probe the thing to find out how big it is. */ | |
1037 result = XGetWindowProperty (display, window, property, | |
1038 0, 0, False, AnyPropertyType, | |
1039 actual_type_ret, actual_format_ret, | |
1040 actual_size_ret, | |
1041 &bytes_remaining, &tmp_data); | |
1042 if (result != Success) | |
1043 { | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1044 UNBLOCK_INPUT; |
2161 | 1045 *data_ret = 0; |
1046 *bytes_ret = 0; | |
1047 return; | |
1048 } | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1049 xfree ((char *) tmp_data); |
2161 | 1050 |
1051 if (*actual_type_ret == None || *actual_format_ret == 0) | |
1052 { | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1053 UNBLOCK_INPUT; |
2161 | 1054 return; |
1055 } | |
1056 | |
1057 total_size = bytes_remaining + 1; | |
1058 *data_ret = (unsigned char *) xmalloc (total_size); | |
1059 | |
1060 /* Now read, until weve gotten it all. */ | |
1061 while (bytes_remaining) | |
1062 { | |
1063 #if 0 | |
1064 int last = bytes_remaining; | |
1065 #endif | |
1066 result | |
1067 = XGetWindowProperty (display, window, property, | |
1068 offset/4, buffer_size/4, | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1069 False, |
2161 | 1070 AnyPropertyType, |
1071 actual_type_ret, actual_format_ret, | |
1072 actual_size_ret, &bytes_remaining, &tmp_data); | |
1073 #if 0 | |
1074 fprintf (stderr, "<< read %d\n", last-bytes_remaining); | |
1075 #endif | |
1076 /* If this doesn't return Success at this point, it means that | |
1077 some clod deleted the selection while we were in the midst of | |
1078 reading it. Deal with that, I guess.... | |
1079 */ | |
1080 if (result != Success) break; | |
1081 *actual_size_ret *= *actual_format_ret / 8; | |
1082 bcopy (tmp_data, (*data_ret) + offset, *actual_size_ret); | |
1083 offset += *actual_size_ret; | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1084 xfree ((char *) tmp_data); |
2161 | 1085 } |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1086 |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1087 XFlushQueue (); |
2161 | 1088 UNBLOCK_INPUT; |
1089 *bytes_ret = offset; | |
1090 } | |
1091 | |
1092 static void | |
1093 receive_incremental_selection (display, window, property, target_type, | |
1094 min_size_bytes, data_ret, size_bytes_ret, | |
1095 type_ret, format_ret, size_ret) | |
1096 Display *display; | |
1097 Window window; | |
1098 Atom property; | |
1099 Lisp_Object target_type; /* for error messages only */ | |
1100 unsigned int min_size_bytes; | |
1101 unsigned char **data_ret; | |
1102 int *size_bytes_ret; | |
1103 Atom *type_ret; | |
1104 unsigned long *size_ret; | |
1105 int *format_ret; | |
1106 { | |
1107 int offset = 0; | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1108 struct prop_location *wait_object; |
2161 | 1109 *size_bytes_ret = min_size_bytes; |
1110 *data_ret = (unsigned char *) xmalloc (*size_bytes_ret); | |
1111 #if 0 | |
1112 fprintf (stderr, "\nread INCR %d\n", min_size_bytes); | |
1113 #endif | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1114 |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1115 /* At this point, we have read an INCR property. |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1116 Delete the property to ack it. |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1117 (But first, prepare to receive the next event in this handshake.) |
2161 | 1118 |
1119 Now, we must loop, waiting for the sending window to put a value on | |
1120 that property, then reading the property, then deleting it to ack. | |
1121 We are done when the sender places a property of length 0. | |
1122 */ | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1123 BLOCK_INPUT; |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1124 XSelectInput (display, window, STANDARD_EVENT_SET | PropertyChangeMask); |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1125 XDeleteProperty (display, window, property); |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1126 wait_object = expect_property_change (display, window, property, |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1127 PropertyNewValue); |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1128 XFlushQueue (); |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1129 UNBLOCK_INPUT; |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1130 |
2161 | 1131 while (1) |
1132 { | |
1133 unsigned char *tmp_data; | |
1134 int tmp_size_bytes; | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1135 wait_for_property_change (wait_object); |
2161 | 1136 /* expect it again immediately, because x_get_window_property may |
1137 .. no it wont, I dont get it. | |
1138 .. Ok, I get it now, the Xt code that implements INCR is broken. | |
1139 */ | |
1140 x_get_window_property (display, window, property, | |
1141 &tmp_data, &tmp_size_bytes, | |
1142 type_ret, format_ret, size_ret, 1); | |
1143 | |
1144 if (tmp_size_bytes == 0) /* we're done */ | |
1145 { | |
1146 #if 0 | |
1147 fprintf (stderr, " read INCR done\n"); | |
1148 #endif | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1149 if (! waiting_for_other_props_on_window (display, window)) |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1150 XSelectInput (display, window, STANDARD_EVENT_SET); |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1151 unexpect_property_change (wait_object); |
2161 | 1152 if (tmp_data) xfree (tmp_data); |
1153 break; | |
1154 } | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1155 |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1156 BLOCK_INPUT; |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1157 XDeleteProperty (display, window, property); |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1158 wait_object = expect_property_change (display, window, property, |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1159 PropertyNewValue); |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1160 XFlushQueue (); |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1161 UNBLOCK_INPUT; |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1162 |
2161 | 1163 #if 0 |
1164 fprintf (stderr, " read INCR %d\n", tmp_size_bytes); | |
1165 #endif | |
1166 if (*size_bytes_ret < offset + tmp_size_bytes) | |
1167 { | |
1168 #if 0 | |
1169 fprintf (stderr, " read INCR realloc %d -> %d\n", | |
1170 *size_bytes_ret, offset + tmp_size_bytes); | |
1171 #endif | |
1172 *size_bytes_ret = offset + tmp_size_bytes; | |
1173 *data_ret = (unsigned char *) xrealloc (*data_ret, *size_bytes_ret); | |
1174 } | |
4547
3bd8248cc191
(receive_incremental_selection): Use bcopy, not memcpy.
Richard M. Stallman <rms@gnu.org>
parents:
4373
diff
changeset
|
1175 bcopy (tmp_data, (*data_ret) + offset, tmp_size_bytes); |
2161 | 1176 offset += tmp_size_bytes; |
1177 xfree (tmp_data); | |
1178 } | |
1179 } | |
1180 | |
1181 /* Once a requested selection is "ready" (we got a SelectionNotify event), | |
1182 fetch value from property PROPERTY of X window WINDOW on display DISPLAY. | |
1183 TARGET_TYPE and SELECTION_ATOM are used in error message if this fails. */ | |
1184 | |
1185 static Lisp_Object | |
1186 x_get_window_property_as_lisp_data (display, window, property, target_type, | |
1187 selection_atom) | |
1188 Display *display; | |
1189 Window window; | |
1190 Atom property; | |
1191 Lisp_Object target_type; /* for error messages only */ | |
1192 Atom selection_atom; /* for error messages only */ | |
1193 { | |
1194 Atom actual_type; | |
1195 int actual_format; | |
1196 unsigned long actual_size; | |
1197 unsigned char *data = 0; | |
1198 int bytes = 0; | |
1199 Lisp_Object val; | |
1200 | |
1201 x_get_window_property (display, window, property, &data, &bytes, | |
1202 &actual_type, &actual_format, &actual_size, 1); | |
1203 if (! data) | |
1204 { | |
1205 int there_is_a_selection_owner; | |
1206 BLOCK_INPUT; | |
1207 there_is_a_selection_owner | |
1208 = XGetSelectionOwner (display, selection_atom); | |
1209 UNBLOCK_INPUT; | |
1210 while (1) /* Note debugger can no longer return, so this is obsolete */ | |
1211 Fsignal (Qerror, | |
1212 there_is_a_selection_owner ? | |
1213 Fcons (build_string ("selection owner couldn't convert"), | |
1214 actual_type | |
1215 ? Fcons (target_type, | |
1216 Fcons (x_atom_to_symbol (display, actual_type), | |
1217 Qnil)) | |
1218 : Fcons (target_type, Qnil)) | |
1219 : Fcons (build_string ("no selection"), | |
1220 Fcons (x_atom_to_symbol (display, selection_atom), | |
1221 Qnil))); | |
1222 } | |
1223 | |
1224 if (actual_type == Xatom_INCR) | |
1225 { | |
1226 /* That wasn't really the data, just the beginning. */ | |
1227 | |
1228 unsigned int min_size_bytes = * ((unsigned int *) data); | |
1229 BLOCK_INPUT; | |
1230 XFree ((char *) data); | |
1231 UNBLOCK_INPUT; | |
1232 receive_incremental_selection (display, window, property, target_type, | |
1233 min_size_bytes, &data, &bytes, | |
1234 &actual_type, &actual_format, | |
1235 &actual_size); | |
1236 } | |
1237 | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1238 BLOCK_INPUT; |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1239 XDeleteProperty (display, window, property); |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1240 XFlushQueue (); |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1241 UNBLOCK_INPUT; |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1242 |
2161 | 1243 /* It's been read. Now convert it to a lisp object in some semi-rational |
1244 manner. */ | |
1245 val = selection_data_to_lisp_data (display, data, bytes, | |
1246 actual_type, actual_format); | |
1247 | |
1248 xfree ((char *) data); | |
1249 return val; | |
1250 } | |
1251 | |
1252 /* These functions convert from the selection data read from the server into | |
1253 something that we can use from Lisp, and vice versa. | |
1254 | |
1255 Type: Format: Size: Lisp Type: | |
1256 ----- ------- ----- ----------- | |
1257 * 8 * String | |
1258 ATOM 32 1 Symbol | |
1259 ATOM 32 > 1 Vector of Symbols | |
1260 * 16 1 Integer | |
1261 * 16 > 1 Vector of Integers | |
1262 * 32 1 if <=16 bits: Integer | |
1263 if > 16 bits: Cons of top16, bot16 | |
1264 * 32 > 1 Vector of the above | |
1265 | |
1266 When converting a Lisp number to C, it is assumed to be of format 16 if | |
1267 it is an integer, and of format 32 if it is a cons of two integers. | |
1268 | |
1269 When converting a vector of numbers from Lisp to C, it is assumed to be | |
1270 of format 16 if every element in the vector is an integer, and is assumed | |
1271 to be of format 32 if any element is a cons of two integers. | |
1272 | |
1273 When converting an object to C, it may be of the form (SYMBOL . <data>) | |
1274 where SYMBOL is what we should claim that the type is. Format and | |
1275 representation are as above. */ | |
1276 | |
1277 | |
1278 | |
1279 static Lisp_Object | |
1280 selection_data_to_lisp_data (display, data, size, type, format) | |
1281 Display *display; | |
1282 unsigned char *data; | |
1283 Atom type; | |
1284 int size, format; | |
1285 { | |
1286 | |
1287 if (type == Xatom_NULL) | |
1288 return QNULL; | |
1289 | |
1290 /* Convert any 8-bit data to a string, for compactness. */ | |
1291 else if (format == 8) | |
1292 return make_string ((char *) data, size); | |
1293 | |
1294 /* Convert a single atom to a Lisp_Symbol. Convert a set of atoms to | |
1295 a vector of symbols. | |
1296 */ | |
1297 else if (type == XA_ATOM) | |
1298 { | |
1299 int i; | |
1300 if (size == sizeof (Atom)) | |
1301 return x_atom_to_symbol (display, *((Atom *) data)); | |
1302 else | |
1303 { | |
1304 Lisp_Object v = Fmake_vector (size / sizeof (Atom), 0); | |
1305 for (i = 0; i < size / sizeof (Atom); i++) | |
1306 Faset (v, i, x_atom_to_symbol (display, ((Atom *) data) [i])); | |
1307 return v; | |
1308 } | |
1309 } | |
1310 | |
1311 /* Convert a single 16 or small 32 bit number to a Lisp_Int. | |
1312 If the number is > 16 bits, convert it to a cons of integers, | |
1313 16 bits in each half. | |
1314 */ | |
1315 else if (format == 32 && size == sizeof (long)) | |
1316 return long_to_cons (((unsigned long *) data) [0]); | |
1317 else if (format == 16 && size == sizeof (short)) | |
1318 return make_number ((int) (((unsigned short *) data) [0])); | |
1319 | |
1320 /* Convert any other kind of data to a vector of numbers, represented | |
1321 as above (as an integer, or a cons of two 16 bit integers.) | |
1322 */ | |
1323 else if (format == 16) | |
1324 { | |
1325 int i; | |
1326 Lisp_Object v = Fmake_vector (size / 4, 0); | |
1327 for (i = 0; i < size / 4; i++) | |
1328 { | |
1329 int j = (int) ((unsigned short *) data) [i]; | |
1330 Faset (v, i, make_number (j)); | |
1331 } | |
1332 return v; | |
1333 } | |
1334 else | |
1335 { | |
1336 int i; | |
1337 Lisp_Object v = Fmake_vector (size / 4, 0); | |
1338 for (i = 0; i < size / 4; i++) | |
1339 { | |
1340 unsigned long j = ((unsigned long *) data) [i]; | |
1341 Faset (v, i, long_to_cons (j)); | |
1342 } | |
1343 return v; | |
1344 } | |
1345 } | |
1346 | |
1347 | |
1348 static void | |
1349 lisp_data_to_selection_data (display, obj, | |
4278
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1350 data_ret, type_ret, size_ret, |
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1351 format_ret, nofree_ret) |
2161 | 1352 Display *display; |
1353 Lisp_Object obj; | |
1354 unsigned char **data_ret; | |
1355 Atom *type_ret; | |
1356 unsigned int *size_ret; | |
1357 int *format_ret; | |
4278
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1358 int *nofree_ret; |
2161 | 1359 { |
1360 Lisp_Object type = Qnil; | |
4278
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1361 |
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1362 *nofree_ret = 0; |
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1363 |
2161 | 1364 if (CONSP (obj) && SYMBOLP (XCONS (obj)->car)) |
1365 { | |
1366 type = XCONS (obj)->car; | |
1367 obj = XCONS (obj)->cdr; | |
1368 if (CONSP (obj) && NILP (XCONS (obj)->cdr)) | |
1369 obj = XCONS (obj)->car; | |
1370 } | |
1371 | |
1372 if (EQ (obj, QNULL) || (EQ (type, QNULL))) | |
1373 { /* This is not the same as declining */ | |
1374 *format_ret = 32; | |
1375 *size_ret = 0; | |
1376 *data_ret = 0; | |
1377 type = QNULL; | |
1378 } | |
1379 else if (STRINGP (obj)) | |
1380 { | |
1381 *format_ret = 8; | |
1382 *size_ret = XSTRING (obj)->size; | |
4278
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1383 *data_ret = XSTRING (obj)->data; |
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1384 *nofree_ret = 1; |
2161 | 1385 if (NILP (type)) type = QSTRING; |
1386 } | |
1387 else if (SYMBOLP (obj)) | |
1388 { | |
1389 *format_ret = 32; | |
1390 *size_ret = 1; | |
1391 *data_ret = (unsigned char *) xmalloc (sizeof (Atom) + 1); | |
1392 (*data_ret) [sizeof (Atom)] = 0; | |
1393 (*(Atom **) data_ret) [0] = symbol_to_x_atom (display, obj); | |
1394 if (NILP (type)) type = QATOM; | |
1395 } | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1396 else if (INTEGERP (obj) |
2161 | 1397 && XINT (obj) < 0xFFFF |
1398 && XINT (obj) > -0xFFFF) | |
1399 { | |
1400 *format_ret = 16; | |
1401 *size_ret = 1; | |
1402 *data_ret = (unsigned char *) xmalloc (sizeof (short) + 1); | |
1403 (*data_ret) [sizeof (short)] = 0; | |
1404 (*(short **) data_ret) [0] = (short) XINT (obj); | |
1405 if (NILP (type)) type = QINTEGER; | |
1406 } | |
2169 | 1407 else if (INTEGERP (obj) |
1408 || (CONSP (obj) && INTEGERP (XCONS (obj)->car) | |
1409 && (INTEGERP (XCONS (obj)->cdr) | |
1410 || (CONSP (XCONS (obj)->cdr) | |
1411 && INTEGERP (XCONS (XCONS (obj)->cdr)->car))))) | |
2161 | 1412 { |
1413 *format_ret = 32; | |
1414 *size_ret = 1; | |
1415 *data_ret = (unsigned char *) xmalloc (sizeof (long) + 1); | |
1416 (*data_ret) [sizeof (long)] = 0; | |
1417 (*(unsigned long **) data_ret) [0] = cons_to_long (obj); | |
1418 if (NILP (type)) type = QINTEGER; | |
1419 } | |
1420 else if (VECTORP (obj)) | |
1421 { | |
1422 /* Lisp_Vectors may represent a set of ATOMs; | |
1423 a set of 16 or 32 bit INTEGERs; | |
1424 or a set of ATOM_PAIRs (represented as [[A1 A2] [A3 A4] ...] | |
1425 */ | |
1426 int i; | |
1427 | |
1428 if (SYMBOLP (XVECTOR (obj)->contents [0])) | |
1429 /* This vector is an ATOM set */ | |
1430 { | |
1431 if (NILP (type)) type = QATOM; | |
1432 *size_ret = XVECTOR (obj)->size; | |
1433 *format_ret = 32; | |
1434 *data_ret = (unsigned char *) xmalloc ((*size_ret) * sizeof (Atom)); | |
1435 for (i = 0; i < *size_ret; i++) | |
1436 if (SYMBOLP (XVECTOR (obj)->contents [i])) | |
1437 (*(Atom **) data_ret) [i] | |
1438 = symbol_to_x_atom (display, XVECTOR (obj)->contents [i]); | |
1439 else | |
1440 Fsignal (Qerror, /* Qselection_error */ | |
1441 Fcons (build_string | |
1442 ("all elements of selection vector must have same type"), | |
1443 Fcons (obj, Qnil))); | |
1444 } | |
1445 #if 0 /* #### MULTIPLE doesn't work yet */ | |
1446 else if (VECTORP (XVECTOR (obj)->contents [0])) | |
1447 /* This vector is an ATOM_PAIR set */ | |
1448 { | |
1449 if (NILP (type)) type = QATOM_PAIR; | |
1450 *size_ret = XVECTOR (obj)->size; | |
1451 *format_ret = 32; | |
1452 *data_ret = (unsigned char *) | |
1453 xmalloc ((*size_ret) * sizeof (Atom) * 2); | |
1454 for (i = 0; i < *size_ret; i++) | |
1455 if (VECTORP (XVECTOR (obj)->contents [i])) | |
1456 { | |
1457 Lisp_Object pair = XVECTOR (obj)->contents [i]; | |
1458 if (XVECTOR (pair)->size != 2) | |
1459 Fsignal (Qerror, | |
1460 Fcons (build_string | |
1461 ("elements of the vector must be vectors of exactly two elements"), | |
1462 Fcons (pair, Qnil))); | |
1463 | |
1464 (*(Atom **) data_ret) [i * 2] | |
1465 = symbol_to_x_atom (display, XVECTOR (pair)->contents [0]); | |
1466 (*(Atom **) data_ret) [(i * 2) + 1] | |
1467 = symbol_to_x_atom (display, XVECTOR (pair)->contents [1]); | |
1468 } | |
1469 else | |
1470 Fsignal (Qerror, | |
1471 Fcons (build_string | |
1472 ("all elements of the vector must be of the same type"), | |
1473 Fcons (obj, Qnil))); | |
1474 | |
1475 } | |
1476 #endif | |
1477 else | |
1478 /* This vector is an INTEGER set, or something like it */ | |
1479 { | |
1480 *size_ret = XVECTOR (obj)->size; | |
1481 if (NILP (type)) type = QINTEGER; | |
1482 *format_ret = 16; | |
1483 for (i = 0; i < *size_ret; i++) | |
1484 if (CONSP (XVECTOR (obj)->contents [i])) | |
1485 *format_ret = 32; | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1486 else if (!INTEGERP (XVECTOR (obj)->contents [i])) |
2161 | 1487 Fsignal (Qerror, /* Qselection_error */ |
1488 Fcons (build_string | |
1489 ("elements of selection vector must be integers or conses of integers"), | |
1490 Fcons (obj, Qnil))); | |
1491 | |
1492 *data_ret = (unsigned char *) xmalloc (*size_ret * (*format_ret/8)); | |
1493 for (i = 0; i < *size_ret; i++) | |
1494 if (*format_ret == 32) | |
1495 (*((unsigned long **) data_ret)) [i] | |
1496 = cons_to_long (XVECTOR (obj)->contents [i]); | |
1497 else | |
1498 (*((unsigned short **) data_ret)) [i] | |
1499 = (unsigned short) cons_to_long (XVECTOR (obj)->contents [i]); | |
1500 } | |
1501 } | |
1502 else | |
1503 Fsignal (Qerror, /* Qselection_error */ | |
1504 Fcons (build_string ("unrecognised selection data"), | |
1505 Fcons (obj, Qnil))); | |
1506 | |
1507 *type_ret = symbol_to_x_atom (display, type); | |
1508 } | |
1509 | |
1510 static Lisp_Object | |
1511 clean_local_selection_data (obj) | |
1512 Lisp_Object obj; | |
1513 { | |
1514 if (CONSP (obj) | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1515 && INTEGERP (XCONS (obj)->car) |
2161 | 1516 && CONSP (XCONS (obj)->cdr) |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1517 && INTEGERP (XCONS (XCONS (obj)->cdr)->car) |
2161 | 1518 && NILP (XCONS (XCONS (obj)->cdr)->cdr)) |
1519 obj = Fcons (XCONS (obj)->car, XCONS (obj)->cdr); | |
1520 | |
1521 if (CONSP (obj) | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1522 && INTEGERP (XCONS (obj)->car) |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1523 && INTEGERP (XCONS (obj)->cdr)) |
2161 | 1524 { |
1525 if (XINT (XCONS (obj)->car) == 0) | |
1526 return XCONS (obj)->cdr; | |
1527 if (XINT (XCONS (obj)->car) == -1) | |
1528 return make_number (- XINT (XCONS (obj)->cdr)); | |
1529 } | |
1530 if (VECTORP (obj)) | |
1531 { | |
1532 int i; | |
1533 int size = XVECTOR (obj)->size; | |
1534 Lisp_Object copy; | |
1535 if (size == 1) | |
1536 return clean_local_selection_data (XVECTOR (obj)->contents [0]); | |
1537 copy = Fmake_vector (size, Qnil); | |
1538 for (i = 0; i < size; i++) | |
1539 XVECTOR (copy)->contents [i] | |
1540 = clean_local_selection_data (XVECTOR (obj)->contents [i]); | |
1541 return copy; | |
1542 } | |
1543 return obj; | |
1544 } | |
1545 | |
1546 /* Called from XTread_socket to handle SelectionNotify events. | |
1547 If it's the selection we are waiting for, stop waiting. */ | |
1548 | |
1549 void | |
1550 x_handle_selection_notify (event) | |
1551 XSelectionEvent *event; | |
1552 { | |
1553 if (event->requestor != reading_selection_window) | |
1554 return; | |
1555 if (event->selection != reading_which_selection) | |
1556 return; | |
1557 | |
1558 XCONS (reading_selection_reply)->car = Qt; | |
1559 } | |
1560 | |
1561 | |
1562 DEFUN ("x-own-selection-internal", | |
1563 Fx_own_selection_internal, Sx_own_selection_internal, | |
1564 2, 2, 0, | |
1565 "Assert an X selection of the given TYPE with the given VALUE.\n\ | |
1566 TYPE is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\ | |
1567 \(Those are literal upper-case symbol names, since that's what X expects.)\n\ | |
1568 VALUE is typically a string, or a cons of two markers, but may be\n\ | |
2169 | 1569 anything that the functions on `selection-converter-alist' know about.") |
2161 | 1570 (selection_name, selection_value) |
1571 Lisp_Object selection_name, selection_value; | |
1572 { | |
1573 CHECK_SYMBOL (selection_name, 0); | |
1574 if (NILP (selection_value)) error ("selection-value may not be nil."); | |
1575 x_own_selection (selection_name, selection_value); | |
1576 return selection_value; | |
1577 } | |
1578 | |
1579 | |
1580 /* Request the selection value from the owner. If we are the owner, | |
1581 simply return our selection value. If we are not the owner, this | |
1582 will block until all of the data has arrived. */ | |
1583 | |
1584 DEFUN ("x-get-selection-internal", | |
1585 Fx_get_selection_internal, Sx_get_selection_internal, 2, 2, 0, | |
1586 "Return text selected from some X window.\n\ | |
1587 SELECTION is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\ | |
1588 \(Those are literal upper-case symbol names, since that's what X expects.)\n\ | |
2169 | 1589 TYPE is the type of data desired, typically `STRING'.") |
2161 | 1590 (selection_symbol, target_type) |
1591 Lisp_Object selection_symbol, target_type; | |
1592 { | |
1593 Lisp_Object val = Qnil; | |
1594 struct gcpro gcpro1, gcpro2; | |
1595 GCPRO2 (target_type, val); /* we store newly consed data into these */ | |
1596 CHECK_SYMBOL (selection_symbol, 0); | |
1597 | |
1598 #if 0 /* #### MULTIPLE doesn't work yet */ | |
1599 if (CONSP (target_type) | |
1600 && XCONS (target_type)->car == QMULTIPLE) | |
1601 { | |
1602 CHECK_VECTOR (XCONS (target_type)->cdr, 0); | |
1603 /* So we don't destructively modify this... */ | |
1604 target_type = copy_multiple_data (target_type); | |
1605 } | |
1606 else | |
1607 #endif | |
1608 CHECK_SYMBOL (target_type, 0); | |
1609 | |
1610 val = x_get_local_selection (selection_symbol, target_type); | |
1611 | |
1612 if (NILP (val)) | |
1613 { | |
1614 val = x_get_foreign_selection (selection_symbol, target_type); | |
1615 goto DONE; | |
1616 } | |
1617 | |
1618 if (CONSP (val) | |
1619 && SYMBOLP (XCONS (val)->car)) | |
1620 { | |
1621 val = XCONS (val)->cdr; | |
1622 if (CONSP (val) && NILP (XCONS (val)->cdr)) | |
1623 val = XCONS (val)->car; | |
1624 } | |
1625 val = clean_local_selection_data (val); | |
1626 DONE: | |
1627 UNGCPRO; | |
1628 return val; | |
1629 } | |
1630 | |
1631 DEFUN ("x-disown-selection-internal", | |
1632 Fx_disown_selection_internal, Sx_disown_selection_internal, 1, 2, 0, | |
2169 | 1633 "If we own the selection SELECTION, disown it.\n\ |
1634 Disowning it means there is no such selection.") | |
2161 | 1635 (selection, time) |
1636 Lisp_Object selection; | |
1637 Lisp_Object time; | |
1638 { | |
1639 Display *display = x_current_display; | |
1640 Time timestamp; | |
1641 Atom selection_atom; | |
1642 XSelectionClearEvent event; | |
1643 | |
1644 CHECK_SYMBOL (selection, 0); | |
1645 if (NILP (time)) | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1646 timestamp = last_event_timestamp; |
2161 | 1647 else |
1648 timestamp = cons_to_long (time); | |
1649 | |
1650 if (NILP (assq_no_quit (selection, Vselection_alist))) | |
1651 return Qnil; /* Don't disown the selection when we're not the owner. */ | |
1652 | |
1653 selection_atom = symbol_to_x_atom (display, selection); | |
1654 | |
1655 BLOCK_INPUT; | |
1656 XSetSelectionOwner (display, selection_atom, None, timestamp); | |
1657 UNBLOCK_INPUT; | |
1658 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3492
diff
changeset
|
1659 /* It doesn't seem to be guaranteed that a SelectionClear event will be |
2161 | 1660 generated for a window which owns the selection when that window sets |
1661 the selection owner to None. The NCD server does, the MIT Sun4 server | |
1662 doesn't. So we synthesize one; this means we might get two, but | |
1663 that's ok, because the second one won't have any effect. */ | |
1664 event.display = display; | |
1665 event.selection = selection_atom; | |
1666 event.time = timestamp; | |
1667 x_handle_selection_clear (&event); | |
1668 | |
1669 return Qt; | |
1670 } | |
1671 | |
2169 | 1672 /* Get rid of all the selections in buffer BUFFER. |
1673 This is used when we kill a buffer. */ | |
1674 | |
1675 void | |
1676 x_disown_buffer_selections (buffer) | |
1677 Lisp_Object buffer; | |
1678 { | |
1679 Lisp_Object tail; | |
1680 struct buffer *buf = XBUFFER (buffer); | |
1681 | |
1682 for (tail = Vselection_alist; CONSP (tail); tail = XCONS (tail)->cdr) | |
1683 { | |
1684 Lisp_Object elt, value; | |
1685 elt = XCONS (tail)->car; | |
1686 value = XCONS (elt)->cdr; | |
1687 if (CONSP (value) && MARKERP (XCONS (value)->car) | |
1688 && XMARKER (XCONS (value)->car)->buffer == buf) | |
1689 Fx_disown_selection_internal (XCONS (elt)->car, Qnil); | |
1690 } | |
1691 } | |
2161 | 1692 |
1693 DEFUN ("x-selection-owner-p", Fx_selection_owner_p, Sx_selection_owner_p, | |
1694 0, 1, 0, | |
2169 | 1695 "Whether the current Emacs process owns the given X Selection.\n\ |
2161 | 1696 The arg should be the name of the selection in question, typically one of\n\ |
1697 the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\ | |
1698 \(Those are literal upper-case symbol names, since that's what X expects.)\n\ | |
1699 For convenience, the symbol nil is the same as `PRIMARY',\n\ | |
1700 and t is the same as `SECONDARY'.)") | |
1701 (selection) | |
1702 Lisp_Object selection; | |
1703 { | |
1704 CHECK_SYMBOL (selection, 0); | |
1705 if (EQ (selection, Qnil)) selection = QPRIMARY; | |
1706 if (EQ (selection, Qt)) selection = QSECONDARY; | |
1707 | |
1708 if (NILP (Fassq (selection, Vselection_alist))) | |
1709 return Qnil; | |
1710 return Qt; | |
1711 } | |
1712 | |
1713 DEFUN ("x-selection-exists-p", Fx_selection_exists_p, Sx_selection_exists_p, | |
1714 0, 1, 0, | |
1715 "Whether there is an owner for the given X Selection.\n\ | |
1716 The arg should be the name of the selection in question, typically one of\n\ | |
1717 the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\ | |
1718 \(Those are literal upper-case symbol names, since that's what X expects.)\n\ | |
1719 For convenience, the symbol nil is the same as `PRIMARY',\n\ | |
1720 and t is the same as `SECONDARY'.)") | |
1721 (selection) | |
1722 Lisp_Object selection; | |
1723 { | |
1724 Window owner; | |
2797
ae18dabac465
(Fx_selection_exists_p): Handle nil, t as SELECTION arg.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
1725 Atom atom; |
2161 | 1726 Display *dpy = x_current_display; |
1727 CHECK_SYMBOL (selection, 0); | |
1728 if (!NILP (Fx_selection_owner_p (selection))) | |
1729 return Qt; | |
2797
ae18dabac465
(Fx_selection_exists_p): Handle nil, t as SELECTION arg.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
1730 if (EQ (selection, Qnil)) selection = QPRIMARY; |
ae18dabac465
(Fx_selection_exists_p): Handle nil, t as SELECTION arg.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
1731 if (EQ (selection, Qt)) selection = QSECONDARY; |
ae18dabac465
(Fx_selection_exists_p): Handle nil, t as SELECTION arg.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
1732 atom = symbol_to_x_atom (dpy, selection); |
ae18dabac465
(Fx_selection_exists_p): Handle nil, t as SELECTION arg.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
1733 if (atom == 0) |
ae18dabac465
(Fx_selection_exists_p): Handle nil, t as SELECTION arg.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
1734 return Qnil; |
2161 | 1735 BLOCK_INPUT; |
2797
ae18dabac465
(Fx_selection_exists_p): Handle nil, t as SELECTION arg.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
1736 owner = XGetSelectionOwner (dpy, atom); |
2161 | 1737 UNBLOCK_INPUT; |
1738 return (owner ? Qt : Qnil); | |
1739 } | |
1740 | |
1741 | |
1742 #ifdef CUT_BUFFER_SUPPORT | |
1743 | |
1744 static int cut_buffers_initialized; /* Whether we're sure they all exist */ | |
1745 | |
1746 /* Ensure that all 8 cut buffers exist. ICCCM says we gotta... */ | |
1747 static void | |
1748 initialize_cut_buffers (display, window) | |
1749 Display *display; | |
1750 Window window; | |
1751 { | |
1752 unsigned char *data = (unsigned char *) ""; | |
1753 BLOCK_INPUT; | |
1754 #define FROB(atom) XChangeProperty (display, window, atom, XA_STRING, 8, \ | |
1755 PropModeAppend, data, 0) | |
1756 FROB (XA_CUT_BUFFER0); | |
1757 FROB (XA_CUT_BUFFER1); | |
1758 FROB (XA_CUT_BUFFER2); | |
1759 FROB (XA_CUT_BUFFER3); | |
1760 FROB (XA_CUT_BUFFER4); | |
1761 FROB (XA_CUT_BUFFER5); | |
1762 FROB (XA_CUT_BUFFER6); | |
1763 FROB (XA_CUT_BUFFER7); | |
1764 #undef FROB | |
1765 UNBLOCK_INPUT; | |
1766 cut_buffers_initialized = 1; | |
1767 } | |
1768 | |
1769 | |
2169 | 1770 #define CHECK_CUT_BUFFER(symbol,n) \ |
2161 | 1771 { CHECK_SYMBOL ((symbol), (n)); \ |
1772 if (!EQ((symbol), QCUT_BUFFER0) && !EQ((symbol), QCUT_BUFFER1) \ | |
1773 && !EQ((symbol), QCUT_BUFFER2) && !EQ((symbol), QCUT_BUFFER3) \ | |
1774 && !EQ((symbol), QCUT_BUFFER4) && !EQ((symbol), QCUT_BUFFER5) \ | |
1775 && !EQ((symbol), QCUT_BUFFER6) && !EQ((symbol), QCUT_BUFFER7)) \ | |
1776 Fsignal (Qerror, \ | |
2169 | 1777 Fcons (build_string ("doesn't name a cut buffer"), \ |
2161 | 1778 Fcons ((symbol), Qnil))); \ |
1779 } | |
1780 | |
2169 | 1781 DEFUN ("x-get-cut-buffer-internal", Fx_get_cut_buffer_internal, |
1782 Sx_get_cut_buffer_internal, 1, 1, 0, | |
1783 "Returns the value of the named cut buffer (typically CUT_BUFFER0).") | |
2161 | 1784 (buffer) |
1785 Lisp_Object buffer; | |
1786 { | |
1787 Display *display = x_current_display; | |
2169 | 1788 Window window = RootWindow (display, 0); /* Cut buffers are on screen 0 */ |
2161 | 1789 Atom buffer_atom; |
1790 unsigned char *data; | |
1791 int bytes; | |
1792 Atom type; | |
1793 int format; | |
1794 unsigned long size; | |
1795 Lisp_Object ret; | |
1796 | |
2169 | 1797 CHECK_CUT_BUFFER (buffer, 0); |
2161 | 1798 buffer_atom = symbol_to_x_atom (display, buffer); |
1799 | |
1800 x_get_window_property (display, window, buffer_atom, &data, &bytes, | |
1801 &type, &format, &size, 0); | |
1802 if (!data) return Qnil; | |
1803 | |
1804 if (format != 8 || type != XA_STRING) | |
1805 Fsignal (Qerror, | |
1806 Fcons (build_string ("cut buffer doesn't contain 8-bit data"), | |
1807 Fcons (x_atom_to_symbol (display, type), | |
1808 Fcons (make_number (format), Qnil)))); | |
1809 | |
1810 ret = (bytes ? make_string ((char *) data, bytes) : Qnil); | |
1811 xfree (data); | |
1812 return ret; | |
1813 } | |
1814 | |
1815 | |
2169 | 1816 DEFUN ("x-store-cut-buffer-internal", Fx_store_cut_buffer_internal, |
1817 Sx_store_cut_buffer_internal, 2, 2, 0, | |
1818 "Sets the value of the named cut buffer (typically CUT_BUFFER0).") | |
2161 | 1819 (buffer, string) |
1820 Lisp_Object buffer, string; | |
1821 { | |
1822 Display *display = x_current_display; | |
2169 | 1823 Window window = RootWindow (display, 0); /* Cut buffers are on screen 0 */ |
2161 | 1824 Atom buffer_atom; |
1825 unsigned char *data; | |
1826 int bytes; | |
1827 int bytes_remaining; | |
1828 int max_bytes = SELECTION_QUANTUM (display); | |
1829 if (max_bytes > MAX_SELECTION_QUANTUM) max_bytes = MAX_SELECTION_QUANTUM; | |
1830 | |
2169 | 1831 CHECK_CUT_BUFFER (buffer, 0); |
2161 | 1832 CHECK_STRING (string, 0); |
1833 buffer_atom = symbol_to_x_atom (display, buffer); | |
1834 data = (unsigned char *) XSTRING (string)->data; | |
1835 bytes = XSTRING (string)->size; | |
1836 bytes_remaining = bytes; | |
1837 | |
1838 if (! cut_buffers_initialized) initialize_cut_buffers (display, window); | |
1839 | |
1840 BLOCK_INPUT; | |
3473
e1d043cb2f1a
(Fx_store_cut_buffer_internal): Handle empty string right.
Richard M. Stallman <rms@gnu.org>
parents:
3348
diff
changeset
|
1841 |
e1d043cb2f1a
(Fx_store_cut_buffer_internal): Handle empty string right.
Richard M. Stallman <rms@gnu.org>
parents:
3348
diff
changeset
|
1842 /* Don't mess up with an empty value. */ |
e1d043cb2f1a
(Fx_store_cut_buffer_internal): Handle empty string right.
Richard M. Stallman <rms@gnu.org>
parents:
3348
diff
changeset
|
1843 if (!bytes_remaining) |
e1d043cb2f1a
(Fx_store_cut_buffer_internal): Handle empty string right.
Richard M. Stallman <rms@gnu.org>
parents:
3348
diff
changeset
|
1844 XChangeProperty (display, window, buffer_atom, XA_STRING, 8, |
e1d043cb2f1a
(Fx_store_cut_buffer_internal): Handle empty string right.
Richard M. Stallman <rms@gnu.org>
parents:
3348
diff
changeset
|
1845 PropModeReplace, data, 0); |
e1d043cb2f1a
(Fx_store_cut_buffer_internal): Handle empty string right.
Richard M. Stallman <rms@gnu.org>
parents:
3348
diff
changeset
|
1846 |
2161 | 1847 while (bytes_remaining) |
1848 { | |
1849 int chunk = (bytes_remaining < max_bytes | |
1850 ? bytes_remaining : max_bytes); | |
1851 XChangeProperty (display, window, buffer_atom, XA_STRING, 8, | |
1852 (bytes_remaining == bytes | |
1853 ? PropModeReplace | |
1854 : PropModeAppend), | |
1855 data, chunk); | |
1856 data += chunk; | |
1857 bytes_remaining -= chunk; | |
1858 } | |
1859 UNBLOCK_INPUT; | |
1860 return string; | |
1861 } | |
1862 | |
1863 | |
2169 | 1864 DEFUN ("x-rotate-cut-buffers-internal", Fx_rotate_cut_buffers_internal, |
1865 Sx_rotate_cut_buffers_internal, 1, 1, 0, | |
1866 "Rotate the values of the cut buffers by the given number of steps;\n\ | |
2161 | 1867 positive means move values forward, negative means backward.") |
1868 (n) | |
1869 Lisp_Object n; | |
1870 { | |
1871 Display *display = x_current_display; | |
2169 | 1872 Window window = RootWindow (display, 0); /* Cut buffers are on screen 0 */ |
2161 | 1873 Atom props [8]; |
1874 | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1875 CHECK_NUMBER (n, 0); |
2161 | 1876 if (XINT (n) == 0) return n; |
1877 if (! cut_buffers_initialized) initialize_cut_buffers (display, window); | |
1878 props[0] = XA_CUT_BUFFER0; | |
1879 props[1] = XA_CUT_BUFFER1; | |
1880 props[2] = XA_CUT_BUFFER2; | |
1881 props[3] = XA_CUT_BUFFER3; | |
1882 props[4] = XA_CUT_BUFFER4; | |
1883 props[5] = XA_CUT_BUFFER5; | |
1884 props[6] = XA_CUT_BUFFER6; | |
1885 props[7] = XA_CUT_BUFFER7; | |
1886 BLOCK_INPUT; | |
1887 XRotateWindowProperties (display, window, props, 8, XINT (n)); | |
1888 UNBLOCK_INPUT; | |
1889 return n; | |
1890 } | |
1891 | |
1892 #endif | |
1893 | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1894 void |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1895 Xatoms_of_xselect () |
2161 | 1896 { |
1897 #define ATOM(x) XInternAtom (x_current_display, (x), False) | |
1898 | |
1899 BLOCK_INPUT; | |
1900 /* Non-predefined atoms that we might end up using a lot */ | |
1901 Xatom_CLIPBOARD = ATOM ("CLIPBOARD"); | |
1902 Xatom_TIMESTAMP = ATOM ("TIMESTAMP"); | |
1903 Xatom_TEXT = ATOM ("TEXT"); | |
1904 Xatom_DELETE = ATOM ("DELETE"); | |
1905 Xatom_MULTIPLE = ATOM ("MULTIPLE"); | |
1906 Xatom_INCR = ATOM ("INCR"); | |
1907 Xatom_EMACS_TMP = ATOM ("_EMACS_TMP_"); | |
1908 Xatom_TARGETS = ATOM ("TARGETS"); | |
1909 Xatom_NULL = ATOM ("NULL"); | |
1910 Xatom_ATOM_PAIR = ATOM ("ATOM_PAIR"); | |
1911 UNBLOCK_INPUT; | |
1912 } | |
1913 | |
1914 void | |
1915 syms_of_xselect () | |
1916 { | |
1917 defsubr (&Sx_get_selection_internal); | |
1918 defsubr (&Sx_own_selection_internal); | |
1919 defsubr (&Sx_disown_selection_internal); | |
1920 defsubr (&Sx_selection_owner_p); | |
1921 defsubr (&Sx_selection_exists_p); | |
1922 | |
1923 #ifdef CUT_BUFFER_SUPPORT | |
2169 | 1924 defsubr (&Sx_get_cut_buffer_internal); |
1925 defsubr (&Sx_store_cut_buffer_internal); | |
1926 defsubr (&Sx_rotate_cut_buffers_internal); | |
2161 | 1927 cut_buffers_initialized = 0; |
1928 #endif | |
1929 | |
1930 reading_selection_reply = Fcons (Qnil, Qnil); | |
1931 staticpro (&reading_selection_reply); | |
1932 reading_selection_window = 0; | |
1933 reading_which_selection = 0; | |
1934 | |
1935 property_change_wait_list = 0; | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1936 prop_location_identifier = 0; |
2161 | 1937 property_change_reply = Fcons (Qnil, Qnil); |
1938 staticpro (&property_change_reply); | |
1939 | |
1940 Vselection_alist = Qnil; | |
1941 staticpro (&Vselection_alist); | |
1942 | |
1943 DEFVAR_LISP ("selection-converter-alist", &Vselection_converter_alist, | |
1944 "An alist associating X Windows selection-types with functions.\n\ | |
1945 These functions are called to convert the selection, with three args:\n\ | |
1946 the name of the selection (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');\n\ | |
1947 a desired type to which the selection should be converted;\n\ | |
1948 and the local selection value (whatever was given to `x-own-selection').\n\ | |
1949 \n\ | |
1950 The function should return the value to send to the X server\n\ | |
1951 \(typically a string). A return value of nil\n\ | |
1952 means that the conversion could not be done.\n\ | |
1953 A return value which is the symbol `NULL'\n\ | |
1954 means that a side-effect was executed,\n\ | |
1955 and there is no meaningful selection value."); | |
1956 Vselection_converter_alist = Qnil; | |
1957 | |
1958 DEFVAR_LISP ("x-lost-selection-hooks", &Vx_lost_selection_hooks, | |
1959 "A list of functions to be called when Emacs loses an X selection.\n\ | |
1960 \(This happens when some other X client makes its own selection\n\ | |
1961 or when a Lisp program explicitly clears the selection.)\n\ | |
1962 The functions are called with one argument, the selection type\n\ | |
1963 \(a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.)"); | |
1964 Vx_lost_selection_hooks = Qnil; | |
1965 | |
1966 DEFVAR_LISP ("x-sent-selection-hooks", &Vx_sent_selection_hooks, | |
1967 "A list of functions to be called when Emacs answers a selection request.\n\ | |
1968 The functions are called with four arguments:\n\ | |
1969 - the selection name (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');\n\ | |
1970 - the selection-type which Emacs was asked to convert the\n\ | |
1971 selection into before sending (for example, `STRING' or `LENGTH');\n\ | |
1972 - a flag indicating success or failure for responding to the request.\n\ | |
1973 We might have failed (and declined the request) for any number of reasons,\n\ | |
1974 including being asked for a selection that we no longer own, or being asked\n\ | |
1975 to convert into a type that we don't know about or that is inappropriate.\n\ | |
1976 This hook doesn't let you change the behavior of Emacs's selection replies,\n\ | |
1977 it merely informs you that they have happened."); | |
1978 Vx_sent_selection_hooks = Qnil; | |
1979 | |
1980 DEFVAR_INT ("x-selection-timeout", &x_selection_timeout, | |
3492
3e75726d76c7
(x_get_foreign_selection): Handle x_selection_timeout
Richard M. Stallman <rms@gnu.org>
parents:
3473
diff
changeset
|
1981 "Number of milliseconds to wait for a selection reply.\n\ |
3e75726d76c7
(x_get_foreign_selection): Handle x_selection_timeout
Richard M. Stallman <rms@gnu.org>
parents:
3473
diff
changeset
|
1982 If the selection owner doens't reply in this time, we give up.\n\ |
2161 | 1983 A value of 0 means wait as long as necessary. This is initialized from the\n\ |
3492
3e75726d76c7
(x_get_foreign_selection): Handle x_selection_timeout
Richard M. Stallman <rms@gnu.org>
parents:
3473
diff
changeset
|
1984 \"*selectionTimeout\" resource."); |
2161 | 1985 x_selection_timeout = 0; |
1986 | |
1987 QPRIMARY = intern ("PRIMARY"); staticpro (&QPRIMARY); | |
1988 QSECONDARY = intern ("SECONDARY"); staticpro (&QSECONDARY); | |
1989 QSTRING = intern ("STRING"); staticpro (&QSTRING); | |
1990 QINTEGER = intern ("INTEGER"); staticpro (&QINTEGER); | |
1991 QCLIPBOARD = intern ("CLIPBOARD"); staticpro (&QCLIPBOARD); | |
1992 QTIMESTAMP = intern ("TIMESTAMP"); staticpro (&QTIMESTAMP); | |
1993 QTEXT = intern ("TEXT"); staticpro (&QTEXT); | |
1994 QTIMESTAMP = intern ("TIMESTAMP"); staticpro (&QTIMESTAMP); | |
1995 QDELETE = intern ("DELETE"); staticpro (&QDELETE); | |
1996 QMULTIPLE = intern ("MULTIPLE"); staticpro (&QMULTIPLE); | |
1997 QINCR = intern ("INCR"); staticpro (&QINCR); | |
1998 QEMACS_TMP = intern ("_EMACS_TMP_"); staticpro (&QEMACS_TMP); | |
1999 QTARGETS = intern ("TARGETS"); staticpro (&QTARGETS); | |
2000 QATOM = intern ("ATOM"); staticpro (&QATOM); | |
2001 QATOM_PAIR = intern ("ATOM_PAIR"); staticpro (&QATOM_PAIR); | |
2002 QNULL = intern ("NULL"); staticpro (&QNULL); | |
2003 | |
2004 #ifdef CUT_BUFFER_SUPPORT | |
2005 QCUT_BUFFER0 = intern ("CUT_BUFFER0"); staticpro (&QCUT_BUFFER0); | |
2006 QCUT_BUFFER1 = intern ("CUT_BUFFER1"); staticpro (&QCUT_BUFFER1); | |
2007 QCUT_BUFFER2 = intern ("CUT_BUFFER2"); staticpro (&QCUT_BUFFER2); | |
2008 QCUT_BUFFER3 = intern ("CUT_BUFFER3"); staticpro (&QCUT_BUFFER3); | |
2009 QCUT_BUFFER4 = intern ("CUT_BUFFER4"); staticpro (&QCUT_BUFFER4); | |
2010 QCUT_BUFFER5 = intern ("CUT_BUFFER5"); staticpro (&QCUT_BUFFER5); | |
2011 QCUT_BUFFER6 = intern ("CUT_BUFFER6"); staticpro (&QCUT_BUFFER6); | |
2012 QCUT_BUFFER7 = intern ("CUT_BUFFER7"); staticpro (&QCUT_BUFFER7); | |
2013 #endif | |
2014 | |
2015 } |