annotate src/xselect.c @ 46293:1fb8f75062c6

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