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