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