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