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