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