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