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