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