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