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