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