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