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