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