Mercurial > emacs
annotate src/xselect.c @ 9672:fdc268ab037d
(latex-mode): Recognize \item etc. that have no arg
because only a comment follows.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 23 Oct 1994 20:39:25 +0000 |
parents | a03e0a600f3f |
children | 14a8113d8a8b |
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; | |
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
247 x_catch_errors (selected_frame); |
2161 | 248 XSetSelectionOwner (display, selection_atom, selecting_window, time); |
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
249 x_check_errors (selected_frame, "Can't set selection: %s"); |
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
250 x_uncatch_errors (selected_frame); |
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 { |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
890 unexpect_property_change (XPNTR (identifierval)); |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
891 } |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
892 |
2161 | 893 /* 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
|
894 IDENTIFIER should be the value that expect_property_change returned. */ |
2161 | 895 |
896 static void | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
897 wait_for_property_change (location) |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
898 struct prop_location *location; |
2161 | 899 { |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
900 int secs, usecs; |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
901 int count = specpdl_ptr - specpdl; |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
902 Lisp_Object tem; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
903 |
9286
2accc8da0793
(x_clear_frame_selections, wait_for_property_change): Use new accessor macros
Karl Heuer <kwzh@gnu.org>
parents:
8355
diff
changeset
|
904 XSETCONS (tem, location); |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
905 |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
906 /* 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
|
907 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
|
908 |
2161 | 909 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
|
910 |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
911 if (! location->arrived) |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
912 { |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
913 property_change_reply_object = location; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
914 secs = x_selection_timeout / 1000; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
915 usecs = (x_selection_timeout % 1000) * 1000; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
916 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
|
917 |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
918 if (NILP (XCONS (property_change_reply)->car)) |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
919 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
|
920 } |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
921 |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
922 unbind_to (count, Qnil); |
2161 | 923 } |
924 | |
925 /* Called from XTread_socket in response to a PropertyNotify event. */ | |
926 | |
927 void | |
928 x_handle_property_notify (event) | |
929 XPropertyEvent *event; | |
930 { | |
931 struct prop_location *prev = 0, *rest = property_change_wait_list; | |
932 while (rest) | |
933 { | |
934 if (rest->property == event->atom | |
935 && rest->window == event->window | |
936 && rest->display == event->display | |
937 && rest->desired_state == event->state) | |
938 { | |
939 #if 0 | |
940 fprintf (stderr, "Saw expected prop-%s on %s\n", | |
941 (event->state == PropertyDelete ? "delete" : "change"), | |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
942 (char *) XSYMBOL (x_atom_to_symbol (dpyinfo, event->display, |
2161 | 943 event->atom)) |
944 ->name->data); | |
945 #endif | |
946 | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
947 rest->arrived = 1; |
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
948 |
2161 | 949 /* If this is the one wait_for_property_change is waiting for, |
950 tell it to wake up. */ | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
951 if (rest == property_change_reply_object) |
2161 | 952 XCONS (property_change_reply)->car = Qt; |
953 | |
954 if (prev) | |
955 prev->next = rest->next; | |
956 else | |
957 property_change_wait_list = rest->next; | |
958 xfree (rest); | |
959 return; | |
960 } | |
961 prev = rest; | |
962 rest = rest->next; | |
963 } | |
964 #if 0 | |
965 fprintf (stderr, "Saw UNexpected prop-%s on %s\n", | |
966 (event->state == PropertyDelete ? "delete" : "change"), | |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
967 (char *) XSYMBOL (x_atom_to_symbol (dpyinfo, |
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
968 event->display, event->atom)) |
2161 | 969 ->name->data); |
970 #endif | |
971 } | |
972 | |
973 | |
974 | |
975 #if 0 /* #### MULTIPLE doesn't work yet */ | |
976 | |
977 static Lisp_Object | |
978 fetch_multiple_target (event) | |
979 XSelectionRequestEvent *event; | |
980 { | |
981 Display *display = event->display; | |
982 Window window = event->requestor; | |
983 Atom target = event->target; | |
984 Atom selection_atom = event->selection; | |
985 int result; | |
986 | |
987 return | |
988 Fcons (QMULTIPLE, | |
989 x_get_window_property_as_lisp_data (display, window, target, | |
990 QMULTIPLE, selection_atom)); | |
991 } | |
992 | |
993 static Lisp_Object | |
994 copy_multiple_data (obj) | |
995 Lisp_Object obj; | |
996 { | |
997 Lisp_Object vec; | |
998 int i; | |
999 int size; | |
1000 if (CONSP (obj)) | |
1001 return Fcons (XCONS (obj)->car, copy_multiple_data (XCONS (obj)->cdr)); | |
1002 | |
1003 CHECK_VECTOR (obj, 0); | |
1004 vec = Fmake_vector (size = XVECTOR (obj)->size, Qnil); | |
1005 for (i = 0; i < size; i++) | |
1006 { | |
1007 Lisp_Object vec2 = XVECTOR (obj)->contents [i]; | |
1008 CHECK_VECTOR (vec2, 0); | |
1009 if (XVECTOR (vec2)->size != 2) | |
1010 /* ??? Confusing error message */ | |
1011 Fsignal (Qerror, Fcons (build_string ("vectors must be of length 2"), | |
1012 Fcons (vec2, Qnil))); | |
1013 XVECTOR (vec)->contents [i] = Fmake_vector (2, Qnil); | |
1014 XVECTOR (XVECTOR (vec)->contents [i])->contents [0] | |
1015 = XVECTOR (vec2)->contents [0]; | |
1016 XVECTOR (XVECTOR (vec)->contents [i])->contents [1] | |
1017 = XVECTOR (vec2)->contents [1]; | |
1018 } | |
1019 return vec; | |
1020 } | |
1021 | |
1022 #endif | |
1023 | |
1024 | |
1025 /* Variables for communication with x_handle_selection_notify. */ | |
1026 static Atom reading_which_selection; | |
1027 static Lisp_Object reading_selection_reply; | |
1028 static Window reading_selection_window; | |
1029 | |
1030 /* Do protocol to read selection-data from the server. | |
1031 Converts this to Lisp data and returns it. */ | |
1032 | |
1033 static Lisp_Object | |
1034 x_get_foreign_selection (selection_symbol, target_type) | |
1035 Lisp_Object selection_symbol, target_type; | |
1036 { | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1037 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
|
1038 Display *display = FRAME_X_DISPLAY (selected_frame); |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1039 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
|
1040 Time requestor_time = last_event_timestamp; |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1041 Atom target_property = dpyinfo->Xatom_EMACS_TMP; |
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1042 Atom selection_atom = symbol_to_x_atom (dpyinfo, display, selection_symbol); |
2161 | 1043 Atom type_atom; |
3492
3e75726d76c7
(x_get_foreign_selection): Handle x_selection_timeout
Richard M. Stallman <rms@gnu.org>
parents:
3473
diff
changeset
|
1044 int secs, usecs; |
2161 | 1045 |
1046 if (CONSP (target_type)) | |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1047 type_atom = symbol_to_x_atom (dpyinfo, display, XCONS (target_type)->car); |
2161 | 1048 else |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1049 type_atom = symbol_to_x_atom (dpyinfo, display, target_type); |
2161 | 1050 |
1051 BLOCK_INPUT; | |
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1052 x_catch_errors (selected_frame); |
2161 | 1053 XConvertSelection (display, selection_atom, type_atom, target_property, |
1054 requestor_window, requestor_time); | |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1055 XFlush (display); |
2161 | 1056 |
1057 /* Prepare to block until the reply has been read. */ | |
1058 reading_selection_window = requestor_window; | |
1059 reading_which_selection = selection_atom; | |
1060 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
|
1061 x_start_queuing_selection_requests (selected_frame); |
2161 | 1062 UNBLOCK_INPUT; |
1063 | |
3492
3e75726d76c7
(x_get_foreign_selection): Handle x_selection_timeout
Richard M. Stallman <rms@gnu.org>
parents:
3473
diff
changeset
|
1064 /* 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
|
1065 secs = x_selection_timeout / 1000; |
3e75726d76c7
(x_get_foreign_selection): Handle x_selection_timeout
Richard M. Stallman <rms@gnu.org>
parents:
3473
diff
changeset
|
1066 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
|
1067 wait_reading_process_input (secs, usecs, reading_selection_reply, 0); |
2161 | 1068 |
5244
c0bd54986550
(x_get_foreign_selection): Use x_catch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
5131
diff
changeset
|
1069 BLOCK_INPUT; |
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1070 x_check_errors (selected_frame, "Cannot get selection: %s"); |
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1071 x_uncatch_errors (selected_frame); |
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1072 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
|
1073 UNBLOCK_INPUT; |
c0bd54986550
(x_get_foreign_selection): Use x_catch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
5131
diff
changeset
|
1074 |
2161 | 1075 if (NILP (XCONS (reading_selection_reply)->car)) |
1076 error ("timed out waiting for reply from selection owner"); | |
1077 | |
1078 /* Otherwise, the selection is waiting for us on the requested property. */ | |
1079 return | |
1080 x_get_window_property_as_lisp_data (display, requestor_window, | |
1081 target_property, target_type, | |
1082 selection_atom); | |
1083 } | |
1084 | |
1085 /* Subroutines of x_get_window_property_as_lisp_data */ | |
1086 | |
1087 static void | |
1088 x_get_window_property (display, window, property, data_ret, bytes_ret, | |
1089 actual_type_ret, actual_format_ret, actual_size_ret, | |
1090 delete_p) | |
1091 Display *display; | |
1092 Window window; | |
1093 Atom property; | |
1094 unsigned char **data_ret; | |
1095 int *bytes_ret; | |
1096 Atom *actual_type_ret; | |
1097 int *actual_format_ret; | |
1098 unsigned long *actual_size_ret; | |
1099 int delete_p; | |
1100 { | |
1101 int total_size; | |
1102 unsigned long bytes_remaining; | |
1103 int offset = 0; | |
1104 unsigned char *tmp_data = 0; | |
1105 int result; | |
1106 int buffer_size = SELECTION_QUANTUM (display); | |
1107 if (buffer_size > MAX_SELECTION_QUANTUM) buffer_size = MAX_SELECTION_QUANTUM; | |
1108 | |
1109 BLOCK_INPUT; | |
1110 /* First probe the thing to find out how big it is. */ | |
1111 result = XGetWindowProperty (display, window, property, | |
1112 0, 0, False, AnyPropertyType, | |
1113 actual_type_ret, actual_format_ret, | |
1114 actual_size_ret, | |
1115 &bytes_remaining, &tmp_data); | |
1116 if (result != Success) | |
1117 { | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1118 UNBLOCK_INPUT; |
2161 | 1119 *data_ret = 0; |
1120 *bytes_ret = 0; | |
1121 return; | |
1122 } | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1123 xfree ((char *) tmp_data); |
2161 | 1124 |
1125 if (*actual_type_ret == None || *actual_format_ret == 0) | |
1126 { | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1127 UNBLOCK_INPUT; |
2161 | 1128 return; |
1129 } | |
1130 | |
1131 total_size = bytes_remaining + 1; | |
1132 *data_ret = (unsigned char *) xmalloc (total_size); | |
1133 | |
1134 /* Now read, until weve gotten it all. */ | |
1135 while (bytes_remaining) | |
1136 { | |
1137 #if 0 | |
1138 int last = bytes_remaining; | |
1139 #endif | |
1140 result | |
1141 = XGetWindowProperty (display, window, property, | |
1142 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
|
1143 False, |
2161 | 1144 AnyPropertyType, |
1145 actual_type_ret, actual_format_ret, | |
1146 actual_size_ret, &bytes_remaining, &tmp_data); | |
1147 #if 0 | |
1148 fprintf (stderr, "<< read %d\n", last-bytes_remaining); | |
1149 #endif | |
1150 /* If this doesn't return Success at this point, it means that | |
1151 some clod deleted the selection while we were in the midst of | |
1152 reading it. Deal with that, I guess.... | |
1153 */ | |
1154 if (result != Success) break; | |
1155 *actual_size_ret *= *actual_format_ret / 8; | |
1156 bcopy (tmp_data, (*data_ret) + offset, *actual_size_ret); | |
1157 offset += *actual_size_ret; | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1158 xfree ((char *) tmp_data); |
2161 | 1159 } |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1160 |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1161 XFlush (display); |
2161 | 1162 UNBLOCK_INPUT; |
1163 *bytes_ret = offset; | |
1164 } | |
1165 | |
1166 static void | |
1167 receive_incremental_selection (display, window, property, target_type, | |
1168 min_size_bytes, data_ret, size_bytes_ret, | |
1169 type_ret, format_ret, size_ret) | |
1170 Display *display; | |
1171 Window window; | |
1172 Atom property; | |
1173 Lisp_Object target_type; /* for error messages only */ | |
1174 unsigned int min_size_bytes; | |
1175 unsigned char **data_ret; | |
1176 int *size_bytes_ret; | |
1177 Atom *type_ret; | |
1178 unsigned long *size_ret; | |
1179 int *format_ret; | |
1180 { | |
1181 int offset = 0; | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1182 struct prop_location *wait_object; |
2161 | 1183 *size_bytes_ret = min_size_bytes; |
1184 *data_ret = (unsigned char *) xmalloc (*size_bytes_ret); | |
1185 #if 0 | |
1186 fprintf (stderr, "\nread INCR %d\n", min_size_bytes); | |
1187 #endif | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1188 |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1189 /* 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
|
1190 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
|
1191 (But first, prepare to receive the next event in this handshake.) |
2161 | 1192 |
1193 Now, we must loop, waiting for the sending window to put a value on | |
1194 that property, then reading the property, then deleting it to ack. | |
1195 We are done when the sender places a property of length 0. | |
1196 */ | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1197 BLOCK_INPUT; |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1198 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
|
1199 XDeleteProperty (display, window, property); |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1200 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
|
1201 PropertyNewValue); |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1202 XFlush (display); |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1203 UNBLOCK_INPUT; |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1204 |
2161 | 1205 while (1) |
1206 { | |
1207 unsigned char *tmp_data; | |
1208 int tmp_size_bytes; | |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1209 wait_for_property_change (wait_object); |
2161 | 1210 /* expect it again immediately, because x_get_window_property may |
1211 .. no it wont, I dont get it. | |
1212 .. Ok, I get it now, the Xt code that implements INCR is broken. | |
1213 */ | |
1214 x_get_window_property (display, window, property, | |
1215 &tmp_data, &tmp_size_bytes, | |
1216 type_ret, format_ret, size_ret, 1); | |
1217 | |
1218 if (tmp_size_bytes == 0) /* we're done */ | |
1219 { | |
1220 #if 0 | |
1221 fprintf (stderr, " read INCR done\n"); | |
1222 #endif | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1223 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
|
1224 XSelectInput (display, window, STANDARD_EVENT_SET); |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1225 unexpect_property_change (wait_object); |
2161 | 1226 if (tmp_data) xfree (tmp_data); |
1227 break; | |
1228 } | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1229 |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1230 BLOCK_INPUT; |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1231 XDeleteProperty (display, window, property); |
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1232 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
|
1233 PropertyNewValue); |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1234 XFlush (display); |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1235 UNBLOCK_INPUT; |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1236 |
2161 | 1237 #if 0 |
1238 fprintf (stderr, " read INCR %d\n", tmp_size_bytes); | |
1239 #endif | |
1240 if (*size_bytes_ret < offset + tmp_size_bytes) | |
1241 { | |
1242 #if 0 | |
1243 fprintf (stderr, " read INCR realloc %d -> %d\n", | |
1244 *size_bytes_ret, offset + tmp_size_bytes); | |
1245 #endif | |
1246 *size_bytes_ret = offset + tmp_size_bytes; | |
1247 *data_ret = (unsigned char *) xrealloc (*data_ret, *size_bytes_ret); | |
1248 } | |
4547
3bd8248cc191
(receive_incremental_selection): Use bcopy, not memcpy.
Richard M. Stallman <rms@gnu.org>
parents:
4373
diff
changeset
|
1249 bcopy (tmp_data, (*data_ret) + offset, tmp_size_bytes); |
2161 | 1250 offset += tmp_size_bytes; |
1251 xfree (tmp_data); | |
1252 } | |
1253 } | |
1254 | |
1255 /* Once a requested selection is "ready" (we got a SelectionNotify event), | |
1256 fetch value from property PROPERTY of X window WINDOW on display DISPLAY. | |
1257 TARGET_TYPE and SELECTION_ATOM are used in error message if this fails. */ | |
1258 | |
1259 static Lisp_Object | |
1260 x_get_window_property_as_lisp_data (display, window, property, target_type, | |
1261 selection_atom) | |
1262 Display *display; | |
1263 Window window; | |
1264 Atom property; | |
1265 Lisp_Object target_type; /* for error messages only */ | |
1266 Atom selection_atom; /* for error messages only */ | |
1267 { | |
1268 Atom actual_type; | |
1269 int actual_format; | |
1270 unsigned long actual_size; | |
1271 unsigned char *data = 0; | |
1272 int bytes = 0; | |
1273 Lisp_Object val; | |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1274 struct x_display_info *dpyinfo = x_display_info_for_display (display); |
2161 | 1275 |
1276 x_get_window_property (display, window, property, &data, &bytes, | |
1277 &actual_type, &actual_format, &actual_size, 1); | |
1278 if (! data) | |
1279 { | |
1280 int there_is_a_selection_owner; | |
1281 BLOCK_INPUT; | |
1282 there_is_a_selection_owner | |
1283 = XGetSelectionOwner (display, selection_atom); | |
1284 UNBLOCK_INPUT; | |
1285 while (1) /* Note debugger can no longer return, so this is obsolete */ | |
1286 Fsignal (Qerror, | |
1287 there_is_a_selection_owner ? | |
1288 Fcons (build_string ("selection owner couldn't convert"), | |
1289 actual_type | |
1290 ? Fcons (target_type, | |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1291 Fcons (x_atom_to_symbol (dpyinfo, display, |
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1292 actual_type), |
2161 | 1293 Qnil)) |
1294 : Fcons (target_type, Qnil)) | |
1295 : Fcons (build_string ("no selection"), | |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1296 Fcons (x_atom_to_symbol (dpyinfo, display, |
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1297 selection_atom), |
2161 | 1298 Qnil))); |
1299 } | |
1300 | |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1301 if (actual_type == dpyinfo->Xatom_INCR) |
2161 | 1302 { |
1303 /* That wasn't really the data, just the beginning. */ | |
1304 | |
1305 unsigned int min_size_bytes = * ((unsigned int *) data); | |
1306 BLOCK_INPUT; | |
1307 XFree ((char *) data); | |
1308 UNBLOCK_INPUT; | |
1309 receive_incremental_selection (display, window, property, target_type, | |
1310 min_size_bytes, &data, &bytes, | |
1311 &actual_type, &actual_format, | |
1312 &actual_size); | |
1313 } | |
1314 | |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1315 BLOCK_INPUT; |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1316 XDeleteProperty (display, window, property); |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1317 XFlush (display); |
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1318 UNBLOCK_INPUT; |
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1319 |
2161 | 1320 /* It's been read. Now convert it to a lisp object in some semi-rational |
1321 manner. */ | |
1322 val = selection_data_to_lisp_data (display, data, bytes, | |
1323 actual_type, actual_format); | |
1324 | |
1325 xfree ((char *) data); | |
1326 return val; | |
1327 } | |
1328 | |
1329 /* These functions convert from the selection data read from the server into | |
1330 something that we can use from Lisp, and vice versa. | |
1331 | |
1332 Type: Format: Size: Lisp Type: | |
1333 ----- ------- ----- ----------- | |
1334 * 8 * String | |
1335 ATOM 32 1 Symbol | |
1336 ATOM 32 > 1 Vector of Symbols | |
1337 * 16 1 Integer | |
1338 * 16 > 1 Vector of Integers | |
1339 * 32 1 if <=16 bits: Integer | |
1340 if > 16 bits: Cons of top16, bot16 | |
1341 * 32 > 1 Vector of the above | |
1342 | |
1343 When converting a Lisp number to C, it is assumed to be of format 16 if | |
1344 it is an integer, and of format 32 if it is a cons of two integers. | |
1345 | |
1346 When converting a vector of numbers from Lisp to C, it is assumed to be | |
1347 of format 16 if every element in the vector is an integer, and is assumed | |
1348 to be of format 32 if any element is a cons of two integers. | |
1349 | |
1350 When converting an object to C, it may be of the form (SYMBOL . <data>) | |
1351 where SYMBOL is what we should claim that the type is. Format and | |
1352 representation are as above. */ | |
1353 | |
1354 | |
1355 | |
1356 static Lisp_Object | |
1357 selection_data_to_lisp_data (display, data, size, type, format) | |
1358 Display *display; | |
1359 unsigned char *data; | |
1360 Atom type; | |
1361 int size, format; | |
1362 { | |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1363 struct x_display_info *dpyinfo = x_display_info_for_display (display); |
2161 | 1364 |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1365 if (type == dpyinfo->Xatom_NULL) |
2161 | 1366 return QNULL; |
1367 | |
1368 /* Convert any 8-bit data to a string, for compactness. */ | |
1369 else if (format == 8) | |
1370 return make_string ((char *) data, size); | |
1371 | |
1372 /* Convert a single atom to a Lisp_Symbol. Convert a set of atoms to | |
1373 a vector of symbols. | |
1374 */ | |
1375 else if (type == XA_ATOM) | |
1376 { | |
1377 int i; | |
1378 if (size == sizeof (Atom)) | |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1379 return x_atom_to_symbol (dpyinfo, display, *((Atom *) data)); |
2161 | 1380 else |
1381 { | |
1382 Lisp_Object v = Fmake_vector (size / sizeof (Atom), 0); | |
1383 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
|
1384 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
|
1385 ((Atom *) data) [i])); |
2161 | 1386 return v; |
1387 } | |
1388 } | |
1389 | |
1390 /* Convert a single 16 or small 32 bit number to a Lisp_Int. | |
1391 If the number is > 16 bits, convert it to a cons of integers, | |
1392 16 bits in each half. | |
1393 */ | |
1394 else if (format == 32 && size == sizeof (long)) | |
1395 return long_to_cons (((unsigned long *) data) [0]); | |
1396 else if (format == 16 && size == sizeof (short)) | |
1397 return make_number ((int) (((unsigned short *) data) [0])); | |
1398 | |
1399 /* Convert any other kind of data to a vector of numbers, represented | |
1400 as above (as an integer, or a cons of two 16 bit integers.) | |
1401 */ | |
1402 else if (format == 16) | |
1403 { | |
1404 int i; | |
1405 Lisp_Object v = Fmake_vector (size / 4, 0); | |
1406 for (i = 0; i < size / 4; i++) | |
1407 { | |
1408 int j = (int) ((unsigned short *) data) [i]; | |
1409 Faset (v, i, make_number (j)); | |
1410 } | |
1411 return v; | |
1412 } | |
1413 else | |
1414 { | |
1415 int i; | |
1416 Lisp_Object v = Fmake_vector (size / 4, 0); | |
1417 for (i = 0; i < size / 4; i++) | |
1418 { | |
1419 unsigned long j = ((unsigned long *) data) [i]; | |
1420 Faset (v, i, long_to_cons (j)); | |
1421 } | |
1422 return v; | |
1423 } | |
1424 } | |
1425 | |
1426 | |
1427 static void | |
1428 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
|
1429 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
|
1430 format_ret, nofree_ret) |
2161 | 1431 Display *display; |
1432 Lisp_Object obj; | |
1433 unsigned char **data_ret; | |
1434 Atom *type_ret; | |
1435 unsigned int *size_ret; | |
1436 int *format_ret; | |
4278
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1437 int *nofree_ret; |
2161 | 1438 { |
1439 Lisp_Object type = Qnil; | |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1440 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
|
1441 |
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1442 *nofree_ret = 0; |
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1443 |
2161 | 1444 if (CONSP (obj) && SYMBOLP (XCONS (obj)->car)) |
1445 { | |
1446 type = XCONS (obj)->car; | |
1447 obj = XCONS (obj)->cdr; | |
1448 if (CONSP (obj) && NILP (XCONS (obj)->cdr)) | |
1449 obj = XCONS (obj)->car; | |
1450 } | |
1451 | |
1452 if (EQ (obj, QNULL) || (EQ (type, QNULL))) | |
1453 { /* This is not the same as declining */ | |
1454 *format_ret = 32; | |
1455 *size_ret = 0; | |
1456 *data_ret = 0; | |
1457 type = QNULL; | |
1458 } | |
1459 else if (STRINGP (obj)) | |
1460 { | |
1461 *format_ret = 8; | |
1462 *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
|
1463 *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
|
1464 *nofree_ret = 1; |
2161 | 1465 if (NILP (type)) type = QSTRING; |
1466 } | |
1467 else if (SYMBOLP (obj)) | |
1468 { | |
1469 *format_ret = 32; | |
1470 *size_ret = 1; | |
1471 *data_ret = (unsigned char *) xmalloc (sizeof (Atom) + 1); | |
1472 (*data_ret) [sizeof (Atom)] = 0; | |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1473 (*(Atom **) data_ret) [0] = symbol_to_x_atom (dpyinfo, display, obj); |
2161 | 1474 if (NILP (type)) type = QATOM; |
1475 } | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1476 else if (INTEGERP (obj) |
2161 | 1477 && XINT (obj) < 0xFFFF |
1478 && XINT (obj) > -0xFFFF) | |
1479 { | |
1480 *format_ret = 16; | |
1481 *size_ret = 1; | |
1482 *data_ret = (unsigned char *) xmalloc (sizeof (short) + 1); | |
1483 (*data_ret) [sizeof (short)] = 0; | |
1484 (*(short **) data_ret) [0] = (short) XINT (obj); | |
1485 if (NILP (type)) type = QINTEGER; | |
1486 } | |
2169 | 1487 else if (INTEGERP (obj) |
1488 || (CONSP (obj) && INTEGERP (XCONS (obj)->car) | |
1489 && (INTEGERP (XCONS (obj)->cdr) | |
1490 || (CONSP (XCONS (obj)->cdr) | |
1491 && INTEGERP (XCONS (XCONS (obj)->cdr)->car))))) | |
2161 | 1492 { |
1493 *format_ret = 32; | |
1494 *size_ret = 1; | |
1495 *data_ret = (unsigned char *) xmalloc (sizeof (long) + 1); | |
1496 (*data_ret) [sizeof (long)] = 0; | |
1497 (*(unsigned long **) data_ret) [0] = cons_to_long (obj); | |
1498 if (NILP (type)) type = QINTEGER; | |
1499 } | |
1500 else if (VECTORP (obj)) | |
1501 { | |
1502 /* Lisp_Vectors may represent a set of ATOMs; | |
1503 a set of 16 or 32 bit INTEGERs; | |
1504 or a set of ATOM_PAIRs (represented as [[A1 A2] [A3 A4] ...] | |
1505 */ | |
1506 int i; | |
1507 | |
1508 if (SYMBOLP (XVECTOR (obj)->contents [0])) | |
1509 /* This vector is an ATOM set */ | |
1510 { | |
1511 if (NILP (type)) type = QATOM; | |
1512 *size_ret = XVECTOR (obj)->size; | |
1513 *format_ret = 32; | |
1514 *data_ret = (unsigned char *) xmalloc ((*size_ret) * sizeof (Atom)); | |
1515 for (i = 0; i < *size_ret; i++) | |
1516 if (SYMBOLP (XVECTOR (obj)->contents [i])) | |
1517 (*(Atom **) data_ret) [i] | |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1518 = symbol_to_x_atom (dpyinfo, display, XVECTOR (obj)->contents [i]); |
2161 | 1519 else |
1520 Fsignal (Qerror, /* Qselection_error */ | |
1521 Fcons (build_string | |
1522 ("all elements of selection vector must have same type"), | |
1523 Fcons (obj, Qnil))); | |
1524 } | |
1525 #if 0 /* #### MULTIPLE doesn't work yet */ | |
1526 else if (VECTORP (XVECTOR (obj)->contents [0])) | |
1527 /* This vector is an ATOM_PAIR set */ | |
1528 { | |
1529 if (NILP (type)) type = QATOM_PAIR; | |
1530 *size_ret = XVECTOR (obj)->size; | |
1531 *format_ret = 32; | |
1532 *data_ret = (unsigned char *) | |
1533 xmalloc ((*size_ret) * sizeof (Atom) * 2); | |
1534 for (i = 0; i < *size_ret; i++) | |
1535 if (VECTORP (XVECTOR (obj)->contents [i])) | |
1536 { | |
1537 Lisp_Object pair = XVECTOR (obj)->contents [i]; | |
1538 if (XVECTOR (pair)->size != 2) | |
1539 Fsignal (Qerror, | |
1540 Fcons (build_string | |
1541 ("elements of the vector must be vectors of exactly two elements"), | |
1542 Fcons (pair, Qnil))); | |
1543 | |
1544 (*(Atom **) data_ret) [i * 2] | |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1545 = symbol_to_x_atom (dpyinfo, display, |
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1546 XVECTOR (pair)->contents [0]); |
2161 | 1547 (*(Atom **) data_ret) [(i * 2) + 1] |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1548 = symbol_to_x_atom (dpyinfo, display, |
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1549 XVECTOR (pair)->contents [1]); |
2161 | 1550 } |
1551 else | |
1552 Fsignal (Qerror, | |
1553 Fcons (build_string | |
1554 ("all elements of the vector must be of the same type"), | |
1555 Fcons (obj, Qnil))); | |
1556 | |
1557 } | |
1558 #endif | |
1559 else | |
1560 /* This vector is an INTEGER set, or something like it */ | |
1561 { | |
1562 *size_ret = XVECTOR (obj)->size; | |
1563 if (NILP (type)) type = QINTEGER; | |
1564 *format_ret = 16; | |
1565 for (i = 0; i < *size_ret; i++) | |
1566 if (CONSP (XVECTOR (obj)->contents [i])) | |
1567 *format_ret = 32; | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1568 else if (!INTEGERP (XVECTOR (obj)->contents [i])) |
2161 | 1569 Fsignal (Qerror, /* Qselection_error */ |
1570 Fcons (build_string | |
1571 ("elements of selection vector must be integers or conses of integers"), | |
1572 Fcons (obj, Qnil))); | |
1573 | |
1574 *data_ret = (unsigned char *) xmalloc (*size_ret * (*format_ret/8)); | |
1575 for (i = 0; i < *size_ret; i++) | |
1576 if (*format_ret == 32) | |
1577 (*((unsigned long **) data_ret)) [i] | |
1578 = cons_to_long (XVECTOR (obj)->contents [i]); | |
1579 else | |
1580 (*((unsigned short **) data_ret)) [i] | |
1581 = (unsigned short) cons_to_long (XVECTOR (obj)->contents [i]); | |
1582 } | |
1583 } | |
1584 else | |
1585 Fsignal (Qerror, /* Qselection_error */ | |
1586 Fcons (build_string ("unrecognised selection data"), | |
1587 Fcons (obj, Qnil))); | |
1588 | |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1589 *type_ret = symbol_to_x_atom (dpyinfo, display, type); |
2161 | 1590 } |
1591 | |
1592 static Lisp_Object | |
1593 clean_local_selection_data (obj) | |
1594 Lisp_Object obj; | |
1595 { | |
1596 if (CONSP (obj) | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1597 && INTEGERP (XCONS (obj)->car) |
2161 | 1598 && CONSP (XCONS (obj)->cdr) |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1599 && INTEGERP (XCONS (XCONS (obj)->cdr)->car) |
2161 | 1600 && NILP (XCONS (XCONS (obj)->cdr)->cdr)) |
1601 obj = Fcons (XCONS (obj)->car, XCONS (obj)->cdr); | |
1602 | |
1603 if (CONSP (obj) | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1604 && INTEGERP (XCONS (obj)->car) |
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1605 && INTEGERP (XCONS (obj)->cdr)) |
2161 | 1606 { |
1607 if (XINT (XCONS (obj)->car) == 0) | |
1608 return XCONS (obj)->cdr; | |
1609 if (XINT (XCONS (obj)->car) == -1) | |
1610 return make_number (- XINT (XCONS (obj)->cdr)); | |
1611 } | |
1612 if (VECTORP (obj)) | |
1613 { | |
1614 int i; | |
1615 int size = XVECTOR (obj)->size; | |
1616 Lisp_Object copy; | |
1617 if (size == 1) | |
1618 return clean_local_selection_data (XVECTOR (obj)->contents [0]); | |
1619 copy = Fmake_vector (size, Qnil); | |
1620 for (i = 0; i < size; i++) | |
1621 XVECTOR (copy)->contents [i] | |
1622 = clean_local_selection_data (XVECTOR (obj)->contents [i]); | |
1623 return copy; | |
1624 } | |
1625 return obj; | |
1626 } | |
1627 | |
1628 /* Called from XTread_socket to handle SelectionNotify events. | |
1629 If it's the selection we are waiting for, stop waiting. */ | |
1630 | |
1631 void | |
1632 x_handle_selection_notify (event) | |
1633 XSelectionEvent *event; | |
1634 { | |
1635 if (event->requestor != reading_selection_window) | |
1636 return; | |
1637 if (event->selection != reading_which_selection) | |
1638 return; | |
1639 | |
1640 XCONS (reading_selection_reply)->car = Qt; | |
1641 } | |
1642 | |
1643 | |
1644 DEFUN ("x-own-selection-internal", | |
1645 Fx_own_selection_internal, Sx_own_selection_internal, | |
1646 2, 2, 0, | |
1647 "Assert an X selection of the given TYPE with the given VALUE.\n\ | |
1648 TYPE is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\ | |
1649 \(Those are literal upper-case symbol names, since that's what X expects.)\n\ | |
1650 VALUE is typically a string, or a cons of two markers, but may be\n\ | |
2169 | 1651 anything that the functions on `selection-converter-alist' know about.") |
2161 | 1652 (selection_name, selection_value) |
1653 Lisp_Object selection_name, selection_value; | |
1654 { | |
5947
9ff439565145
(x-own-selection-internal, x-get-selection-internal,
Karl Heuer <kwzh@gnu.org>
parents:
5244
diff
changeset
|
1655 check_x (); |
2161 | 1656 CHECK_SYMBOL (selection_name, 0); |
1657 if (NILP (selection_value)) error ("selection-value may not be nil."); | |
1658 x_own_selection (selection_name, selection_value); | |
1659 return selection_value; | |
1660 } | |
1661 | |
1662 | |
1663 /* Request the selection value from the owner. If we are the owner, | |
1664 simply return our selection value. If we are not the owner, this | |
1665 will block until all of the data has arrived. */ | |
1666 | |
1667 DEFUN ("x-get-selection-internal", | |
1668 Fx_get_selection_internal, Sx_get_selection_internal, 2, 2, 0, | |
1669 "Return text selected from some X window.\n\ | |
1670 SELECTION is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\ | |
1671 \(Those are literal upper-case symbol names, since that's what X expects.)\n\ | |
2169 | 1672 TYPE is the type of data desired, typically `STRING'.") |
2161 | 1673 (selection_symbol, target_type) |
1674 Lisp_Object selection_symbol, target_type; | |
1675 { | |
1676 Lisp_Object val = Qnil; | |
1677 struct gcpro gcpro1, gcpro2; | |
1678 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
|
1679 check_x (); |
2161 | 1680 CHECK_SYMBOL (selection_symbol, 0); |
1681 | |
1682 #if 0 /* #### MULTIPLE doesn't work yet */ | |
1683 if (CONSP (target_type) | |
1684 && XCONS (target_type)->car == QMULTIPLE) | |
1685 { | |
1686 CHECK_VECTOR (XCONS (target_type)->cdr, 0); | |
1687 /* So we don't destructively modify this... */ | |
1688 target_type = copy_multiple_data (target_type); | |
1689 } | |
1690 else | |
1691 #endif | |
1692 CHECK_SYMBOL (target_type, 0); | |
1693 | |
1694 val = x_get_local_selection (selection_symbol, target_type); | |
1695 | |
1696 if (NILP (val)) | |
1697 { | |
1698 val = x_get_foreign_selection (selection_symbol, target_type); | |
1699 goto DONE; | |
1700 } | |
1701 | |
1702 if (CONSP (val) | |
1703 && SYMBOLP (XCONS (val)->car)) | |
1704 { | |
1705 val = XCONS (val)->cdr; | |
1706 if (CONSP (val) && NILP (XCONS (val)->cdr)) | |
1707 val = XCONS (val)->car; | |
1708 } | |
1709 val = clean_local_selection_data (val); | |
1710 DONE: | |
1711 UNGCPRO; | |
1712 return val; | |
1713 } | |
1714 | |
1715 DEFUN ("x-disown-selection-internal", | |
1716 Fx_disown_selection_internal, Sx_disown_selection_internal, 1, 2, 0, | |
2169 | 1717 "If we own the selection SELECTION, disown it.\n\ |
1718 Disowning it means there is no such selection.") | |
2161 | 1719 (selection, time) |
1720 Lisp_Object selection; | |
1721 Lisp_Object time; | |
1722 { | |
1723 Time timestamp; | |
1724 Atom selection_atom; | |
1725 XSelectionClearEvent event; | |
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1726 Display *display; |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1727 struct x_display_info *dpyinfo; |
2161 | 1728 |
5947
9ff439565145
(x-own-selection-internal, x-get-selection-internal,
Karl Heuer <kwzh@gnu.org>
parents:
5244
diff
changeset
|
1729 check_x (); |
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1730 display = FRAME_X_DISPLAY (selected_frame); |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1731 dpyinfo = FRAME_X_DISPLAY_INFO (selected_frame); |
2161 | 1732 CHECK_SYMBOL (selection, 0); |
1733 if (NILP (time)) | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1734 timestamp = last_event_timestamp; |
2161 | 1735 else |
1736 timestamp = cons_to_long (time); | |
1737 | |
1738 if (NILP (assq_no_quit (selection, Vselection_alist))) | |
1739 return Qnil; /* Don't disown the selection when we're not the owner. */ | |
1740 | |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1741 selection_atom = symbol_to_x_atom (dpyinfo, display, selection); |
2161 | 1742 |
1743 BLOCK_INPUT; | |
1744 XSetSelectionOwner (display, selection_atom, None, timestamp); | |
1745 UNBLOCK_INPUT; | |
1746 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3492
diff
changeset
|
1747 /* It doesn't seem to be guaranteed that a SelectionClear event will be |
2161 | 1748 generated for a window which owns the selection when that window sets |
1749 the selection owner to None. The NCD server does, the MIT Sun4 server | |
1750 doesn't. So we synthesize one; this means we might get two, but | |
1751 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
|
1752 SELECTION_EVENT_DISPLAY (&event) = display; |
69078817ec92
(Fx_disown_selection_internal): When making the fake
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
1753 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
|
1754 SELECTION_EVENT_TIME (&event) = timestamp; |
2161 | 1755 x_handle_selection_clear (&event); |
1756 | |
1757 return Qt; | |
1758 } | |
1759 | |
2169 | 1760 /* Get rid of all the selections in buffer BUFFER. |
1761 This is used when we kill a buffer. */ | |
1762 | |
1763 void | |
1764 x_disown_buffer_selections (buffer) | |
1765 Lisp_Object buffer; | |
1766 { | |
1767 Lisp_Object tail; | |
1768 struct buffer *buf = XBUFFER (buffer); | |
1769 | |
1770 for (tail = Vselection_alist; CONSP (tail); tail = XCONS (tail)->cdr) | |
1771 { | |
1772 Lisp_Object elt, value; | |
1773 elt = XCONS (tail)->car; | |
1774 value = XCONS (elt)->cdr; | |
1775 if (CONSP (value) && MARKERP (XCONS (value)->car) | |
1776 && XMARKER (XCONS (value)->car)->buffer == buf) | |
1777 Fx_disown_selection_internal (XCONS (elt)->car, Qnil); | |
1778 } | |
1779 } | |
2161 | 1780 |
1781 DEFUN ("x-selection-owner-p", Fx_selection_owner_p, Sx_selection_owner_p, | |
1782 0, 1, 0, | |
2169 | 1783 "Whether the current Emacs process owns the given X Selection.\n\ |
2161 | 1784 The arg should be the name of the selection in question, typically one of\n\ |
1785 the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\ | |
1786 \(Those are literal upper-case symbol names, since that's what X expects.)\n\ | |
1787 For convenience, the symbol nil is the same as `PRIMARY',\n\ | |
1788 and t is the same as `SECONDARY'.)") | |
1789 (selection) | |
1790 Lisp_Object selection; | |
1791 { | |
5947
9ff439565145
(x-own-selection-internal, x-get-selection-internal,
Karl Heuer <kwzh@gnu.org>
parents:
5244
diff
changeset
|
1792 check_x (); |
2161 | 1793 CHECK_SYMBOL (selection, 0); |
1794 if (EQ (selection, Qnil)) selection = QPRIMARY; | |
1795 if (EQ (selection, Qt)) selection = QSECONDARY; | |
1796 | |
1797 if (NILP (Fassq (selection, Vselection_alist))) | |
1798 return Qnil; | |
1799 return Qt; | |
1800 } | |
1801 | |
1802 DEFUN ("x-selection-exists-p", Fx_selection_exists_p, Sx_selection_exists_p, | |
1803 0, 1, 0, | |
1804 "Whether there is an owner for the given X Selection.\n\ | |
1805 The arg should be the name of the selection in question, typically one of\n\ | |
1806 the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\ | |
1807 \(Those are literal upper-case symbol names, since that's what X expects.)\n\ | |
1808 For convenience, the symbol nil is the same as `PRIMARY',\n\ | |
1809 and t is the same as `SECONDARY'.)") | |
1810 (selection) | |
1811 Lisp_Object selection; | |
1812 { | |
1813 Window owner; | |
2797
ae18dabac465
(Fx_selection_exists_p): Handle nil, t as SELECTION arg.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
1814 Atom atom; |
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1815 Display *dpy; |
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1816 |
5947
9ff439565145
(x-own-selection-internal, x-get-selection-internal,
Karl Heuer <kwzh@gnu.org>
parents:
5244
diff
changeset
|
1817 check_x (); |
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1818 dpy = FRAME_X_DISPLAY (selected_frame); |
2161 | 1819 CHECK_SYMBOL (selection, 0); |
1820 if (!NILP (Fx_selection_owner_p (selection))) | |
1821 return Qt; | |
2797
ae18dabac465
(Fx_selection_exists_p): Handle nil, t as SELECTION arg.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
1822 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
|
1823 if (EQ (selection, Qt)) selection = QSECONDARY; |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1824 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
|
1825 dpy, selection); |
2797
ae18dabac465
(Fx_selection_exists_p): Handle nil, t as SELECTION arg.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
1826 if (atom == 0) |
ae18dabac465
(Fx_selection_exists_p): Handle nil, t as SELECTION arg.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
1827 return Qnil; |
2161 | 1828 BLOCK_INPUT; |
2797
ae18dabac465
(Fx_selection_exists_p): Handle nil, t as SELECTION arg.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
1829 owner = XGetSelectionOwner (dpy, atom); |
2161 | 1830 UNBLOCK_INPUT; |
1831 return (owner ? Qt : Qnil); | |
1832 } | |
1833 | |
1834 | |
1835 #ifdef CUT_BUFFER_SUPPORT | |
1836 | |
1837 static int cut_buffers_initialized; /* Whether we're sure they all exist */ | |
1838 | |
1839 /* Ensure that all 8 cut buffers exist. ICCCM says we gotta... */ | |
1840 static void | |
1841 initialize_cut_buffers (display, window) | |
1842 Display *display; | |
1843 Window window; | |
1844 { | |
1845 unsigned char *data = (unsigned char *) ""; | |
1846 BLOCK_INPUT; | |
1847 #define FROB(atom) XChangeProperty (display, window, atom, XA_STRING, 8, \ | |
1848 PropModeAppend, data, 0) | |
1849 FROB (XA_CUT_BUFFER0); | |
1850 FROB (XA_CUT_BUFFER1); | |
1851 FROB (XA_CUT_BUFFER2); | |
1852 FROB (XA_CUT_BUFFER3); | |
1853 FROB (XA_CUT_BUFFER4); | |
1854 FROB (XA_CUT_BUFFER5); | |
1855 FROB (XA_CUT_BUFFER6); | |
1856 FROB (XA_CUT_BUFFER7); | |
1857 #undef FROB | |
1858 UNBLOCK_INPUT; | |
1859 cut_buffers_initialized = 1; | |
1860 } | |
1861 | |
1862 | |
2169 | 1863 #define CHECK_CUT_BUFFER(symbol,n) \ |
2161 | 1864 { CHECK_SYMBOL ((symbol), (n)); \ |
1865 if (!EQ((symbol), QCUT_BUFFER0) && !EQ((symbol), QCUT_BUFFER1) \ | |
1866 && !EQ((symbol), QCUT_BUFFER2) && !EQ((symbol), QCUT_BUFFER3) \ | |
1867 && !EQ((symbol), QCUT_BUFFER4) && !EQ((symbol), QCUT_BUFFER5) \ | |
1868 && !EQ((symbol), QCUT_BUFFER6) && !EQ((symbol), QCUT_BUFFER7)) \ | |
1869 Fsignal (Qerror, \ | |
2169 | 1870 Fcons (build_string ("doesn't name a cut buffer"), \ |
2161 | 1871 Fcons ((symbol), Qnil))); \ |
1872 } | |
1873 | |
2169 | 1874 DEFUN ("x-get-cut-buffer-internal", Fx_get_cut_buffer_internal, |
1875 Sx_get_cut_buffer_internal, 1, 1, 0, | |
1876 "Returns the value of the named cut buffer (typically CUT_BUFFER0).") | |
2161 | 1877 (buffer) |
1878 Lisp_Object buffer; | |
1879 { | |
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1880 Window window; |
2161 | 1881 Atom buffer_atom; |
1882 unsigned char *data; | |
1883 int bytes; | |
1884 Atom type; | |
1885 int format; | |
1886 unsigned long size; | |
1887 Lisp_Object ret; | |
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1888 Display *display; |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1889 struct x_display_info *dpyinfo; |
2161 | 1890 |
5947
9ff439565145
(x-own-selection-internal, x-get-selection-internal,
Karl Heuer <kwzh@gnu.org>
parents:
5244
diff
changeset
|
1891 check_x (); |
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1892 display = FRAME_X_DISPLAY (selected_frame); |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1893 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
|
1894 window = RootWindow (display, 0); /* Cut buffers are on screen 0 */ |
2169 | 1895 CHECK_CUT_BUFFER (buffer, 0); |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1896 buffer_atom = symbol_to_x_atom (dpyinfo, display, buffer); |
2161 | 1897 |
1898 x_get_window_property (display, window, buffer_atom, &data, &bytes, | |
1899 &type, &format, &size, 0); | |
1900 if (!data) return Qnil; | |
1901 | |
1902 if (format != 8 || type != XA_STRING) | |
1903 Fsignal (Qerror, | |
1904 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
|
1905 Fcons (x_atom_to_symbol (dpyinfo, display, type), |
2161 | 1906 Fcons (make_number (format), Qnil)))); |
1907 | |
1908 ret = (bytes ? make_string ((char *) data, bytes) : Qnil); | |
1909 xfree (data); | |
1910 return ret; | |
1911 } | |
1912 | |
1913 | |
2169 | 1914 DEFUN ("x-store-cut-buffer-internal", Fx_store_cut_buffer_internal, |
1915 Sx_store_cut_buffer_internal, 2, 2, 0, | |
1916 "Sets the value of the named cut buffer (typically CUT_BUFFER0).") | |
2161 | 1917 (buffer, string) |
1918 Lisp_Object buffer, string; | |
1919 { | |
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1920 Window window; |
2161 | 1921 Atom buffer_atom; |
1922 unsigned char *data; | |
1923 int bytes; | |
1924 int bytes_remaining; | |
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1925 int max_bytes; |
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1926 Display *display; |
2161 | 1927 |
5947
9ff439565145
(x-own-selection-internal, x-get-selection-internal,
Karl Heuer <kwzh@gnu.org>
parents:
5244
diff
changeset
|
1928 check_x (); |
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1929 display = FRAME_X_DISPLAY (selected_frame); |
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1930 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
|
1931 |
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1932 max_bytes = SELECTION_QUANTUM (display); |
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1933 if (max_bytes > MAX_SELECTION_QUANTUM) |
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1934 max_bytes = MAX_SELECTION_QUANTUM; |
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1935 |
2169 | 1936 CHECK_CUT_BUFFER (buffer, 0); |
2161 | 1937 CHECK_STRING (string, 0); |
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1938 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
|
1939 display, buffer); |
2161 | 1940 data = (unsigned char *) XSTRING (string)->data; |
1941 bytes = XSTRING (string)->size; | |
1942 bytes_remaining = bytes; | |
1943 | |
1944 if (! cut_buffers_initialized) initialize_cut_buffers (display, window); | |
1945 | |
1946 BLOCK_INPUT; | |
3473
e1d043cb2f1a
(Fx_store_cut_buffer_internal): Handle empty string right.
Richard M. Stallman <rms@gnu.org>
parents:
3348
diff
changeset
|
1947 |
e1d043cb2f1a
(Fx_store_cut_buffer_internal): Handle empty string right.
Richard M. Stallman <rms@gnu.org>
parents:
3348
diff
changeset
|
1948 /* 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
|
1949 if (!bytes_remaining) |
e1d043cb2f1a
(Fx_store_cut_buffer_internal): Handle empty string right.
Richard M. Stallman <rms@gnu.org>
parents:
3348
diff
changeset
|
1950 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
|
1951 PropModeReplace, data, 0); |
e1d043cb2f1a
(Fx_store_cut_buffer_internal): Handle empty string right.
Richard M. Stallman <rms@gnu.org>
parents:
3348
diff
changeset
|
1952 |
2161 | 1953 while (bytes_remaining) |
1954 { | |
1955 int chunk = (bytes_remaining < max_bytes | |
1956 ? bytes_remaining : max_bytes); | |
1957 XChangeProperty (display, window, buffer_atom, XA_STRING, 8, | |
1958 (bytes_remaining == bytes | |
1959 ? PropModeReplace | |
1960 : PropModeAppend), | |
1961 data, chunk); | |
1962 data += chunk; | |
1963 bytes_remaining -= chunk; | |
1964 } | |
1965 UNBLOCK_INPUT; | |
1966 return string; | |
1967 } | |
1968 | |
1969 | |
2169 | 1970 DEFUN ("x-rotate-cut-buffers-internal", Fx_rotate_cut_buffers_internal, |
1971 Sx_rotate_cut_buffers_internal, 1, 1, 0, | |
1972 "Rotate the values of the cut buffers by the given number of steps;\n\ | |
2161 | 1973 positive means move values forward, negative means backward.") |
1974 (n) | |
1975 Lisp_Object n; | |
1976 { | |
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1977 Window window; |
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1978 Atom props[8]; |
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1979 Display *display; |
2161 | 1980 |
5947
9ff439565145
(x-own-selection-internal, x-get-selection-internal,
Karl Heuer <kwzh@gnu.org>
parents:
5244
diff
changeset
|
1981 check_x (); |
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1982 display = FRAME_X_DISPLAY (selected_frame); |
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1983 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
|
1984 CHECK_NUMBER (n, 0); |
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1985 if (XINT (n) == 0) |
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1986 return n; |
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1987 if (! cut_buffers_initialized) |
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1988 initialize_cut_buffers (display, window); |
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1989 |
2161 | 1990 props[0] = XA_CUT_BUFFER0; |
1991 props[1] = XA_CUT_BUFFER1; | |
1992 props[2] = XA_CUT_BUFFER2; | |
1993 props[3] = XA_CUT_BUFFER3; | |
1994 props[4] = XA_CUT_BUFFER4; | |
1995 props[5] = XA_CUT_BUFFER5; | |
1996 props[6] = XA_CUT_BUFFER6; | |
1997 props[7] = XA_CUT_BUFFER7; | |
1998 BLOCK_INPUT; | |
1999 XRotateWindowProperties (display, window, props, 8, XINT (n)); | |
2000 UNBLOCK_INPUT; | |
2001 return n; | |
2002 } | |
2003 | |
2004 #endif | |
2005 | |
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
2006 void |
2161 | 2007 syms_of_xselect () |
2008 { | |
2009 defsubr (&Sx_get_selection_internal); | |
2010 defsubr (&Sx_own_selection_internal); | |
2011 defsubr (&Sx_disown_selection_internal); | |
2012 defsubr (&Sx_selection_owner_p); | |
2013 defsubr (&Sx_selection_exists_p); | |
2014 | |
2015 #ifdef CUT_BUFFER_SUPPORT | |
2169 | 2016 defsubr (&Sx_get_cut_buffer_internal); |
2017 defsubr (&Sx_store_cut_buffer_internal); | |
2018 defsubr (&Sx_rotate_cut_buffers_internal); | |
2161 | 2019 cut_buffers_initialized = 0; |
2020 #endif | |
2021 | |
2022 reading_selection_reply = Fcons (Qnil, Qnil); | |
2023 staticpro (&reading_selection_reply); | |
2024 reading_selection_window = 0; | |
2025 reading_which_selection = 0; | |
2026 | |
2027 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
|
2028 prop_location_identifier = 0; |
2161 | 2029 property_change_reply = Fcons (Qnil, Qnil); |
2030 staticpro (&property_change_reply); | |
2031 | |
2032 Vselection_alist = Qnil; | |
2033 staticpro (&Vselection_alist); | |
2034 | |
2035 DEFVAR_LISP ("selection-converter-alist", &Vselection_converter_alist, | |
2036 "An alist associating X Windows selection-types with functions.\n\ | |
2037 These functions are called to convert the selection, with three args:\n\ | |
2038 the name of the selection (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');\n\ | |
2039 a desired type to which the selection should be converted;\n\ | |
2040 and the local selection value (whatever was given to `x-own-selection').\n\ | |
2041 \n\ | |
2042 The function should return the value to send to the X server\n\ | |
2043 \(typically a string). A return value of nil\n\ | |
2044 means that the conversion could not be done.\n\ | |
2045 A return value which is the symbol `NULL'\n\ | |
2046 means that a side-effect was executed,\n\ | |
2047 and there is no meaningful selection value."); | |
2048 Vselection_converter_alist = Qnil; | |
2049 | |
2050 DEFVAR_LISP ("x-lost-selection-hooks", &Vx_lost_selection_hooks, | |
2051 "A list of functions to be called when Emacs loses an X selection.\n\ | |
2052 \(This happens when some other X client makes its own selection\n\ | |
2053 or when a Lisp program explicitly clears the selection.)\n\ | |
2054 The functions are called with one argument, the selection type\n\ | |
2055 \(a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.)"); | |
2056 Vx_lost_selection_hooks = Qnil; | |
2057 | |
2058 DEFVAR_LISP ("x-sent-selection-hooks", &Vx_sent_selection_hooks, | |
2059 "A list of functions to be called when Emacs answers a selection request.\n\ | |
2060 The functions are called with four arguments:\n\ | |
2061 - the selection name (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');\n\ | |
2062 - the selection-type which Emacs was asked to convert the\n\ | |
2063 selection into before sending (for example, `STRING' or `LENGTH');\n\ | |
2064 - a flag indicating success or failure for responding to the request.\n\ | |
2065 We might have failed (and declined the request) for any number of reasons,\n\ | |
2066 including being asked for a selection that we no longer own, or being asked\n\ | |
2067 to convert into a type that we don't know about or that is inappropriate.\n\ | |
2068 This hook doesn't let you change the behavior of Emacs's selection replies,\n\ | |
2069 it merely informs you that they have happened."); | |
2070 Vx_sent_selection_hooks = Qnil; | |
2071 | |
2072 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
|
2073 "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
|
2074 If the selection owner doens't reply in this time, we give up.\n\ |
2161 | 2075 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
|
2076 \"*selectionTimeout\" resource."); |
2161 | 2077 x_selection_timeout = 0; |
2078 | |
2079 QPRIMARY = intern ("PRIMARY"); staticpro (&QPRIMARY); | |
2080 QSECONDARY = intern ("SECONDARY"); staticpro (&QSECONDARY); | |
2081 QSTRING = intern ("STRING"); staticpro (&QSTRING); | |
2082 QINTEGER = intern ("INTEGER"); staticpro (&QINTEGER); | |
2083 QCLIPBOARD = intern ("CLIPBOARD"); staticpro (&QCLIPBOARD); | |
2084 QTIMESTAMP = intern ("TIMESTAMP"); staticpro (&QTIMESTAMP); | |
2085 QTEXT = intern ("TEXT"); staticpro (&QTEXT); | |
2086 QTIMESTAMP = intern ("TIMESTAMP"); staticpro (&QTIMESTAMP); | |
2087 QDELETE = intern ("DELETE"); staticpro (&QDELETE); | |
2088 QMULTIPLE = intern ("MULTIPLE"); staticpro (&QMULTIPLE); | |
2089 QINCR = intern ("INCR"); staticpro (&QINCR); | |
2090 QEMACS_TMP = intern ("_EMACS_TMP_"); staticpro (&QEMACS_TMP); | |
2091 QTARGETS = intern ("TARGETS"); staticpro (&QTARGETS); | |
2092 QATOM = intern ("ATOM"); staticpro (&QATOM); | |
2093 QATOM_PAIR = intern ("ATOM_PAIR"); staticpro (&QATOM_PAIR); | |
2094 QNULL = intern ("NULL"); staticpro (&QNULL); | |
2095 | |
2096 #ifdef CUT_BUFFER_SUPPORT | |
2097 QCUT_BUFFER0 = intern ("CUT_BUFFER0"); staticpro (&QCUT_BUFFER0); | |
2098 QCUT_BUFFER1 = intern ("CUT_BUFFER1"); staticpro (&QCUT_BUFFER1); | |
2099 QCUT_BUFFER2 = intern ("CUT_BUFFER2"); staticpro (&QCUT_BUFFER2); | |
2100 QCUT_BUFFER3 = intern ("CUT_BUFFER3"); staticpro (&QCUT_BUFFER3); | |
2101 QCUT_BUFFER4 = intern ("CUT_BUFFER4"); staticpro (&QCUT_BUFFER4); | |
2102 QCUT_BUFFER5 = intern ("CUT_BUFFER5"); staticpro (&QCUT_BUFFER5); | |
2103 QCUT_BUFFER6 = intern ("CUT_BUFFER6"); staticpro (&QCUT_BUFFER6); | |
2104 QCUT_BUFFER7 = intern ("CUT_BUFFER7"); staticpro (&QCUT_BUFFER7); | |
2105 #endif | |
2106 | |
2107 } |