Mercurial > emacs
annotate src/xselect.c @ 16646:6aeaedabbb62
(Fend_of_line, Fbeginning_of_line): Declared.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Mon, 09 Dec 1996 00:51:15 +0000 |
| parents | 9b919c5464a4 |
| children | d58064f06282 |
| 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. |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
2 Copyright (C) 1993, 1994, 1995, 1996 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 |
| 2161 | 31 #define CUT_BUFFER_SUPPORT |
| 32 | |
| 33 Lisp_Object QPRIMARY, QSECONDARY, QSTRING, QINTEGER, QCLIPBOARD, QTIMESTAMP, | |
| 34 QTEXT, QDELETE, QMULTIPLE, QINCR, QEMACS_TMP, QTARGETS, QATOM, QNULL, | |
| 35 QATOM_PAIR; | |
| 36 | |
| 37 #ifdef CUT_BUFFER_SUPPORT | |
| 38 Lisp_Object QCUT_BUFFER0, QCUT_BUFFER1, QCUT_BUFFER2, QCUT_BUFFER3, | |
| 39 QCUT_BUFFER4, QCUT_BUFFER5, QCUT_BUFFER6, QCUT_BUFFER7; | |
| 40 #endif | |
| 41 | |
|
11702
afad0099d14b
(Vx_sent_selection_hooks, Vx_lost_selection_hooks, Vselection_alist)
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
42 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
|
43 static Lisp_Object Vx_sent_selection_hooks; |
| 2161 | 44 |
| 45 /* If this is a smaller number than the max-request-size of the display, | |
| 46 emacs will use INCR selection transfer when the selection is larger | |
| 47 than this. The max-request-size is usually around 64k, so if you want | |
| 48 emacs to use incremental selection transfers when the selection is | |
| 49 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
|
50 incremental transfer stuff, but it might improve server performance. */ |
| 2161 | 51 #define MAX_SELECTION_QUANTUM 0xFFFFFF |
| 52 | |
|
2372
ad7cb938ae08
* xselect.c (SELECTION_QUANTUM): Don't use XMaxRequestSize on R3;
Jim Blandy <jimb@redhat.com>
parents:
2255
diff
changeset
|
53 #ifdef HAVE_X11R4 |
|
ad7cb938ae08
* xselect.c (SELECTION_QUANTUM): Don't use XMaxRequestSize on R3;
Jim Blandy <jimb@redhat.com>
parents:
2255
diff
changeset
|
54 #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
|
55 #else |
|
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) (((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
|
57 #endif |
| 2161 | 58 |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
59 /* The timestamp of the last input event Emacs received from the X server. */ |
|
15705
2f5c1df12e01
(last_event_timestamp): Declare, but don't define.
Karl Heuer <kwzh@gnu.org>
parents:
15585
diff
changeset
|
60 /* Defined in keyboard.c. */ |
|
2f5c1df12e01
(last_event_timestamp): Declare, but don't define.
Karl Heuer <kwzh@gnu.org>
parents:
15585
diff
changeset
|
61 extern unsigned long last_event_timestamp; |
| 2161 | 62 |
| 63 /* 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
|
64 ( 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
|
65 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
|
66 SELECTION-VALUE is the value that emacs owns for that selection. |
| 2161 | 67 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
|
68 SELECTION-TIMESTAMP is the time at which emacs began owning this selection, |
| 2161 | 69 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
|
70 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
|
71 If there is an entry in this alist, then it can be assumed that Emacs owns |
| 2161 | 72 that selection. |
| 73 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
|
74 selection-values. */ |
|
afad0099d14b
(Vx_sent_selection_hooks, Vx_lost_selection_hooks, Vselection_alist)
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
75 static Lisp_Object Vselection_alist; |
| 2161 | 76 |
| 77 /* This is an alist whose CARs are selection-types (whose names are the same | |
| 78 as the names of X Atoms) and whose CDRs are the names of Lisp functions to | |
| 79 call to convert the given Emacs selection value to a string representing | |
| 80 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
|
81 selection handling. */ |
|
afad0099d14b
(Vx_sent_selection_hooks, Vx_lost_selection_hooks, Vselection_alist)
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
82 static Lisp_Object Vselection_converter_alist; |
| 2161 | 83 |
| 84 /* 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
|
85 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
|
86 static int x_selection_timeout; |
| 2161 | 87 |
| 88 /* Utility functions */ | |
| 89 | |
| 90 static void lisp_data_to_selection_data (); | |
| 91 static Lisp_Object selection_data_to_lisp_data (); | |
| 92 static Lisp_Object x_get_window_property_as_lisp_data (); | |
| 93 | |
| 94 /* This converts a Lisp symbol to a server Atom, avoiding a server | |
| 95 roundtrip whenever possible. */ | |
| 96 | |
| 97 static Atom | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
98 symbol_to_x_atom (dpyinfo, display, sym) |
|
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
99 struct x_display_info *dpyinfo; |
| 2161 | 100 Display *display; |
| 101 Lisp_Object sym; | |
| 102 { | |
| 103 Atom val; | |
| 104 if (NILP (sym)) return 0; | |
| 105 if (EQ (sym, QPRIMARY)) return XA_PRIMARY; | |
| 106 if (EQ (sym, QSECONDARY)) return XA_SECONDARY; | |
| 107 if (EQ (sym, QSTRING)) return XA_STRING; | |
| 108 if (EQ (sym, QINTEGER)) return XA_INTEGER; | |
| 109 if (EQ (sym, QATOM)) return XA_ATOM; | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
110 if (EQ (sym, QCLIPBOARD)) return dpyinfo->Xatom_CLIPBOARD; |
|
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
111 if (EQ (sym, QTIMESTAMP)) return dpyinfo->Xatom_TIMESTAMP; |
|
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
112 if (EQ (sym, QTEXT)) return dpyinfo->Xatom_TEXT; |
|
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
113 if (EQ (sym, QDELETE)) return dpyinfo->Xatom_DELETE; |
|
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
114 if (EQ (sym, QMULTIPLE)) return dpyinfo->Xatom_MULTIPLE; |
|
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
115 if (EQ (sym, QINCR)) return dpyinfo->Xatom_INCR; |
|
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
116 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
|
117 if (EQ (sym, QTARGETS)) return dpyinfo->Xatom_TARGETS; |
|
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
118 if (EQ (sym, QNULL)) return dpyinfo->Xatom_NULL; |
| 2161 | 119 #ifdef CUT_BUFFER_SUPPORT |
| 120 if (EQ (sym, QCUT_BUFFER0)) return XA_CUT_BUFFER0; | |
| 121 if (EQ (sym, QCUT_BUFFER1)) return XA_CUT_BUFFER1; | |
| 122 if (EQ (sym, QCUT_BUFFER2)) return XA_CUT_BUFFER2; | |
| 123 if (EQ (sym, QCUT_BUFFER3)) return XA_CUT_BUFFER3; | |
| 124 if (EQ (sym, QCUT_BUFFER4)) return XA_CUT_BUFFER4; | |
| 125 if (EQ (sym, QCUT_BUFFER5)) return XA_CUT_BUFFER5; | |
| 126 if (EQ (sym, QCUT_BUFFER6)) return XA_CUT_BUFFER6; | |
| 127 if (EQ (sym, QCUT_BUFFER7)) return XA_CUT_BUFFER7; | |
| 128 #endif | |
| 129 if (!SYMBOLP (sym)) abort (); | |
| 130 | |
| 131 #if 0 | |
| 132 fprintf (stderr, " XInternAtom %s\n", (char *) XSYMBOL (sym)->name->data); | |
| 133 #endif | |
| 134 BLOCK_INPUT; | |
| 135 val = XInternAtom (display, (char *) XSYMBOL (sym)->name->data, False); | |
| 136 UNBLOCK_INPUT; | |
| 137 return val; | |
| 138 } | |
| 139 | |
| 140 | |
| 141 /* This converts a server Atom to a Lisp symbol, avoiding server roundtrips | |
| 142 and calls to intern whenever possible. */ | |
| 143 | |
| 144 static Lisp_Object | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
145 x_atom_to_symbol (dpyinfo, display, atom) |
|
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
146 struct x_display_info *dpyinfo; |
| 2161 | 147 Display *display; |
| 148 Atom atom; | |
| 149 { | |
| 150 char *str; | |
| 151 Lisp_Object val; | |
| 152 if (! atom) return Qnil; | |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
153 switch (atom) |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
154 { |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
155 case XA_PRIMARY: |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
156 return QPRIMARY; |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
157 case XA_SECONDARY: |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
158 return QSECONDARY; |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
159 case XA_STRING: |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
160 return QSTRING; |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
161 case XA_INTEGER: |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
162 return QINTEGER; |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
163 case XA_ATOM: |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
164 return QATOM; |
| 2161 | 165 #ifdef CUT_BUFFER_SUPPORT |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
166 case XA_CUT_BUFFER0: |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
167 return QCUT_BUFFER0; |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
168 case XA_CUT_BUFFER1: |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
169 return QCUT_BUFFER1; |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
170 case XA_CUT_BUFFER2: |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
171 return QCUT_BUFFER2; |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
172 case XA_CUT_BUFFER3: |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
173 return QCUT_BUFFER3; |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
174 case XA_CUT_BUFFER4: |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
175 return QCUT_BUFFER4; |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
176 case XA_CUT_BUFFER5: |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
177 return QCUT_BUFFER5; |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
178 case XA_CUT_BUFFER6: |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
179 return QCUT_BUFFER6; |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
180 case XA_CUT_BUFFER7: |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
181 return QCUT_BUFFER7; |
| 2161 | 182 #endif |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
183 } |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
184 |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
185 if (atom == dpyinfo->Xatom_CLIPBOARD) |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
186 return QCLIPBOARD; |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
187 if (atom == dpyinfo->Xatom_TIMESTAMP) |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
188 return QTIMESTAMP; |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
189 if (atom == dpyinfo->Xatom_TEXT) |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
190 return QTEXT; |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
191 if (atom == dpyinfo->Xatom_DELETE) |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
192 return QDELETE; |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
193 if (atom == dpyinfo->Xatom_MULTIPLE) |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
194 return QMULTIPLE; |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
195 if (atom == dpyinfo->Xatom_INCR) |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
196 return QINCR; |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
197 if (atom == dpyinfo->Xatom_EMACS_TMP) |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
198 return QEMACS_TMP; |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
199 if (atom == dpyinfo->Xatom_TARGETS) |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
200 return QTARGETS; |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
201 if (atom == dpyinfo->Xatom_NULL) |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
202 return QNULL; |
| 2161 | 203 |
| 204 BLOCK_INPUT; | |
| 205 str = XGetAtomName (display, atom); | |
| 206 UNBLOCK_INPUT; | |
| 207 #if 0 | |
| 208 fprintf (stderr, " XGetAtomName --> %s\n", str); | |
| 209 #endif | |
| 210 if (! str) return Qnil; | |
| 211 val = intern (str); | |
| 212 BLOCK_INPUT; | |
|
14371
dfeae392adcd
(x_get_window_property_as_lisp_data): Use xfree, not XFree.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
213 /* This was allocated by Xlib, so use XFree. */ |
| 2161 | 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 |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
723 /* Use free, not XFree, because lisp_data_to_selection_data |
|
14371
dfeae392adcd
(x_get_window_property_as_lisp_data): Use xfree, not XFree.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
724 calls xmalloc itself. */ |
|
4278
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
725 if (!nofree) |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
726 free (data); |
| 2161 | 727 } |
| 728 unbind_to (count, Qnil); | |
| 729 | |
| 730 DONE: | |
| 731 | |
| 732 UNGCPRO; | |
| 733 | |
| 734 /* Let random lisp code notice that the selection has been asked for. */ | |
| 735 { | |
|
6520
bbde44df8b9d
(x_get_local_selection, x_handle_selection_request): Use assignment, not
Karl Heuer <kwzh@gnu.org>
parents:
5947
diff
changeset
|
736 Lisp_Object rest; |
|
bbde44df8b9d
(x_get_local_selection, x_handle_selection_request): Use assignment, not
Karl Heuer <kwzh@gnu.org>
parents:
5947
diff
changeset
|
737 rest = Vx_sent_selection_hooks; |
| 2161 | 738 if (!EQ (rest, Qunbound)) |
| 739 for (; CONSP (rest); rest = Fcdr (rest)) | |
| 740 call3 (Fcar (rest), selection_symbol, target_symbol, successful_p); | |
| 741 } | |
| 742 } | |
| 743 | |
| 744 /* Handle a SelectionClear event EVENT, which indicates that some other | |
| 745 client cleared out our previously asserted selection. | |
| 746 This is called from keyboard.c when such an event is found in the queue. */ | |
| 747 | |
| 748 void | |
| 749 x_handle_selection_clear (event) | |
| 750 struct input_event *event; | |
| 751 { | |
| 752 Display *display = SELECTION_EVENT_DISPLAY (event); | |
| 753 Atom selection = SELECTION_EVENT_SELECTION (event); | |
| 754 Time changed_owner_time = SELECTION_EVENT_TIME (event); | |
| 755 | |
| 756 Lisp_Object selection_symbol, local_selection_data; | |
| 757 Time local_selection_time; | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
758 struct x_display_info *dpyinfo = x_display_info_for_display (display); |
| 2161 | 759 |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
760 selection_symbol = x_atom_to_symbol (dpyinfo, display, selection); |
| 2161 | 761 |
| 762 local_selection_data = assq_no_quit (selection_symbol, Vselection_alist); | |
| 763 | |
| 764 /* Well, we already believe that we don't own it, so that's just fine. */ | |
| 765 if (NILP (local_selection_data)) return; | |
| 766 | |
| 767 local_selection_time = (Time) | |
| 768 cons_to_long (XCONS (XCONS (XCONS (local_selection_data)->cdr)->cdr)->car); | |
| 769 | |
| 770 /* This SelectionClear is for a selection that we no longer own, so we can | |
| 771 disregard it. (That is, we have reasserted the selection since this | |
| 772 request was generated.) */ | |
| 773 | |
| 774 if (changed_owner_time != CurrentTime | |
| 775 && local_selection_time > changed_owner_time) | |
| 776 return; | |
| 777 | |
| 778 /* Otherwise, we're really honest and truly being told to drop it. | |
| 779 Don't use Fdelq as that may QUIT;. */ | |
| 780 | |
| 781 if (EQ (local_selection_data, Fcar (Vselection_alist))) | |
| 782 Vselection_alist = Fcdr (Vselection_alist); | |
| 783 else | |
| 784 { | |
| 785 Lisp_Object rest; | |
| 786 for (rest = Vselection_alist; !NILP (rest); rest = Fcdr (rest)) | |
| 787 if (EQ (local_selection_data, Fcar (XCONS (rest)->cdr))) | |
| 788 { | |
| 789 XCONS (rest)->cdr = Fcdr (XCONS (rest)->cdr); | |
| 790 break; | |
| 791 } | |
| 792 } | |
| 793 | |
| 794 /* Let random lisp code notice that the selection has been stolen. */ | |
| 795 | |
| 796 { | |
|
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
797 Lisp_Object rest; |
|
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
798 rest = Vx_lost_selection_hooks; |
| 2161 | 799 if (!EQ (rest, Qunbound)) |
|
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
800 { |
|
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
801 for (; CONSP (rest); rest = Fcdr (rest)) |
|
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
802 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
|
803 prepare_menu_bars (); |
|
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
804 redisplay_preserve_echo_area (); |
|
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
805 } |
| 2161 | 806 } |
| 807 } | |
| 808 | |
|
8101
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
809 /* 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
|
810 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
|
811 |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
812 void |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
813 x_clear_frame_selections (f) |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
814 FRAME_PTR f; |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
815 { |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
816 Lisp_Object frame; |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
817 Lisp_Object rest; |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
818 |
|
9286
2accc8da0793
(x_clear_frame_selections, wait_for_property_change): Use new accessor macros
Karl Heuer <kwzh@gnu.org>
parents:
8355
diff
changeset
|
819 XSETFRAME (frame, f); |
|
8101
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
820 |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
821 /* 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
|
822 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
|
823 |
|
13555
e640f6afb190
(x_clear_frame_selections): Get selection_symbol properly.
Richard M. Stallman <rms@gnu.org>
parents:
12531
diff
changeset
|
824 /* 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
|
825 while (!NILP (Vselection_alist) |
|
e640f6afb190
(x_clear_frame_selections): Get selection_symbol properly.
Richard M. Stallman <rms@gnu.org>
parents:
12531
diff
changeset
|
826 && 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
|
827 { |
|
e640f6afb190
(x_clear_frame_selections): Get selection_symbol properly.
Richard M. Stallman <rms@gnu.org>
parents:
12531
diff
changeset
|
828 /* 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
|
829 Lisp_Object hooks, selection_symbol; |
|
e640f6afb190
(x_clear_frame_selections): Get selection_symbol properly.
Richard M. Stallman <rms@gnu.org>
parents:
12531
diff
changeset
|
830 |
|
e640f6afb190
(x_clear_frame_selections): Get selection_symbol properly.
Richard M. Stallman <rms@gnu.org>
parents:
12531
diff
changeset
|
831 hooks = Vx_lost_selection_hooks; |
|
e640f6afb190
(x_clear_frame_selections): Get selection_symbol properly.
Richard M. Stallman <rms@gnu.org>
parents:
12531
diff
changeset
|
832 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
|
833 |
|
e640f6afb190
(x_clear_frame_selections): Get selection_symbol properly.
Richard M. Stallman <rms@gnu.org>
parents:
12531
diff
changeset
|
834 if (!EQ (hooks, Qunbound)) |
|
e640f6afb190
(x_clear_frame_selections): Get selection_symbol properly.
Richard M. Stallman <rms@gnu.org>
parents:
12531
diff
changeset
|
835 { |
|
e640f6afb190
(x_clear_frame_selections): Get selection_symbol properly.
Richard M. Stallman <rms@gnu.org>
parents:
12531
diff
changeset
|
836 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
|
837 call1 (Fcar (hooks), selection_symbol); |
|
15585
335aa5c3ce34
(x_clear_frame_selections): Don't call redisplay_preserve_echo_area here.
Miles Bader <miles@gnu.org>
parents:
14372
diff
changeset
|
838 #if 0 /* This can crash when deleting a frame |
|
335aa5c3ce34
(x_clear_frame_selections): Don't call redisplay_preserve_echo_area here.
Miles Bader <miles@gnu.org>
parents:
14372
diff
changeset
|
839 from x_connection_closed. Anyway, it seems unnecessary; |
|
335aa5c3ce34
(x_clear_frame_selections): Don't call redisplay_preserve_echo_area here.
Miles Bader <miles@gnu.org>
parents:
14372
diff
changeset
|
840 something else should cause a redisplay. */ |
|
13555
e640f6afb190
(x_clear_frame_selections): Get selection_symbol properly.
Richard M. Stallman <rms@gnu.org>
parents:
12531
diff
changeset
|
841 redisplay_preserve_echo_area (); |
|
15585
335aa5c3ce34
(x_clear_frame_selections): Don't call redisplay_preserve_echo_area here.
Miles Bader <miles@gnu.org>
parents:
14372
diff
changeset
|
842 #endif |
|
13555
e640f6afb190
(x_clear_frame_selections): Get selection_symbol properly.
Richard M. Stallman <rms@gnu.org>
parents:
12531
diff
changeset
|
843 } |
|
e640f6afb190
(x_clear_frame_selections): Get selection_symbol properly.
Richard M. Stallman <rms@gnu.org>
parents:
12531
diff
changeset
|
844 |
|
e640f6afb190
(x_clear_frame_selections): Get selection_symbol properly.
Richard M. Stallman <rms@gnu.org>
parents:
12531
diff
changeset
|
845 Vselection_alist = Fcdr (Vselection_alist); |
|
e640f6afb190
(x_clear_frame_selections): Get selection_symbol properly.
Richard M. Stallman <rms@gnu.org>
parents:
12531
diff
changeset
|
846 } |
|
e640f6afb190
(x_clear_frame_selections): Get selection_symbol properly.
Richard M. Stallman <rms@gnu.org>
parents:
12531
diff
changeset
|
847 |
|
e640f6afb190
(x_clear_frame_selections): Get selection_symbol properly.
Richard M. Stallman <rms@gnu.org>
parents:
12531
diff
changeset
|
848 /* 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
|
849 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
|
850 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
|
851 { |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
852 /* 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
|
853 Lisp_Object hooks, selection_symbol; |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
854 |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
855 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
|
856 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
|
857 |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
858 if (!EQ (hooks, Qunbound)) |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
859 { |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
860 for (; CONSP (hooks); hooks = Fcdr (hooks)) |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
861 call1 (Fcar (hooks), selection_symbol); |
|
15585
335aa5c3ce34
(x_clear_frame_selections): Don't call redisplay_preserve_echo_area here.
Miles Bader <miles@gnu.org>
parents:
14372
diff
changeset
|
862 #if 0 /* See above */ |
|
8101
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
863 redisplay_preserve_echo_area (); |
|
15585
335aa5c3ce34
(x_clear_frame_selections): Don't call redisplay_preserve_echo_area here.
Miles Bader <miles@gnu.org>
parents:
14372
diff
changeset
|
864 #endif |
|
8101
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
865 } |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
866 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
|
867 break; |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
868 } |
|
77d5b5c8a71f
(x_own_selection, x_get_foreign_selection):
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
869 } |
| 2161 | 870 |
| 871 /* Nonzero if any properties for DISPLAY and WINDOW | |
| 872 are on the list of what we are waiting for. */ | |
| 873 | |
| 874 static int | |
| 875 waiting_for_other_props_on_window (display, window) | |
| 876 Display *display; | |
| 877 Window window; | |
| 878 { | |
| 879 struct prop_location *rest = property_change_wait_list; | |
| 880 while (rest) | |
| 881 if (rest->display == display && rest->window == window) | |
| 882 return 1; | |
| 883 else | |
| 884 rest = rest->next; | |
| 885 return 0; | |
| 886 } | |
| 887 | |
| 888 /* Add an entry to the list of property changes we are waiting for. | |
| 889 DISPLAY, WINDOW, PROPERTY, STATE describe what we will wait for. | |
| 890 The return value is a number that uniquely identifies | |
| 891 this awaited property change. */ | |
| 892 | |
|
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
893 static struct prop_location * |
| 2161 | 894 expect_property_change (display, window, property, state) |
| 895 Display *display; | |
| 896 Window window; | |
| 897 Lisp_Object property; | |
| 898 int state; | |
| 899 { | |
| 900 struct prop_location *pl | |
| 901 = (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
|
902 pl->identifier = ++prop_location_identifier; |
| 2161 | 903 pl->display = display; |
| 904 pl->window = window; | |
| 905 pl->property = property; | |
| 906 pl->desired_state = state; | |
| 907 pl->next = property_change_wait_list; | |
|
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
908 pl->arrived = 0; |
| 2161 | 909 property_change_wait_list = pl; |
|
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
910 return pl; |
| 2161 | 911 } |
| 912 | |
| 913 /* 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
|
914 IDENTIFIER is the number that uniquely identifies the entry. */ |
| 2161 | 915 |
| 916 static void | |
|
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
917 unexpect_property_change (location) |
|
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
918 struct prop_location *location; |
| 2161 | 919 { |
| 920 struct prop_location *prev = 0, *rest = property_change_wait_list; | |
| 921 while (rest) | |
| 922 { | |
|
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
923 if (rest == location) |
| 2161 | 924 { |
| 925 if (prev) | |
| 926 prev->next = rest->next; | |
| 927 else | |
| 928 property_change_wait_list = rest->next; | |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
929 free (rest); |
| 2161 | 930 return; |
| 931 } | |
| 932 prev = rest; | |
| 933 rest = rest->next; | |
| 934 } | |
| 935 } | |
| 936 | |
|
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
937 /* 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
|
938 |
|
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
939 static Lisp_Object |
|
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
940 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
|
941 Lisp_Object identifierval; |
|
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
942 { |
|
9960
d7735c829d73
(wait_for_property_change): Encode location as a cons of two integers instead
Karl Heuer <kwzh@gnu.org>
parents:
9701
diff
changeset
|
943 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
|
944 (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
|
945 | XFASTINT (XCONS (identifierval)->cdr))); |
|
11908
4f4034f45cbf
(queue_selection_requests_unwind): Add return value.
Karl Heuer <kwzh@gnu.org>
parents:
11881
diff
changeset
|
946 return Qnil; |
|
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
947 } |
|
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
948 |
| 2161 | 949 /* 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
|
950 IDENTIFIER should be the value that expect_property_change returned. */ |
| 2161 | 951 |
| 952 static void | |
|
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
953 wait_for_property_change (location) |
|
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
954 struct prop_location *location; |
| 2161 | 955 { |
|
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
956 int secs, usecs; |
|
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
957 int count = specpdl_ptr - specpdl; |
|
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
958 Lisp_Object tem; |
|
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
959 |
|
9960
d7735c829d73
(wait_for_property_change): Encode location as a cons of two integers instead
Karl Heuer <kwzh@gnu.org>
parents:
9701
diff
changeset
|
960 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
|
961 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
|
962 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
|
963 |
|
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
964 /* 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
|
965 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
|
966 |
| 2161 | 967 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
|
968 |
|
10633
70ee88d09615
(wait_for_property_change): Avoid unlikely timing error.
Richard M. Stallman <rms@gnu.org>
parents:
9960
diff
changeset
|
969 property_change_reply_object = location; |
|
70ee88d09615
(wait_for_property_change): Avoid unlikely timing error.
Richard M. Stallman <rms@gnu.org>
parents:
9960
diff
changeset
|
970 /* 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
|
971 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
|
972 if (! location->arrived) |
|
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
973 { |
|
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
974 secs = x_selection_timeout / 1000; |
|
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
975 usecs = (x_selection_timeout % 1000) * 1000; |
|
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
976 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
|
977 |
|
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
978 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
|
979 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
|
980 } |
|
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
981 |
|
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
982 unbind_to (count, Qnil); |
| 2161 | 983 } |
| 984 | |
| 985 /* Called from XTread_socket in response to a PropertyNotify event. */ | |
| 986 | |
| 987 void | |
| 988 x_handle_property_notify (event) | |
| 989 XPropertyEvent *event; | |
| 990 { | |
| 991 struct prop_location *prev = 0, *rest = property_change_wait_list; | |
| 992 while (rest) | |
| 993 { | |
| 994 if (rest->property == event->atom | |
| 995 && rest->window == event->window | |
| 996 && rest->display == event->display | |
| 997 && rest->desired_state == event->state) | |
| 998 { | |
| 999 #if 0 | |
| 1000 fprintf (stderr, "Saw expected prop-%s on %s\n", | |
| 1001 (event->state == PropertyDelete ? "delete" : "change"), | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1002 (char *) XSYMBOL (x_atom_to_symbol (dpyinfo, event->display, |
| 2161 | 1003 event->atom)) |
| 1004 ->name->data); | |
| 1005 #endif | |
| 1006 | |
|
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1007 rest->arrived = 1; |
|
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1008 |
| 2161 | 1009 /* If this is the one wait_for_property_change is waiting for, |
| 1010 tell it to wake up. */ | |
|
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1011 if (rest == property_change_reply_object) |
| 2161 | 1012 XCONS (property_change_reply)->car = Qt; |
| 1013 | |
| 1014 if (prev) | |
| 1015 prev->next = rest->next; | |
| 1016 else | |
| 1017 property_change_wait_list = rest->next; | |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
1018 free (rest); |
| 2161 | 1019 return; |
| 1020 } | |
| 1021 prev = rest; | |
| 1022 rest = rest->next; | |
| 1023 } | |
| 1024 #if 0 | |
| 1025 fprintf (stderr, "Saw UNexpected prop-%s on %s\n", | |
| 1026 (event->state == PropertyDelete ? "delete" : "change"), | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1027 (char *) XSYMBOL (x_atom_to_symbol (dpyinfo, |
|
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1028 event->display, event->atom)) |
| 2161 | 1029 ->name->data); |
| 1030 #endif | |
| 1031 } | |
| 1032 | |
| 1033 | |
| 1034 | |
| 1035 #if 0 /* #### MULTIPLE doesn't work yet */ | |
| 1036 | |
| 1037 static Lisp_Object | |
| 1038 fetch_multiple_target (event) | |
| 1039 XSelectionRequestEvent *event; | |
| 1040 { | |
| 1041 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
|
1042 Window window = event->requestor; |
| 2161 | 1043 Atom target = event->target; |
| 1044 Atom selection_atom = event->selection; | |
| 1045 int result; | |
| 1046 | |
| 1047 return | |
| 1048 Fcons (QMULTIPLE, | |
| 1049 x_get_window_property_as_lisp_data (display, window, target, | |
| 1050 QMULTIPLE, selection_atom)); | |
| 1051 } | |
| 1052 | |
| 1053 static Lisp_Object | |
| 1054 copy_multiple_data (obj) | |
| 1055 Lisp_Object obj; | |
| 1056 { | |
| 1057 Lisp_Object vec; | |
| 1058 int i; | |
| 1059 int size; | |
| 1060 if (CONSP (obj)) | |
| 1061 return Fcons (XCONS (obj)->car, copy_multiple_data (XCONS (obj)->cdr)); | |
| 1062 | |
| 1063 CHECK_VECTOR (obj, 0); | |
| 1064 vec = Fmake_vector (size = XVECTOR (obj)->size, Qnil); | |
| 1065 for (i = 0; i < size; i++) | |
| 1066 { | |
| 1067 Lisp_Object vec2 = XVECTOR (obj)->contents [i]; | |
| 1068 CHECK_VECTOR (vec2, 0); | |
| 1069 if (XVECTOR (vec2)->size != 2) | |
| 1070 /* ??? Confusing error message */ | |
| 1071 Fsignal (Qerror, Fcons (build_string ("vectors must be of length 2"), | |
| 1072 Fcons (vec2, Qnil))); | |
| 1073 XVECTOR (vec)->contents [i] = Fmake_vector (2, Qnil); | |
| 1074 XVECTOR (XVECTOR (vec)->contents [i])->contents [0] | |
| 1075 = XVECTOR (vec2)->contents [0]; | |
| 1076 XVECTOR (XVECTOR (vec)->contents [i])->contents [1] | |
| 1077 = XVECTOR (vec2)->contents [1]; | |
| 1078 } | |
| 1079 return vec; | |
| 1080 } | |
| 1081 | |
| 1082 #endif | |
| 1083 | |
| 1084 | |
| 1085 /* Variables for communication with x_handle_selection_notify. */ | |
| 1086 static Atom reading_which_selection; | |
| 1087 static Lisp_Object reading_selection_reply; | |
| 1088 static Window reading_selection_window; | |
| 1089 | |
| 1090 /* Do protocol to read selection-data from the server. | |
| 1091 Converts this to Lisp data and returns it. */ | |
| 1092 | |
| 1093 static Lisp_Object | |
| 1094 x_get_foreign_selection (selection_symbol, target_type) | |
| 1095 Lisp_Object selection_symbol, target_type; | |
| 1096 { | |
|
14031
51c6f601f42b
Undo previous change, except for comments and doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
13942
diff
changeset
|
1097 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
|
1098 Display *display = FRAME_X_DISPLAY (selected_frame); |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1099 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
|
1100 Time requestor_time = last_event_timestamp; |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1101 Atom target_property = dpyinfo->Xatom_EMACS_TMP; |
|
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1102 Atom selection_atom = symbol_to_x_atom (dpyinfo, display, selection_symbol); |
| 2161 | 1103 Atom type_atom; |
|
3492
3e75726d76c7
(x_get_foreign_selection): Handle x_selection_timeout
Richard M. Stallman <rms@gnu.org>
parents:
3473
diff
changeset
|
1104 int secs, usecs; |
|
10674
ba12df743888
(x_get_foreign_selection, x_reply_selection_request):
Richard M. Stallman <rms@gnu.org>
parents:
10633
diff
changeset
|
1105 int count = specpdl_ptr - specpdl; |
|
ba12df743888
(x_get_foreign_selection, x_reply_selection_request):
Richard M. Stallman <rms@gnu.org>
parents:
10633
diff
changeset
|
1106 Lisp_Object frame; |
| 2161 | 1107 |
| 1108 if (CONSP (target_type)) | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1109 type_atom = symbol_to_x_atom (dpyinfo, display, XCONS (target_type)->car); |
| 2161 | 1110 else |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1111 type_atom = symbol_to_x_atom (dpyinfo, display, target_type); |
| 2161 | 1112 |
| 1113 BLOCK_INPUT; | |
|
9701
26a60dd57b6e
(x_own_selection, x_get_foreign_selection): Change calls
Richard M. Stallman <rms@gnu.org>
parents:
9691
diff
changeset
|
1114 x_catch_errors (display); |
| 2161 | 1115 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
|
1116 requestor_window, requestor_time); |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1117 XFlush (display); |
| 2161 | 1118 |
| 1119 /* 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
|
1120 reading_selection_window = requestor_window; |
| 2161 | 1121 reading_which_selection = selection_atom; |
| 1122 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
|
1123 |
|
ba12df743888
(x_get_foreign_selection, x_reply_selection_request):
Richard M. Stallman <rms@gnu.org>
parents:
10633
diff
changeset
|
1124 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
|
1125 |
|
ba12df743888
(x_get_foreign_selection, x_reply_selection_request):
Richard M. Stallman <rms@gnu.org>
parents:
10633
diff
changeset
|
1126 /* 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
|
1127 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
|
1128 bother trying to queue them. */ |
|
ba12df743888
(x_get_foreign_selection, x_reply_selection_request):
Richard M. Stallman <rms@gnu.org>
parents:
10633
diff
changeset
|
1129 if (!NILP (frame)) |
|
ba12df743888
(x_get_foreign_selection, x_reply_selection_request):
Richard M. Stallman <rms@gnu.org>
parents:
10633
diff
changeset
|
1130 { |
|
ba12df743888
(x_get_foreign_selection, x_reply_selection_request):
Richard M. Stallman <rms@gnu.org>
parents:
10633
diff
changeset
|
1131 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
|
1132 |
|
ba12df743888
(x_get_foreign_selection, x_reply_selection_request):
Richard M. Stallman <rms@gnu.org>
parents:
10633
diff
changeset
|
1133 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
|
1134 frame); |
|
ba12df743888
(x_get_foreign_selection, x_reply_selection_request):
Richard M. Stallman <rms@gnu.org>
parents:
10633
diff
changeset
|
1135 } |
| 2161 | 1136 UNBLOCK_INPUT; |
| 1137 | |
|
3492
3e75726d76c7
(x_get_foreign_selection): Handle x_selection_timeout
Richard M. Stallman <rms@gnu.org>
parents:
3473
diff
changeset
|
1138 /* 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
|
1139 secs = x_selection_timeout / 1000; |
|
3e75726d76c7
(x_get_foreign_selection): Handle x_selection_timeout
Richard M. Stallman <rms@gnu.org>
parents:
3473
diff
changeset
|
1140 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
|
1141 wait_reading_process_input (secs, usecs, reading_selection_reply, 0); |
| 2161 | 1142 |
|
5244
c0bd54986550
(x_get_foreign_selection): Use x_catch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
5131
diff
changeset
|
1143 BLOCK_INPUT; |
|
9701
26a60dd57b6e
(x_own_selection, x_get_foreign_selection): Change calls
Richard M. Stallman <rms@gnu.org>
parents:
9691
diff
changeset
|
1144 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
|
1145 x_uncatch_errors (display); |
|
10674
ba12df743888
(x_get_foreign_selection, x_reply_selection_request):
Richard M. Stallman <rms@gnu.org>
parents:
10633
diff
changeset
|
1146 unbind_to (count, Qnil); |
|
5244
c0bd54986550
(x_get_foreign_selection): Use x_catch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
5131
diff
changeset
|
1147 UNBLOCK_INPUT; |
|
c0bd54986550
(x_get_foreign_selection): Use x_catch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
5131
diff
changeset
|
1148 |
| 2161 | 1149 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
|
1150 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
|
1151 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
|
1152 error ("No `%s' selection", XSYMBOL (selection_symbol)->name->data); |
| 2161 | 1153 |
| 1154 /* Otherwise, the selection is waiting for us on the requested property. */ | |
| 1155 return | |
|
14031
51c6f601f42b
Undo previous change, except for comments and doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
13942
diff
changeset
|
1156 x_get_window_property_as_lisp_data (display, requestor_window, |
| 2161 | 1157 target_property, target_type, |
| 1158 selection_atom); | |
| 1159 } | |
| 1160 | |
| 1161 /* Subroutines of x_get_window_property_as_lisp_data */ | |
| 1162 | |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
1163 /* Use free, not XFree, to free the data obtained with this function. */ |
|
14371
dfeae392adcd
(x_get_window_property_as_lisp_data): Use xfree, not XFree.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1164 |
| 2161 | 1165 static void |
| 1166 x_get_window_property (display, window, property, data_ret, bytes_ret, | |
| 1167 actual_type_ret, actual_format_ret, actual_size_ret, | |
| 1168 delete_p) | |
| 1169 Display *display; | |
| 1170 Window window; | |
| 1171 Atom property; | |
| 1172 unsigned char **data_ret; | |
| 1173 int *bytes_ret; | |
| 1174 Atom *actual_type_ret; | |
| 1175 int *actual_format_ret; | |
| 1176 unsigned long *actual_size_ret; | |
| 1177 int delete_p; | |
| 1178 { | |
| 1179 int total_size; | |
| 1180 unsigned long bytes_remaining; | |
| 1181 int offset = 0; | |
| 1182 unsigned char *tmp_data = 0; | |
| 1183 int result; | |
| 1184 int buffer_size = SELECTION_QUANTUM (display); | |
| 1185 if (buffer_size > MAX_SELECTION_QUANTUM) buffer_size = MAX_SELECTION_QUANTUM; | |
| 1186 | |
| 1187 BLOCK_INPUT; | |
| 1188 /* First probe the thing to find out how big it is. */ | |
| 1189 result = XGetWindowProperty (display, window, property, | |
|
11881
3c292d5eed59
(x_get_window_property): Cast args of XGetWindowProperty.
Karl Heuer <kwzh@gnu.org>
parents:
11702
diff
changeset
|
1190 0L, 0L, False, AnyPropertyType, |
| 2161 | 1191 actual_type_ret, actual_format_ret, |
| 1192 actual_size_ret, | |
| 1193 &bytes_remaining, &tmp_data); | |
| 1194 if (result != Success) | |
| 1195 { | |
|
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1196 UNBLOCK_INPUT; |
| 2161 | 1197 *data_ret = 0; |
| 1198 *bytes_ret = 0; | |
| 1199 return; | |
| 1200 } | |
|
14371
dfeae392adcd
(x_get_window_property_as_lisp_data): Use xfree, not XFree.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1201 /* This was allocated by Xlib, so use XFree. */ |
|
dfeae392adcd
(x_get_window_property_as_lisp_data): Use xfree, not XFree.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1202 XFree ((char *) tmp_data); |
| 2161 | 1203 |
| 1204 if (*actual_type_ret == None || *actual_format_ret == 0) | |
| 1205 { | |
|
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1206 UNBLOCK_INPUT; |
| 2161 | 1207 return; |
| 1208 } | |
| 1209 | |
| 1210 total_size = bytes_remaining + 1; | |
| 1211 *data_ret = (unsigned char *) xmalloc (total_size); | |
| 1212 | |
|
13942
b01288cb5fc8
(x_get_foreign_selection): Renamed local variables
Karl Heuer <kwzh@gnu.org>
parents:
13557
diff
changeset
|
1213 /* Now read, until we've gotten it all. */ |
| 2161 | 1214 while (bytes_remaining) |
| 1215 { | |
| 1216 #if 0 | |
| 1217 int last = bytes_remaining; | |
| 1218 #endif | |
| 1219 result | |
| 1220 = XGetWindowProperty (display, window, property, | |
|
11881
3c292d5eed59
(x_get_window_property): Cast args of XGetWindowProperty.
Karl Heuer <kwzh@gnu.org>
parents:
11702
diff
changeset
|
1221 (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
|
1222 False, |
| 2161 | 1223 AnyPropertyType, |
| 1224 actual_type_ret, actual_format_ret, | |
| 1225 actual_size_ret, &bytes_remaining, &tmp_data); | |
| 1226 #if 0 | |
| 1227 fprintf (stderr, "<< read %d\n", last-bytes_remaining); | |
| 1228 #endif | |
| 1229 /* If this doesn't return Success at this point, it means that | |
| 1230 some clod deleted the selection while we were in the midst of | |
| 1231 reading it. Deal with that, I guess.... | |
| 1232 */ | |
| 1233 if (result != Success) break; | |
| 1234 *actual_size_ret *= *actual_format_ret / 8; | |
| 1235 bcopy (tmp_data, (*data_ret) + offset, *actual_size_ret); | |
| 1236 offset += *actual_size_ret; | |
|
14371
dfeae392adcd
(x_get_window_property_as_lisp_data): Use xfree, not XFree.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1237 /* This was allocated by Xlib, so use XFree. */ |
|
dfeae392adcd
(x_get_window_property_as_lisp_data): Use xfree, not XFree.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1238 XFree ((char *) tmp_data); |
| 2161 | 1239 } |
|
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1240 |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1241 XFlush (display); |
| 2161 | 1242 UNBLOCK_INPUT; |
| 1243 *bytes_ret = offset; | |
| 1244 } | |
| 1245 | |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
1246 /* Use free, not XFree, to free the data obtained with this function. */ |
|
14371
dfeae392adcd
(x_get_window_property_as_lisp_data): Use xfree, not XFree.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1247 |
| 2161 | 1248 static void |
| 1249 receive_incremental_selection (display, window, property, target_type, | |
| 1250 min_size_bytes, data_ret, size_bytes_ret, | |
| 1251 type_ret, format_ret, size_ret) | |
| 1252 Display *display; | |
| 1253 Window window; | |
| 1254 Atom property; | |
| 1255 Lisp_Object target_type; /* for error messages only */ | |
| 1256 unsigned int min_size_bytes; | |
| 1257 unsigned char **data_ret; | |
| 1258 int *size_bytes_ret; | |
| 1259 Atom *type_ret; | |
| 1260 unsigned long *size_ret; | |
| 1261 int *format_ret; | |
| 1262 { | |
| 1263 int offset = 0; | |
|
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1264 struct prop_location *wait_object; |
| 2161 | 1265 *size_bytes_ret = min_size_bytes; |
| 1266 *data_ret = (unsigned char *) xmalloc (*size_bytes_ret); | |
| 1267 #if 0 | |
| 1268 fprintf (stderr, "\nread INCR %d\n", min_size_bytes); | |
| 1269 #endif | |
|
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1270 |
|
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1271 /* 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
|
1272 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
|
1273 (But first, prepare to receive the next event in this handshake.) |
| 2161 | 1274 |
| 1275 Now, we must loop, waiting for the sending window to put a value on | |
| 1276 that property, then reading the property, then deleting it to ack. | |
| 1277 We are done when the sender places a property of length 0. | |
| 1278 */ | |
|
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1279 BLOCK_INPUT; |
|
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1280 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
|
1281 XDeleteProperty (display, window, property); |
|
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1282 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
|
1283 PropertyNewValue); |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1284 XFlush (display); |
|
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1285 UNBLOCK_INPUT; |
|
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1286 |
| 2161 | 1287 while (1) |
| 1288 { | |
| 1289 unsigned char *tmp_data; | |
| 1290 int tmp_size_bytes; | |
|
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1291 wait_for_property_change (wait_object); |
| 2161 | 1292 /* 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
|
1293 .. no it won't, I don't get it. |
| 2161 | 1294 .. Ok, I get it now, the Xt code that implements INCR is broken. |
| 1295 */ | |
| 1296 x_get_window_property (display, window, property, | |
| 1297 &tmp_data, &tmp_size_bytes, | |
| 1298 type_ret, format_ret, size_ret, 1); | |
| 1299 | |
| 1300 if (tmp_size_bytes == 0) /* we're done */ | |
| 1301 { | |
| 1302 #if 0 | |
| 1303 fprintf (stderr, " read INCR done\n"); | |
| 1304 #endif | |
|
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1305 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
|
1306 XSelectInput (display, window, STANDARD_EVENT_SET); |
|
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1307 unexpect_property_change (wait_object); |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
1308 /* Use free, not XFree, because x_get_window_property |
|
14371
dfeae392adcd
(x_get_window_property_as_lisp_data): Use xfree, not XFree.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1309 calls xmalloc itself. */ |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
1310 if (tmp_data) free (tmp_data); |
| 2161 | 1311 break; |
| 1312 } | |
|
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1313 |
|
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1314 BLOCK_INPUT; |
|
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1315 XDeleteProperty (display, window, property); |
|
4636
bb0ec6a82089
(struct property_change): New field `arrived'.
Richard M. Stallman <rms@gnu.org>
parents:
4547
diff
changeset
|
1316 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
|
1317 PropertyNewValue); |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1318 XFlush (display); |
|
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1319 UNBLOCK_INPUT; |
|
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1320 |
| 2161 | 1321 #if 0 |
| 1322 fprintf (stderr, " read INCR %d\n", tmp_size_bytes); | |
| 1323 #endif | |
| 1324 if (*size_bytes_ret < offset + tmp_size_bytes) | |
| 1325 { | |
| 1326 #if 0 | |
| 1327 fprintf (stderr, " read INCR realloc %d -> %d\n", | |
| 1328 *size_bytes_ret, offset + tmp_size_bytes); | |
| 1329 #endif | |
| 1330 *size_bytes_ret = offset + tmp_size_bytes; | |
| 1331 *data_ret = (unsigned char *) xrealloc (*data_ret, *size_bytes_ret); | |
| 1332 } | |
|
4547
3bd8248cc191
(receive_incremental_selection): Use bcopy, not memcpy.
Richard M. Stallman <rms@gnu.org>
parents:
4373
diff
changeset
|
1333 bcopy (tmp_data, (*data_ret) + offset, tmp_size_bytes); |
| 2161 | 1334 offset += tmp_size_bytes; |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
1335 /* Use free, not XFree, because x_get_window_property |
|
14371
dfeae392adcd
(x_get_window_property_as_lisp_data): Use xfree, not XFree.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1336 calls xmalloc itself. */ |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
1337 free (tmp_data); |
| 2161 | 1338 } |
| 1339 } | |
| 1340 | |
| 1341 /* Once a requested selection is "ready" (we got a SelectionNotify event), | |
| 1342 fetch value from property PROPERTY of X window WINDOW on display DISPLAY. | |
| 1343 TARGET_TYPE and SELECTION_ATOM are used in error message if this fails. */ | |
| 1344 | |
| 1345 static Lisp_Object | |
| 1346 x_get_window_property_as_lisp_data (display, window, property, target_type, | |
| 1347 selection_atom) | |
| 1348 Display *display; | |
| 1349 Window window; | |
| 1350 Atom property; | |
| 1351 Lisp_Object target_type; /* for error messages only */ | |
| 1352 Atom selection_atom; /* for error messages only */ | |
| 1353 { | |
| 1354 Atom actual_type; | |
| 1355 int actual_format; | |
| 1356 unsigned long actual_size; | |
| 1357 unsigned char *data = 0; | |
| 1358 int bytes = 0; | |
| 1359 Lisp_Object val; | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1360 struct x_display_info *dpyinfo = x_display_info_for_display (display); |
| 2161 | 1361 |
| 1362 x_get_window_property (display, window, property, &data, &bytes, | |
| 1363 &actual_type, &actual_format, &actual_size, 1); | |
| 1364 if (! data) | |
| 1365 { | |
| 1366 int there_is_a_selection_owner; | |
| 1367 BLOCK_INPUT; | |
| 1368 there_is_a_selection_owner | |
| 1369 = XGetSelectionOwner (display, selection_atom); | |
| 1370 UNBLOCK_INPUT; | |
| 1371 while (1) /* Note debugger can no longer return, so this is obsolete */ | |
| 1372 Fsignal (Qerror, | |
| 1373 there_is_a_selection_owner ? | |
| 1374 Fcons (build_string ("selection owner couldn't convert"), | |
| 1375 actual_type | |
| 1376 ? Fcons (target_type, | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1377 Fcons (x_atom_to_symbol (dpyinfo, display, |
|
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1378 actual_type), |
| 2161 | 1379 Qnil)) |
| 1380 : Fcons (target_type, Qnil)) | |
| 1381 : Fcons (build_string ("no selection"), | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1382 Fcons (x_atom_to_symbol (dpyinfo, display, |
|
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1383 selection_atom), |
| 2161 | 1384 Qnil))); |
| 1385 } | |
| 1386 | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1387 if (actual_type == dpyinfo->Xatom_INCR) |
| 2161 | 1388 { |
| 1389 /* That wasn't really the data, just the beginning. */ | |
| 1390 | |
| 1391 unsigned int min_size_bytes = * ((unsigned int *) data); | |
| 1392 BLOCK_INPUT; | |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
1393 /* Use free, not XFree, because x_get_window_property |
|
14371
dfeae392adcd
(x_get_window_property_as_lisp_data): Use xfree, not XFree.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1394 calls xmalloc itself. */ |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
1395 free ((char *) data); |
| 2161 | 1396 UNBLOCK_INPUT; |
| 1397 receive_incremental_selection (display, window, property, target_type, | |
| 1398 min_size_bytes, &data, &bytes, | |
| 1399 &actual_type, &actual_format, | |
| 1400 &actual_size); | |
| 1401 } | |
| 1402 | |
|
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1403 BLOCK_INPUT; |
|
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1404 XDeleteProperty (display, window, property); |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1405 XFlush (display); |
|
4373
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1406 UNBLOCK_INPUT; |
|
02a515f35abc
(prop_location_identifier): Was named prop_location_tick.
Richard M. Stallman <rms@gnu.org>
parents:
4278
diff
changeset
|
1407 |
| 2161 | 1408 /* It's been read. Now convert it to a lisp object in some semi-rational |
| 1409 manner. */ | |
| 1410 val = selection_data_to_lisp_data (display, data, bytes, | |
| 1411 actual_type, actual_format); | |
| 1412 | |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
1413 /* Use free, not XFree, because x_get_window_property |
|
14371
dfeae392adcd
(x_get_window_property_as_lisp_data): Use xfree, not XFree.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1414 calls xmalloc itself. */ |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
1415 free ((char *) data); |
| 2161 | 1416 return val; |
| 1417 } | |
| 1418 | |
| 1419 /* These functions convert from the selection data read from the server into | |
| 1420 something that we can use from Lisp, and vice versa. | |
| 1421 | |
| 1422 Type: Format: Size: Lisp Type: | |
| 1423 ----- ------- ----- ----------- | |
| 1424 * 8 * String | |
| 1425 ATOM 32 1 Symbol | |
| 1426 ATOM 32 > 1 Vector of Symbols | |
| 1427 * 16 1 Integer | |
| 1428 * 16 > 1 Vector of Integers | |
| 1429 * 32 1 if <=16 bits: Integer | |
| 1430 if > 16 bits: Cons of top16, bot16 | |
| 1431 * 32 > 1 Vector of the above | |
| 1432 | |
| 1433 When converting a Lisp number to C, it is assumed to be of format 16 if | |
| 1434 it is an integer, and of format 32 if it is a cons of two integers. | |
| 1435 | |
| 1436 When converting a vector of numbers from Lisp to C, it is assumed to be | |
| 1437 of format 16 if every element in the vector is an integer, and is assumed | |
| 1438 to be of format 32 if any element is a cons of two integers. | |
| 1439 | |
| 1440 When converting an object to C, it may be of the form (SYMBOL . <data>) | |
| 1441 where SYMBOL is what we should claim that the type is. Format and | |
| 1442 representation are as above. */ | |
| 1443 | |
| 1444 | |
| 1445 | |
| 1446 static Lisp_Object | |
| 1447 selection_data_to_lisp_data (display, data, size, type, format) | |
| 1448 Display *display; | |
| 1449 unsigned char *data; | |
| 1450 Atom type; | |
| 1451 int size, format; | |
| 1452 { | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1453 struct x_display_info *dpyinfo = x_display_info_for_display (display); |
| 2161 | 1454 |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1455 if (type == dpyinfo->Xatom_NULL) |
| 2161 | 1456 return QNULL; |
| 1457 | |
| 1458 /* Convert any 8-bit data to a string, for compactness. */ | |
| 1459 else if (format == 8) | |
| 1460 return make_string ((char *) data, size); | |
| 1461 | |
| 1462 /* Convert a single atom to a Lisp_Symbol. Convert a set of atoms to | |
| 1463 a vector of symbols. | |
| 1464 */ | |
| 1465 else if (type == XA_ATOM) | |
| 1466 { | |
| 1467 int i; | |
| 1468 if (size == sizeof (Atom)) | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1469 return x_atom_to_symbol (dpyinfo, display, *((Atom *) data)); |
| 2161 | 1470 else |
| 1471 { | |
| 1472 Lisp_Object v = Fmake_vector (size / sizeof (Atom), 0); | |
| 1473 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
|
1474 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
|
1475 ((Atom *) data) [i])); |
| 2161 | 1476 return v; |
| 1477 } | |
| 1478 } | |
| 1479 | |
| 1480 /* Convert a single 16 or small 32 bit number to a Lisp_Int. | |
| 1481 If the number is > 16 bits, convert it to a cons of integers, | |
| 1482 16 bits in each half. | |
| 1483 */ | |
| 1484 else if (format == 32 && size == sizeof (long)) | |
| 1485 return long_to_cons (((unsigned long *) data) [0]); | |
| 1486 else if (format == 16 && size == sizeof (short)) | |
| 1487 return make_number ((int) (((unsigned short *) data) [0])); | |
| 1488 | |
| 1489 /* Convert any other kind of data to a vector of numbers, represented | |
| 1490 as above (as an integer, or a cons of two 16 bit integers.) | |
| 1491 */ | |
| 1492 else if (format == 16) | |
| 1493 { | |
| 1494 int i; | |
| 1495 Lisp_Object v = Fmake_vector (size / 4, 0); | |
| 1496 for (i = 0; i < size / 4; i++) | |
| 1497 { | |
| 1498 int j = (int) ((unsigned short *) data) [i]; | |
| 1499 Faset (v, i, make_number (j)); | |
| 1500 } | |
| 1501 return v; | |
| 1502 } | |
| 1503 else | |
| 1504 { | |
| 1505 int i; | |
| 1506 Lisp_Object v = Fmake_vector (size / 4, 0); | |
| 1507 for (i = 0; i < size / 4; i++) | |
| 1508 { | |
| 1509 unsigned long j = ((unsigned long *) data) [i]; | |
| 1510 Faset (v, i, long_to_cons (j)); | |
| 1511 } | |
| 1512 return v; | |
| 1513 } | |
| 1514 } | |
| 1515 | |
| 1516 | |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
1517 /* Use free, not XFree, to free the data obtained with this function. */ |
|
14371
dfeae392adcd
(x_get_window_property_as_lisp_data): Use xfree, not XFree.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1518 |
| 2161 | 1519 static void |
| 1520 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
|
1521 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
|
1522 format_ret, nofree_ret) |
| 2161 | 1523 Display *display; |
| 1524 Lisp_Object obj; | |
| 1525 unsigned char **data_ret; | |
| 1526 Atom *type_ret; | |
| 1527 unsigned int *size_ret; | |
| 1528 int *format_ret; | |
|
4278
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1529 int *nofree_ret; |
| 2161 | 1530 { |
| 1531 Lisp_Object type = Qnil; | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1532 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
|
1533 |
|
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1534 *nofree_ret = 0; |
|
889d81e3f507
(lisp_data_to_selection_data): New arg NOFREE_RET.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1535 |
| 2161 | 1536 if (CONSP (obj) && SYMBOLP (XCONS (obj)->car)) |
| 1537 { | |
| 1538 type = XCONS (obj)->car; | |
| 1539 obj = XCONS (obj)->cdr; | |
| 1540 if (CONSP (obj) && NILP (XCONS (obj)->cdr)) | |
| 1541 obj = XCONS (obj)->car; | |
| 1542 } | |
| 1543 | |
| 1544 if (EQ (obj, QNULL) || (EQ (type, QNULL))) | |
| 1545 { /* This is not the same as declining */ | |
| 1546 *format_ret = 32; | |
| 1547 *size_ret = 0; | |
| 1548 *data_ret = 0; | |
| 1549 type = QNULL; | |
| 1550 } | |
| 1551 else if (STRINGP (obj)) | |
| 1552 { | |
| 1553 *format_ret = 8; | |
| 1554 *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
|
1555 *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
|
1556 *nofree_ret = 1; |
| 2161 | 1557 if (NILP (type)) type = QSTRING; |
| 1558 } | |
| 1559 else if (SYMBOLP (obj)) | |
| 1560 { | |
| 1561 *format_ret = 32; | |
| 1562 *size_ret = 1; | |
| 1563 *data_ret = (unsigned char *) xmalloc (sizeof (Atom) + 1); | |
| 1564 (*data_ret) [sizeof (Atom)] = 0; | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1565 (*(Atom **) data_ret) [0] = symbol_to_x_atom (dpyinfo, display, obj); |
| 2161 | 1566 if (NILP (type)) type = QATOM; |
| 1567 } | |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1568 else if (INTEGERP (obj) |
| 2161 | 1569 && XINT (obj) < 0xFFFF |
| 1570 && XINT (obj) > -0xFFFF) | |
| 1571 { | |
| 1572 *format_ret = 16; | |
| 1573 *size_ret = 1; | |
| 1574 *data_ret = (unsigned char *) xmalloc (sizeof (short) + 1); | |
| 1575 (*data_ret) [sizeof (short)] = 0; | |
| 1576 (*(short **) data_ret) [0] = (short) XINT (obj); | |
| 1577 if (NILP (type)) type = QINTEGER; | |
| 1578 } | |
| 2169 | 1579 else if (INTEGERP (obj) |
| 1580 || (CONSP (obj) && INTEGERP (XCONS (obj)->car) | |
| 1581 && (INTEGERP (XCONS (obj)->cdr) | |
| 1582 || (CONSP (XCONS (obj)->cdr) | |
| 1583 && INTEGERP (XCONS (XCONS (obj)->cdr)->car))))) | |
| 2161 | 1584 { |
| 1585 *format_ret = 32; | |
| 1586 *size_ret = 1; | |
| 1587 *data_ret = (unsigned char *) xmalloc (sizeof (long) + 1); | |
| 1588 (*data_ret) [sizeof (long)] = 0; | |
| 1589 (*(unsigned long **) data_ret) [0] = cons_to_long (obj); | |
| 1590 if (NILP (type)) type = QINTEGER; | |
| 1591 } | |
| 1592 else if (VECTORP (obj)) | |
| 1593 { | |
| 1594 /* Lisp_Vectors may represent a set of ATOMs; | |
| 1595 a set of 16 or 32 bit INTEGERs; | |
| 1596 or a set of ATOM_PAIRs (represented as [[A1 A2] [A3 A4] ...] | |
| 1597 */ | |
| 1598 int i; | |
| 1599 | |
| 1600 if (SYMBOLP (XVECTOR (obj)->contents [0])) | |
| 1601 /* This vector is an ATOM set */ | |
| 1602 { | |
| 1603 if (NILP (type)) type = QATOM; | |
| 1604 *size_ret = XVECTOR (obj)->size; | |
| 1605 *format_ret = 32; | |
| 1606 *data_ret = (unsigned char *) xmalloc ((*size_ret) * sizeof (Atom)); | |
| 1607 for (i = 0; i < *size_ret; i++) | |
| 1608 if (SYMBOLP (XVECTOR (obj)->contents [i])) | |
| 1609 (*(Atom **) data_ret) [i] | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1610 = symbol_to_x_atom (dpyinfo, display, XVECTOR (obj)->contents [i]); |
| 2161 | 1611 else |
| 1612 Fsignal (Qerror, /* Qselection_error */ | |
| 1613 Fcons (build_string | |
| 1614 ("all elements of selection vector must have same type"), | |
| 1615 Fcons (obj, Qnil))); | |
| 1616 } | |
| 1617 #if 0 /* #### MULTIPLE doesn't work yet */ | |
| 1618 else if (VECTORP (XVECTOR (obj)->contents [0])) | |
| 1619 /* This vector is an ATOM_PAIR set */ | |
| 1620 { | |
| 1621 if (NILP (type)) type = QATOM_PAIR; | |
| 1622 *size_ret = XVECTOR (obj)->size; | |
| 1623 *format_ret = 32; | |
| 1624 *data_ret = (unsigned char *) | |
| 1625 xmalloc ((*size_ret) * sizeof (Atom) * 2); | |
| 1626 for (i = 0; i < *size_ret; i++) | |
| 1627 if (VECTORP (XVECTOR (obj)->contents [i])) | |
| 1628 { | |
| 1629 Lisp_Object pair = XVECTOR (obj)->contents [i]; | |
| 1630 if (XVECTOR (pair)->size != 2) | |
| 1631 Fsignal (Qerror, | |
| 1632 Fcons (build_string | |
| 1633 ("elements of the vector must be vectors of exactly two elements"), | |
| 1634 Fcons (pair, Qnil))); | |
| 1635 | |
| 1636 (*(Atom **) data_ret) [i * 2] | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1637 = symbol_to_x_atom (dpyinfo, display, |
|
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1638 XVECTOR (pair)->contents [0]); |
| 2161 | 1639 (*(Atom **) data_ret) [(i * 2) + 1] |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1640 = symbol_to_x_atom (dpyinfo, display, |
|
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1641 XVECTOR (pair)->contents [1]); |
| 2161 | 1642 } |
| 1643 else | |
| 1644 Fsignal (Qerror, | |
| 1645 Fcons (build_string | |
| 1646 ("all elements of the vector must be of the same type"), | |
| 1647 Fcons (obj, Qnil))); | |
| 1648 | |
| 1649 } | |
| 1650 #endif | |
| 1651 else | |
| 1652 /* This vector is an INTEGER set, or something like it */ | |
| 1653 { | |
| 1654 *size_ret = XVECTOR (obj)->size; | |
| 1655 if (NILP (type)) type = QINTEGER; | |
| 1656 *format_ret = 16; | |
| 1657 for (i = 0; i < *size_ret; i++) | |
| 1658 if (CONSP (XVECTOR (obj)->contents [i])) | |
| 1659 *format_ret = 32; | |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1660 else if (!INTEGERP (XVECTOR (obj)->contents [i])) |
| 2161 | 1661 Fsignal (Qerror, /* Qselection_error */ |
| 1662 Fcons (build_string | |
| 1663 ("elements of selection vector must be integers or conses of integers"), | |
| 1664 Fcons (obj, Qnil))); | |
| 1665 | |
| 1666 *data_ret = (unsigned char *) xmalloc (*size_ret * (*format_ret/8)); | |
| 1667 for (i = 0; i < *size_ret; i++) | |
| 1668 if (*format_ret == 32) | |
| 1669 (*((unsigned long **) data_ret)) [i] | |
| 1670 = cons_to_long (XVECTOR (obj)->contents [i]); | |
| 1671 else | |
| 1672 (*((unsigned short **) data_ret)) [i] | |
| 1673 = (unsigned short) cons_to_long (XVECTOR (obj)->contents [i]); | |
| 1674 } | |
| 1675 } | |
| 1676 else | |
| 1677 Fsignal (Qerror, /* Qselection_error */ | |
| 1678 Fcons (build_string ("unrecognised selection data"), | |
| 1679 Fcons (obj, Qnil))); | |
| 1680 | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1681 *type_ret = symbol_to_x_atom (dpyinfo, display, type); |
| 2161 | 1682 } |
| 1683 | |
| 1684 static Lisp_Object | |
| 1685 clean_local_selection_data (obj) | |
| 1686 Lisp_Object obj; | |
| 1687 { | |
| 1688 if (CONSP (obj) | |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1689 && INTEGERP (XCONS (obj)->car) |
| 2161 | 1690 && CONSP (XCONS (obj)->cdr) |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1691 && INTEGERP (XCONS (XCONS (obj)->cdr)->car) |
| 2161 | 1692 && NILP (XCONS (XCONS (obj)->cdr)->cdr)) |
| 1693 obj = Fcons (XCONS (obj)->car, XCONS (obj)->cdr); | |
| 1694 | |
| 1695 if (CONSP (obj) | |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1696 && INTEGERP (XCONS (obj)->car) |
|
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1697 && INTEGERP (XCONS (obj)->cdr)) |
| 2161 | 1698 { |
| 1699 if (XINT (XCONS (obj)->car) == 0) | |
| 1700 return XCONS (obj)->cdr; | |
| 1701 if (XINT (XCONS (obj)->car) == -1) | |
| 1702 return make_number (- XINT (XCONS (obj)->cdr)); | |
| 1703 } | |
| 1704 if (VECTORP (obj)) | |
| 1705 { | |
| 1706 int i; | |
| 1707 int size = XVECTOR (obj)->size; | |
| 1708 Lisp_Object copy; | |
| 1709 if (size == 1) | |
| 1710 return clean_local_selection_data (XVECTOR (obj)->contents [0]); | |
| 1711 copy = Fmake_vector (size, Qnil); | |
| 1712 for (i = 0; i < size; i++) | |
| 1713 XVECTOR (copy)->contents [i] | |
| 1714 = clean_local_selection_data (XVECTOR (obj)->contents [i]); | |
| 1715 return copy; | |
| 1716 } | |
| 1717 return obj; | |
| 1718 } | |
| 1719 | |
| 1720 /* 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
|
1721 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
|
1722 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
|
1723 We store t there if the reply is successful, lambda if not. */ |
| 2161 | 1724 |
| 1725 void | |
| 1726 x_handle_selection_notify (event) | |
| 1727 XSelectionEvent *event; | |
| 1728 { | |
|
14031
51c6f601f42b
Undo previous change, except for comments and doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
13942
diff
changeset
|
1729 if (event->requestor != reading_selection_window) |
| 2161 | 1730 return; |
| 1731 if (event->selection != reading_which_selection) | |
| 1732 return; | |
| 1733 | |
|
14134
a1ebbdb060b8
(x_handle_selection_notify): Give an indication
Karl Heuer <kwzh@gnu.org>
parents:
14031
diff
changeset
|
1734 XCONS (reading_selection_reply)->car |
|
a1ebbdb060b8
(x_handle_selection_notify): Give an indication
Karl Heuer <kwzh@gnu.org>
parents:
14031
diff
changeset
|
1735 = (event->property != 0 ? Qt : Qlambda); |
| 2161 | 1736 } |
| 1737 | |
| 1738 | |
|
16485
9b919c5464a4
Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents:
15705
diff
changeset
|
1739 DEFUN ("x-own-selection-internal", Fx_own_selection_internal, |
|
9b919c5464a4
Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents:
15705
diff
changeset
|
1740 Sx_own_selection_internal, 2, 2, 0, |
| 2161 | 1741 "Assert an X selection of the given TYPE with the given VALUE.\n\ |
| 1742 TYPE is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\ | |
| 1743 \(Those are literal upper-case symbol names, since that's what X expects.)\n\ | |
| 1744 VALUE is typically a string, or a cons of two markers, but may be\n\ | |
| 2169 | 1745 anything that the functions on `selection-converter-alist' know about.") |
| 2161 | 1746 (selection_name, selection_value) |
| 1747 Lisp_Object selection_name, selection_value; | |
| 1748 { | |
|
5947
9ff439565145
(x-own-selection-internal, x-get-selection-internal,
Karl Heuer <kwzh@gnu.org>
parents:
5244
diff
changeset
|
1749 check_x (); |
| 2161 | 1750 CHECK_SYMBOL (selection_name, 0); |
|
14134
a1ebbdb060b8
(x_handle_selection_notify): Give an indication
Karl Heuer <kwzh@gnu.org>
parents:
14031
diff
changeset
|
1751 if (NILP (selection_value)) error ("selection-value may not be nil"); |
| 2161 | 1752 x_own_selection (selection_name, selection_value); |
| 1753 return selection_value; | |
| 1754 } | |
| 1755 | |
| 1756 | |
| 1757 /* Request the selection value from the owner. If we are the owner, | |
| 1758 simply return our selection value. If we are not the owner, this | |
| 1759 will block until all of the data has arrived. */ | |
| 1760 | |
|
16485
9b919c5464a4
Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents:
15705
diff
changeset
|
1761 DEFUN ("x-get-selection-internal", Fx_get_selection_internal, |
|
9b919c5464a4
Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents:
15705
diff
changeset
|
1762 Sx_get_selection_internal, 2, 2, 0, |
| 2161 | 1763 "Return text selected from some X window.\n\ |
| 1764 SELECTION is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\ | |
| 1765 \(Those are literal upper-case symbol names, since that's what X expects.)\n\ | |
| 2169 | 1766 TYPE is the type of data desired, typically `STRING'.") |
| 2161 | 1767 (selection_symbol, target_type) |
| 1768 Lisp_Object selection_symbol, target_type; | |
| 1769 { | |
| 1770 Lisp_Object val = Qnil; | |
| 1771 struct gcpro gcpro1, gcpro2; | |
| 1772 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
|
1773 check_x (); |
| 2161 | 1774 CHECK_SYMBOL (selection_symbol, 0); |
| 1775 | |
| 1776 #if 0 /* #### MULTIPLE doesn't work yet */ | |
| 1777 if (CONSP (target_type) | |
| 1778 && XCONS (target_type)->car == QMULTIPLE) | |
| 1779 { | |
| 1780 CHECK_VECTOR (XCONS (target_type)->cdr, 0); | |
| 1781 /* So we don't destructively modify this... */ | |
| 1782 target_type = copy_multiple_data (target_type); | |
| 1783 } | |
| 1784 else | |
| 1785 #endif | |
| 1786 CHECK_SYMBOL (target_type, 0); | |
| 1787 | |
| 1788 val = x_get_local_selection (selection_symbol, target_type); | |
| 1789 | |
| 1790 if (NILP (val)) | |
| 1791 { | |
| 1792 val = x_get_foreign_selection (selection_symbol, target_type); | |
| 1793 goto DONE; | |
| 1794 } | |
| 1795 | |
| 1796 if (CONSP (val) | |
| 1797 && SYMBOLP (XCONS (val)->car)) | |
| 1798 { | |
| 1799 val = XCONS (val)->cdr; | |
| 1800 if (CONSP (val) && NILP (XCONS (val)->cdr)) | |
| 1801 val = XCONS (val)->car; | |
| 1802 } | |
| 1803 val = clean_local_selection_data (val); | |
| 1804 DONE: | |
| 1805 UNGCPRO; | |
| 1806 return val; | |
| 1807 } | |
| 1808 | |
|
16485
9b919c5464a4
Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents:
15705
diff
changeset
|
1809 DEFUN ("x-disown-selection-internal", Fx_disown_selection_internal, |
|
9b919c5464a4
Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents:
15705
diff
changeset
|
1810 Sx_disown_selection_internal, 1, 2, 0, |
| 2169 | 1811 "If we own the selection SELECTION, disown it.\n\ |
| 1812 Disowning it means there is no such selection.") | |
| 2161 | 1813 (selection, time) |
| 1814 Lisp_Object selection; | |
| 1815 Lisp_Object time; | |
| 1816 { | |
| 1817 Time timestamp; | |
| 1818 Atom selection_atom; | |
| 1819 XSelectionClearEvent event; | |
|
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1820 Display *display; |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1821 struct x_display_info *dpyinfo; |
| 2161 | 1822 |
|
5947
9ff439565145
(x-own-selection-internal, x-get-selection-internal,
Karl Heuer <kwzh@gnu.org>
parents:
5244
diff
changeset
|
1823 check_x (); |
|
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1824 display = FRAME_X_DISPLAY (selected_frame); |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1825 dpyinfo = FRAME_X_DISPLAY_INFO (selected_frame); |
| 2161 | 1826 CHECK_SYMBOL (selection, 0); |
| 1827 if (NILP (time)) | |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
1828 timestamp = last_event_timestamp; |
| 2161 | 1829 else |
| 1830 timestamp = cons_to_long (time); | |
| 1831 | |
| 1832 if (NILP (assq_no_quit (selection, Vselection_alist))) | |
| 1833 return Qnil; /* Don't disown the selection when we're not the owner. */ | |
| 1834 | |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1835 selection_atom = symbol_to_x_atom (dpyinfo, display, selection); |
| 2161 | 1836 |
| 1837 BLOCK_INPUT; | |
| 1838 XSetSelectionOwner (display, selection_atom, None, timestamp); | |
| 1839 UNBLOCK_INPUT; | |
| 1840 | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3492
diff
changeset
|
1841 /* It doesn't seem to be guaranteed that a SelectionClear event will be |
| 2161 | 1842 generated for a window which owns the selection when that window sets |
| 1843 the selection owner to None. The NCD server does, the MIT Sun4 server | |
| 1844 doesn't. So we synthesize one; this means we might get two, but | |
| 1845 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
|
1846 SELECTION_EVENT_DISPLAY (&event) = display; |
|
69078817ec92
(Fx_disown_selection_internal): When making the fake
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
1847 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
|
1848 SELECTION_EVENT_TIME (&event) = timestamp; |
| 2161 | 1849 x_handle_selection_clear (&event); |
| 1850 | |
| 1851 return Qt; | |
| 1852 } | |
| 1853 | |
| 2169 | 1854 /* Get rid of all the selections in buffer BUFFER. |
| 1855 This is used when we kill a buffer. */ | |
| 1856 | |
| 1857 void | |
| 1858 x_disown_buffer_selections (buffer) | |
| 1859 Lisp_Object buffer; | |
| 1860 { | |
| 1861 Lisp_Object tail; | |
| 1862 struct buffer *buf = XBUFFER (buffer); | |
| 1863 | |
| 1864 for (tail = Vselection_alist; CONSP (tail); tail = XCONS (tail)->cdr) | |
| 1865 { | |
| 1866 Lisp_Object elt, value; | |
| 1867 elt = XCONS (tail)->car; | |
| 1868 value = XCONS (elt)->cdr; | |
| 1869 if (CONSP (value) && MARKERP (XCONS (value)->car) | |
| 1870 && XMARKER (XCONS (value)->car)->buffer == buf) | |
| 1871 Fx_disown_selection_internal (XCONS (elt)->car, Qnil); | |
| 1872 } | |
| 1873 } | |
| 2161 | 1874 |
| 1875 DEFUN ("x-selection-owner-p", Fx_selection_owner_p, Sx_selection_owner_p, | |
| 1876 0, 1, 0, | |
| 2169 | 1877 "Whether the current Emacs process owns the given X Selection.\n\ |
| 2161 | 1878 The arg should be the name of the selection in question, typically one of\n\ |
| 1879 the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\ | |
| 1880 \(Those are literal upper-case symbol names, since that's what X expects.)\n\ | |
| 1881 For convenience, the symbol nil is the same as `PRIMARY',\n\ | |
| 1882 and t is the same as `SECONDARY'.)") | |
| 1883 (selection) | |
| 1884 Lisp_Object selection; | |
| 1885 { | |
|
5947
9ff439565145
(x-own-selection-internal, x-get-selection-internal,
Karl Heuer <kwzh@gnu.org>
parents:
5244
diff
changeset
|
1886 check_x (); |
| 2161 | 1887 CHECK_SYMBOL (selection, 0); |
| 1888 if (EQ (selection, Qnil)) selection = QPRIMARY; | |
| 1889 if (EQ (selection, Qt)) selection = QSECONDARY; | |
| 1890 | |
| 1891 if (NILP (Fassq (selection, Vselection_alist))) | |
| 1892 return Qnil; | |
| 1893 return Qt; | |
| 1894 } | |
| 1895 | |
| 1896 DEFUN ("x-selection-exists-p", Fx_selection_exists_p, Sx_selection_exists_p, | |
| 1897 0, 1, 0, | |
| 1898 "Whether there is an owner for the given X Selection.\n\ | |
| 1899 The arg should be the name of the selection in question, typically one of\n\ | |
| 1900 the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\ | |
| 1901 \(Those are literal upper-case symbol names, since that's what X expects.)\n\ | |
| 1902 For convenience, the symbol nil is the same as `PRIMARY',\n\ | |
| 1903 and t is the same as `SECONDARY'.)") | |
| 1904 (selection) | |
| 1905 Lisp_Object selection; | |
| 1906 { | |
| 1907 Window owner; | |
|
2797
ae18dabac465
(Fx_selection_exists_p): Handle nil, t as SELECTION arg.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
1908 Atom atom; |
|
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1909 Display *dpy; |
|
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1910 |
|
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
|
1911 /* 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
|
1912 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
|
1913 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
|
1914 |
|
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1915 dpy = FRAME_X_DISPLAY (selected_frame); |
| 2161 | 1916 CHECK_SYMBOL (selection, 0); |
| 1917 if (!NILP (Fx_selection_owner_p (selection))) | |
| 1918 return Qt; | |
|
2797
ae18dabac465
(Fx_selection_exists_p): Handle nil, t as SELECTION arg.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
1919 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
|
1920 if (EQ (selection, Qt)) selection = QSECONDARY; |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1921 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
|
1922 dpy, selection); |
|
2797
ae18dabac465
(Fx_selection_exists_p): Handle nil, t as SELECTION arg.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
1923 if (atom == 0) |
|
ae18dabac465
(Fx_selection_exists_p): Handle nil, t as SELECTION arg.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
1924 return Qnil; |
| 2161 | 1925 BLOCK_INPUT; |
|
2797
ae18dabac465
(Fx_selection_exists_p): Handle nil, t as SELECTION arg.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
1926 owner = XGetSelectionOwner (dpy, atom); |
| 2161 | 1927 UNBLOCK_INPUT; |
| 1928 return (owner ? Qt : Qnil); | |
| 1929 } | |
| 1930 | |
| 1931 | |
| 1932 #ifdef CUT_BUFFER_SUPPORT | |
| 1933 | |
| 1934 /* Ensure that all 8 cut buffers exist. ICCCM says we gotta... */ | |
| 1935 static void | |
| 1936 initialize_cut_buffers (display, window) | |
| 1937 Display *display; | |
| 1938 Window window; | |
| 1939 { | |
| 1940 unsigned char *data = (unsigned char *) ""; | |
| 1941 BLOCK_INPUT; | |
| 1942 #define FROB(atom) XChangeProperty (display, window, atom, XA_STRING, 8, \ | |
| 1943 PropModeAppend, data, 0) | |
| 1944 FROB (XA_CUT_BUFFER0); | |
| 1945 FROB (XA_CUT_BUFFER1); | |
| 1946 FROB (XA_CUT_BUFFER2); | |
| 1947 FROB (XA_CUT_BUFFER3); | |
| 1948 FROB (XA_CUT_BUFFER4); | |
| 1949 FROB (XA_CUT_BUFFER5); | |
| 1950 FROB (XA_CUT_BUFFER6); | |
| 1951 FROB (XA_CUT_BUFFER7); | |
| 1952 #undef FROB | |
| 1953 UNBLOCK_INPUT; | |
| 1954 } | |
| 1955 | |
| 1956 | |
| 2169 | 1957 #define CHECK_CUT_BUFFER(symbol,n) \ |
| 2161 | 1958 { CHECK_SYMBOL ((symbol), (n)); \ |
| 1959 if (!EQ((symbol), QCUT_BUFFER0) && !EQ((symbol), QCUT_BUFFER1) \ | |
| 1960 && !EQ((symbol), QCUT_BUFFER2) && !EQ((symbol), QCUT_BUFFER3) \ | |
| 1961 && !EQ((symbol), QCUT_BUFFER4) && !EQ((symbol), QCUT_BUFFER5) \ | |
| 1962 && !EQ((symbol), QCUT_BUFFER6) && !EQ((symbol), QCUT_BUFFER7)) \ | |
| 1963 Fsignal (Qerror, \ | |
| 2169 | 1964 Fcons (build_string ("doesn't name a cut buffer"), \ |
| 2161 | 1965 Fcons ((symbol), Qnil))); \ |
| 1966 } | |
| 1967 | |
| 2169 | 1968 DEFUN ("x-get-cut-buffer-internal", Fx_get_cut_buffer_internal, |
| 1969 Sx_get_cut_buffer_internal, 1, 1, 0, | |
| 1970 "Returns the value of the named cut buffer (typically CUT_BUFFER0).") | |
| 2161 | 1971 (buffer) |
| 1972 Lisp_Object buffer; | |
| 1973 { | |
|
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1974 Window window; |
| 2161 | 1975 Atom buffer_atom; |
| 1976 unsigned char *data; | |
| 1977 int bytes; | |
| 1978 Atom type; | |
| 1979 int format; | |
| 1980 unsigned long size; | |
| 1981 Lisp_Object ret; | |
|
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1982 Display *display; |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1983 struct x_display_info *dpyinfo; |
| 2161 | 1984 |
|
5947
9ff439565145
(x-own-selection-internal, x-get-selection-internal,
Karl Heuer <kwzh@gnu.org>
parents:
5244
diff
changeset
|
1985 check_x (); |
|
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
1986 display = FRAME_X_DISPLAY (selected_frame); |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1987 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
|
1988 window = RootWindow (display, 0); /* Cut buffers are on screen 0 */ |
| 2169 | 1989 CHECK_CUT_BUFFER (buffer, 0); |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
1990 buffer_atom = symbol_to_x_atom (dpyinfo, display, buffer); |
| 2161 | 1991 |
| 1992 x_get_window_property (display, window, buffer_atom, &data, &bytes, | |
| 1993 &type, &format, &size, 0); | |
| 1994 if (!data) return Qnil; | |
| 1995 | |
| 1996 if (format != 8 || type != XA_STRING) | |
| 1997 Fsignal (Qerror, | |
| 1998 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
|
1999 Fcons (x_atom_to_symbol (dpyinfo, display, type), |
| 2161 | 2000 Fcons (make_number (format), Qnil)))); |
| 2001 | |
| 2002 ret = (bytes ? make_string ((char *) data, bytes) : Qnil); | |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
2003 /* Use free, not XFree, because x_get_window_property |
|
14371
dfeae392adcd
(x_get_window_property_as_lisp_data): Use xfree, not XFree.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
2004 calls xmalloc itself. */ |
|
14372
81c67c7d1655
(xfree): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
14371
diff
changeset
|
2005 free (data); |
| 2161 | 2006 return ret; |
| 2007 } | |
| 2008 | |
| 2009 | |
| 2169 | 2010 DEFUN ("x-store-cut-buffer-internal", Fx_store_cut_buffer_internal, |
| 2011 Sx_store_cut_buffer_internal, 2, 2, 0, | |
| 2012 "Sets the value of the named cut buffer (typically CUT_BUFFER0).") | |
| 2161 | 2013 (buffer, string) |
| 2014 Lisp_Object buffer, string; | |
| 2015 { | |
|
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
2016 Window window; |
| 2161 | 2017 Atom buffer_atom; |
| 2018 unsigned char *data; | |
| 2019 int bytes; | |
| 2020 int bytes_remaining; | |
|
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
2021 int max_bytes; |
|
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
2022 Display *display; |
| 2161 | 2023 |
|
5947
9ff439565145
(x-own-selection-internal, x-get-selection-internal,
Karl Heuer <kwzh@gnu.org>
parents:
5244
diff
changeset
|
2024 check_x (); |
|
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
2025 display = FRAME_X_DISPLAY (selected_frame); |
|
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
2026 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
|
2027 |
|
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
2028 max_bytes = SELECTION_QUANTUM (display); |
|
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
2029 if (max_bytes > MAX_SELECTION_QUANTUM) |
|
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
2030 max_bytes = MAX_SELECTION_QUANTUM; |
|
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
2031 |
| 2169 | 2032 CHECK_CUT_BUFFER (buffer, 0); |
| 2161 | 2033 CHECK_STRING (string, 0); |
|
9670
a03e0a600f3f
Use XFlush, not XFlushQueue, throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9617
diff
changeset
|
2034 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
|
2035 display, buffer); |
| 2161 | 2036 data = (unsigned char *) XSTRING (string)->data; |
| 2037 bytes = XSTRING (string)->size; | |
| 2038 bytes_remaining = bytes; | |
| 2039 | |
|
11161
3e309e3f0ad5
(Fx_store_cut_buffer_internal): Use the flag in the
Karl Heuer <kwzh@gnu.org>
parents:
10674
diff
changeset
|
2040 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
|
2041 { |
|
3e309e3f0ad5
(Fx_store_cut_buffer_internal): Use the flag in the
Karl Heuer <kwzh@gnu.org>
parents:
10674
diff
changeset
|
2042 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
|
2043 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
|
2044 } |
| 2161 | 2045 |
| 2046 BLOCK_INPUT; | |
|
3473
e1d043cb2f1a
(Fx_store_cut_buffer_internal): Handle empty string right.
Richard M. Stallman <rms@gnu.org>
parents:
3348
diff
changeset
|
2047 |
|
e1d043cb2f1a
(Fx_store_cut_buffer_internal): Handle empty string right.
Richard M. Stallman <rms@gnu.org>
parents:
3348
diff
changeset
|
2048 /* 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
|
2049 if (!bytes_remaining) |
|
e1d043cb2f1a
(Fx_store_cut_buffer_internal): Handle empty string right.
Richard M. Stallman <rms@gnu.org>
parents:
3348
diff
changeset
|
2050 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
|
2051 PropModeReplace, data, 0); |
|
e1d043cb2f1a
(Fx_store_cut_buffer_internal): Handle empty string right.
Richard M. Stallman <rms@gnu.org>
parents:
3348
diff
changeset
|
2052 |
| 2161 | 2053 while (bytes_remaining) |
| 2054 { | |
| 2055 int chunk = (bytes_remaining < max_bytes | |
| 2056 ? bytes_remaining : max_bytes); | |
| 2057 XChangeProperty (display, window, buffer_atom, XA_STRING, 8, | |
| 2058 (bytes_remaining == bytes | |
| 2059 ? PropModeReplace | |
| 2060 : PropModeAppend), | |
| 2061 data, chunk); | |
| 2062 data += chunk; | |
| 2063 bytes_remaining -= chunk; | |
| 2064 } | |
| 2065 UNBLOCK_INPUT; | |
| 2066 return string; | |
| 2067 } | |
| 2068 | |
| 2069 | |
| 2169 | 2070 DEFUN ("x-rotate-cut-buffers-internal", Fx_rotate_cut_buffers_internal, |
| 2071 Sx_rotate_cut_buffers_internal, 1, 1, 0, | |
| 2072 "Rotate the values of the cut buffers by the given number of steps;\n\ | |
| 2161 | 2073 positive means move values forward, negative means backward.") |
| 2074 (n) | |
| 2075 Lisp_Object n; | |
| 2076 { | |
|
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
2077 Window window; |
|
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
2078 Atom props[8]; |
|
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
2079 Display *display; |
| 2161 | 2080 |
|
5947
9ff439565145
(x-own-selection-internal, x-get-selection-internal,
Karl Heuer <kwzh@gnu.org>
parents:
5244
diff
changeset
|
2081 check_x (); |
|
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
2082 display = FRAME_X_DISPLAY (selected_frame); |
|
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
2083 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
|
2084 CHECK_NUMBER (n, 0); |
|
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
2085 if (XINT (n) == 0) |
|
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
2086 return n; |
|
11161
3e309e3f0ad5
(Fx_store_cut_buffer_internal): Use the flag in the
Karl Heuer <kwzh@gnu.org>
parents:
10674
diff
changeset
|
2087 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
|
2088 { |
|
3e309e3f0ad5
(Fx_store_cut_buffer_internal): Use the flag in the
Karl Heuer <kwzh@gnu.org>
parents:
10674
diff
changeset
|
2089 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
|
2090 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
|
2091 } |
|
9616
1008823e2e1a
(x_get_foreign_selection): Get display from
Richard M. Stallman <rms@gnu.org>
parents:
9286
diff
changeset
|
2092 |
| 2161 | 2093 props[0] = XA_CUT_BUFFER0; |
| 2094 props[1] = XA_CUT_BUFFER1; | |
| 2095 props[2] = XA_CUT_BUFFER2; | |
| 2096 props[3] = XA_CUT_BUFFER3; | |
| 2097 props[4] = XA_CUT_BUFFER4; | |
| 2098 props[5] = XA_CUT_BUFFER5; | |
| 2099 props[6] = XA_CUT_BUFFER6; | |
| 2100 props[7] = XA_CUT_BUFFER7; | |
| 2101 BLOCK_INPUT; | |
| 2102 XRotateWindowProperties (display, window, props, 8, XINT (n)); | |
| 2103 UNBLOCK_INPUT; | |
| 2104 return n; | |
| 2105 } | |
| 2106 | |
| 2107 #endif | |
| 2108 | |
|
2163
8ba4fffa6566
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2161
diff
changeset
|
2109 void |
| 2161 | 2110 syms_of_xselect () |
| 2111 { | |
| 2112 defsubr (&Sx_get_selection_internal); | |
| 2113 defsubr (&Sx_own_selection_internal); | |
| 2114 defsubr (&Sx_disown_selection_internal); | |
| 2115 defsubr (&Sx_selection_owner_p); | |
| 2116 defsubr (&Sx_selection_exists_p); | |
| 2117 | |
| 2118 #ifdef CUT_BUFFER_SUPPORT | |
| 2169 | 2119 defsubr (&Sx_get_cut_buffer_internal); |
| 2120 defsubr (&Sx_store_cut_buffer_internal); | |
| 2121 defsubr (&Sx_rotate_cut_buffers_internal); | |
| 2161 | 2122 #endif |
| 2123 | |
| 2124 reading_selection_reply = Fcons (Qnil, Qnil); | |
| 2125 staticpro (&reading_selection_reply); | |
| 2126 reading_selection_window = 0; | |
| 2127 reading_which_selection = 0; | |
| 2128 | |
| 2129 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
|
2130 prop_location_identifier = 0; |
| 2161 | 2131 property_change_reply = Fcons (Qnil, Qnil); |
| 2132 staticpro (&property_change_reply); | |
| 2133 | |
| 2134 Vselection_alist = Qnil; | |
| 2135 staticpro (&Vselection_alist); | |
| 2136 | |
| 2137 DEFVAR_LISP ("selection-converter-alist", &Vselection_converter_alist, | |
| 2138 "An alist associating X Windows selection-types with functions.\n\ | |
| 2139 These functions are called to convert the selection, with three args:\n\ | |
| 2140 the name of the selection (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');\n\ | |
| 2141 a desired type to which the selection should be converted;\n\ | |
| 2142 and the local selection value (whatever was given to `x-own-selection').\n\ | |
| 2143 \n\ | |
| 2144 The function should return the value to send to the X server\n\ | |
| 2145 \(typically a string). A return value of nil\n\ | |
| 2146 means that the conversion could not be done.\n\ | |
| 2147 A return value which is the symbol `NULL'\n\ | |
| 2148 means that a side-effect was executed,\n\ | |
| 2149 and there is no meaningful selection value."); | |
| 2150 Vselection_converter_alist = Qnil; | |
| 2151 | |
| 2152 DEFVAR_LISP ("x-lost-selection-hooks", &Vx_lost_selection_hooks, | |
| 2153 "A list of functions to be called when Emacs loses an X selection.\n\ | |
| 2154 \(This happens when some other X client makes its own selection\n\ | |
| 2155 or when a Lisp program explicitly clears the selection.)\n\ | |
| 2156 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
|
2157 \(a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD')."); |
| 2161 | 2158 Vx_lost_selection_hooks = Qnil; |
| 2159 | |
| 2160 DEFVAR_LISP ("x-sent-selection-hooks", &Vx_sent_selection_hooks, | |
| 2161 "A list of functions to be called when Emacs answers a selection request.\n\ | |
| 2162 The functions are called with four arguments:\n\ | |
| 2163 - the selection name (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');\n\ | |
| 2164 - the selection-type which Emacs was asked to convert the\n\ | |
| 2165 selection into before sending (for example, `STRING' or `LENGTH');\n\ | |
| 2166 - a flag indicating success or failure for responding to the request.\n\ | |
| 2167 We might have failed (and declined the request) for any number of reasons,\n\ | |
| 2168 including being asked for a selection that we no longer own, or being asked\n\ | |
| 2169 to convert into a type that we don't know about or that is inappropriate.\n\ | |
| 2170 This hook doesn't let you change the behavior of Emacs's selection replies,\n\ | |
| 2171 it merely informs you that they have happened."); | |
| 2172 Vx_sent_selection_hooks = Qnil; | |
| 2173 | |
| 2174 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
|
2175 "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
|
2176 If the selection owner doesn't reply in this time, we give up.\n\ |
| 2161 | 2177 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
|
2178 \"*selectionTimeout\" resource."); |
| 2161 | 2179 x_selection_timeout = 0; |
| 2180 | |
| 2181 QPRIMARY = intern ("PRIMARY"); staticpro (&QPRIMARY); | |
| 2182 QSECONDARY = intern ("SECONDARY"); staticpro (&QSECONDARY); | |
| 2183 QSTRING = intern ("STRING"); staticpro (&QSTRING); | |
| 2184 QINTEGER = intern ("INTEGER"); staticpro (&QINTEGER); | |
| 2185 QCLIPBOARD = intern ("CLIPBOARD"); staticpro (&QCLIPBOARD); | |
| 2186 QTIMESTAMP = intern ("TIMESTAMP"); staticpro (&QTIMESTAMP); | |
| 2187 QTEXT = intern ("TEXT"); staticpro (&QTEXT); | |
| 2188 QTIMESTAMP = intern ("TIMESTAMP"); staticpro (&QTIMESTAMP); | |
| 2189 QDELETE = intern ("DELETE"); staticpro (&QDELETE); | |
| 2190 QMULTIPLE = intern ("MULTIPLE"); staticpro (&QMULTIPLE); | |
| 2191 QINCR = intern ("INCR"); staticpro (&QINCR); | |
| 2192 QEMACS_TMP = intern ("_EMACS_TMP_"); staticpro (&QEMACS_TMP); | |
| 2193 QTARGETS = intern ("TARGETS"); staticpro (&QTARGETS); | |
| 2194 QATOM = intern ("ATOM"); staticpro (&QATOM); | |
| 2195 QATOM_PAIR = intern ("ATOM_PAIR"); staticpro (&QATOM_PAIR); | |
| 2196 QNULL = intern ("NULL"); staticpro (&QNULL); | |
| 2197 | |
| 2198 #ifdef CUT_BUFFER_SUPPORT | |
| 2199 QCUT_BUFFER0 = intern ("CUT_BUFFER0"); staticpro (&QCUT_BUFFER0); | |
| 2200 QCUT_BUFFER1 = intern ("CUT_BUFFER1"); staticpro (&QCUT_BUFFER1); | |
| 2201 QCUT_BUFFER2 = intern ("CUT_BUFFER2"); staticpro (&QCUT_BUFFER2); | |
| 2202 QCUT_BUFFER3 = intern ("CUT_BUFFER3"); staticpro (&QCUT_BUFFER3); | |
| 2203 QCUT_BUFFER4 = intern ("CUT_BUFFER4"); staticpro (&QCUT_BUFFER4); | |
| 2204 QCUT_BUFFER5 = intern ("CUT_BUFFER5"); staticpro (&QCUT_BUFFER5); | |
| 2205 QCUT_BUFFER6 = intern ("CUT_BUFFER6"); staticpro (&QCUT_BUFFER6); | |
| 2206 QCUT_BUFFER7 = intern ("CUT_BUFFER7"); staticpro (&QCUT_BUFFER7); | |
| 2207 #endif | |
| 2208 | |
| 2209 } |
