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