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