Mercurial > emacs
annotate lisp/select.el @ 49176:56966d83f3a5
(sh-mode-map): Use command remapping instead of
substitute-key-definition.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Sun, 12 Jan 2003 20:51:12 +0000 |
parents | f7c325954eca |
children | 10a6fd9d8e9c |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33914
diff
changeset
|
1 ;;; select.el --- lisp portion of standard selection support |
2234 | 2 |
45078 | 3 ;; Maintainer: FSF |
2234 | 4 ;; Keywords: internal |
5 | |
7300 | 6 ;; Copyright (c) 1993, 1994 Free Software Foundation, Inc. |
2234 | 7 ;; Based partially on earlier release by Lucid. |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
2234 | 25 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33914
diff
changeset
|
26 ;;; Commentary: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33914
diff
changeset
|
27 |
2234 | 28 ;;; Code: |
29 | |
30 ;; This is for temporary compatibility with pre-release Emacs 19. | |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2234
diff
changeset
|
31 (defalias 'x-selection 'x-get-selection) |
2234 | 32 (defun x-get-selection (&optional type data-type) |
33 "Return the value of an X Windows selection. | |
34 The argument TYPE (default `PRIMARY') says which selection, | |
19142
fffebc19fe53
(x-get-selection): Change default for data-type
Richard M. Stallman <rms@gnu.org>
parents:
17012
diff
changeset
|
35 and the argument DATA-TYPE (default `STRING') says |
33914
5876bde45199
(x-get-selection): Docstring dix.
Eli Zaretskii <eliz@gnu.org>
parents:
26423
diff
changeset
|
36 how to convert the data. |
5876bde45199
(x-get-selection): Docstring dix.
Eli Zaretskii <eliz@gnu.org>
parents:
26423
diff
changeset
|
37 |
5876bde45199
(x-get-selection): Docstring dix.
Eli Zaretskii <eliz@gnu.org>
parents:
26423
diff
changeset
|
38 TYPE may be `SECONDARY' or `CLIPBOARD', in addition to `PRIMARY'. |
5876bde45199
(x-get-selection): Docstring dix.
Eli Zaretskii <eliz@gnu.org>
parents:
26423
diff
changeset
|
39 DATA-TYPE is usually `STRING', but can also be one of the symbols |
5876bde45199
(x-get-selection): Docstring dix.
Eli Zaretskii <eliz@gnu.org>
parents:
26423
diff
changeset
|
40 in `selection-converter-alist', which see." |
19142
fffebc19fe53
(x-get-selection): Change default for data-type
Richard M. Stallman <rms@gnu.org>
parents:
17012
diff
changeset
|
41 (x-get-selection-internal (or type 'PRIMARY) (or data-type 'STRING))) |
2234 | 42 |
43 (defun x-get-clipboard () | |
44 "Return text pasted to the clipboard." | |
45 (x-get-selection-internal 'CLIPBOARD 'STRING)) | |
46 | |
47 (defun x-set-selection (type data) | |
48 "Make an X Windows selection of type TYPE and value DATA. | |
49 The argument TYPE (default `PRIMARY') says which selection, | |
50 and DATA specifies the contents. DATA may be a string, | |
11406
dc4b96a8dc2e
(x-set-selection): Fix up interactive defaults.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
51 a symbol, an integer (or a cons of two integers or list of two integers). |
dc4b96a8dc2e
(x-set-selection): Fix up interactive defaults.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
52 |
dc4b96a8dc2e
(x-set-selection): Fix up interactive defaults.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
53 The selection may also be a cons of two markers pointing to the same buffer, |
dc4b96a8dc2e
(x-set-selection): Fix up interactive defaults.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
54 or an overlay. In these cases, the selection is considered to be the text |
dc4b96a8dc2e
(x-set-selection): Fix up interactive defaults.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
55 between the markers *at whatever time the selection is examined*. |
dc4b96a8dc2e
(x-set-selection): Fix up interactive defaults.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
56 Thus, editing done in the buffer after you specify the selection |
dc4b96a8dc2e
(x-set-selection): Fix up interactive defaults.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
57 can alter the effective value of the selection. |
dc4b96a8dc2e
(x-set-selection): Fix up interactive defaults.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
58 |
dc4b96a8dc2e
(x-set-selection): Fix up interactive defaults.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
59 The data may also be a vector of valid non-vector selection values. |
dc4b96a8dc2e
(x-set-selection): Fix up interactive defaults.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
60 |
26423
73efdb6af008
(x-set-selection): Call buffer-substring, not
Gerd Moellmann <gerd@gnu.org>
parents:
19142
diff
changeset
|
61 Interactively, the text of the region is used as the selection value |
73efdb6af008
(x-set-selection): Call buffer-substring, not
Gerd Moellmann <gerd@gnu.org>
parents:
19142
diff
changeset
|
62 if the prefix arg is set." |
2234 | 63 (interactive (if (not current-prefix-arg) |
11406
dc4b96a8dc2e
(x-set-selection): Fix up interactive defaults.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
64 (list 'PRIMARY (read-string "Set text for pasting: ")) |
26423
73efdb6af008
(x-set-selection): Call buffer-substring, not
Gerd Moellmann <gerd@gnu.org>
parents:
19142
diff
changeset
|
65 (list 'PRIMARY (buffer-substring (region-beginning) (region-end))))) |
2234 | 66 ;; This is for temporary compatibility with pre-release Emacs 19. |
67 (if (stringp type) | |
68 (setq type (intern type))) | |
69 (or (x-valid-simple-selection-p data) | |
70 (and (vectorp data) | |
71 (let ((valid t) | |
72 (i (1- (length data)))) | |
73 (while (>= i 0) | |
74 (or (x-valid-simple-selection-p (aref data i)) | |
75 (setq valid nil)) | |
76 (setq i (1- i))) | |
77 valid)) | |
78 (signal 'error (list "invalid selection" data))) | |
79 (or type (setq type 'PRIMARY)) | |
80 (if data | |
81 (x-own-selection-internal type data) | |
82 (x-disown-selection-internal type)) | |
83 data) | |
84 | |
85 (defun x-valid-simple-selection-p (data) | |
86 (or (stringp data) | |
87 (symbolp data) | |
88 (integerp data) | |
89 (and (consp data) | |
90 (integerp (car data)) | |
91 (or (integerp (cdr data)) | |
92 (and (consp (cdr data)) | |
93 (integerp (car (cdr data)))))) | |
6442
c81cfdffcf49
(x-valid-simple-selection-p): Accept an overlay.
Richard M. Stallman <rms@gnu.org>
parents:
3035
diff
changeset
|
94 (overlayp data) |
2234 | 95 (and (consp data) |
96 (markerp (car data)) | |
97 (markerp (cdr data)) | |
98 (marker-buffer (car data)) | |
99 (marker-buffer (cdr data)) | |
100 (eq (marker-buffer (car data)) | |
101 (marker-buffer (cdr data))) | |
102 (buffer-name (marker-buffer (car data))) | |
103 (buffer-name (marker-buffer (cdr data)))))) | |
104 | |
105 ;;; Cut Buffer support | |
106 | |
107 (defun x-get-cut-buffer (&optional which-one) | |
41989
fd3c70d7a093
Follow doc-string conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
38414
diff
changeset
|
108 "Returns the value of one of the 8 X server cut-buffers. |
fd3c70d7a093
Follow doc-string conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
38414
diff
changeset
|
109 Optional arg WHICH-ONE should be a number from 0 to 7, defaulting to 0. |
2234 | 110 Cut buffers are considered obsolete; you should use selections instead." |
111 (x-get-cut-buffer-internal | |
112 (if which-one | |
113 (aref [CUT_BUFFER0 CUT_BUFFER1 CUT_BUFFER2 CUT_BUFFER3 | |
114 CUT_BUFFER4 CUT_BUFFER5 CUT_BUFFER6 CUT_BUFFER7] | |
115 which-one) | |
116 'CUT_BUFFER0))) | |
117 | |
3035
5c758290ba6c
(x-set-cut-buffer): New arg PUSH.
Richard M. Stallman <rms@gnu.org>
parents:
2879
diff
changeset
|
118 (defun x-set-cut-buffer (string &optional push) |
2234 | 119 "Store STRING into the X server's primary cut buffer. |
3035
5c758290ba6c
(x-set-cut-buffer): New arg PUSH.
Richard M. Stallman <rms@gnu.org>
parents:
2879
diff
changeset
|
120 If PUSH is non-nil, also rotate the cut buffers: |
5c758290ba6c
(x-set-cut-buffer): New arg PUSH.
Richard M. Stallman <rms@gnu.org>
parents:
2879
diff
changeset
|
121 this means the previous value of the primary cut buffer moves the second |
2234 | 122 cut buffer, and the second to the third, and so on (there are 8 buffers.) |
123 Cut buffers are considered obsolete; you should use selections instead." | |
124 ;; Check the data type of STRING. | |
125 (substring string 0 0) | |
3035
5c758290ba6c
(x-set-cut-buffer): New arg PUSH.
Richard M. Stallman <rms@gnu.org>
parents:
2879
diff
changeset
|
126 (if push |
5c758290ba6c
(x-set-cut-buffer): New arg PUSH.
Richard M. Stallman <rms@gnu.org>
parents:
2879
diff
changeset
|
127 (x-rotate-cut-buffers-internal 1)) |
2234 | 128 (x-store-cut-buffer-internal 'CUT_BUFFER0 string)) |
129 | |
130 | |
131 ;;; Functions to convert the selection into various other selection types. | |
132 ;;; Every selection type that Emacs handles is implemented this way, except | |
133 ;;; for TIMESTAMP, which is a special case. | |
134 | |
135 (defun xselect-convert-to-string (selection type value) | |
46879
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
136 (let (str coding) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
137 ;; Get the actual string from VALUE. |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
138 (cond ((stringp value) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
139 (setq str value)) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
140 |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
141 ((overlayp value) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
142 (save-excursion |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
143 (or (buffer-name (overlay-buffer value)) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
144 (error "selection is in a killed buffer")) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
145 (set-buffer (overlay-buffer value)) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
146 (setq str (buffer-substring (overlay-start value) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
147 (overlay-end value))))) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
148 ((and (consp value) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
149 (markerp (car value)) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
150 (markerp (cdr value))) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
151 (or (eq (marker-buffer (car value)) (marker-buffer (cdr value))) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
152 (signal 'error |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
153 (list "markers must be in the same buffer" |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
154 (car value) (cdr value)))) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
155 (save-excursion |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
156 (set-buffer (or (marker-buffer (car value)) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
157 (error "selection is in a killed buffer"))) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
158 (setq str (buffer-substring (car value) (cdr value)))))) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
159 |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
160 (when str |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
161 ;; If TYPE is nil, this is a local request, thus return STR as |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
162 ;; is. Otherwise, encode STR. |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
163 (if (not type) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
164 str |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
165 (setq coding (or next-selection-coding-system selection-coding-system)) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
166 (if coding |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
167 (setq coding (coding-system-base coding)) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
168 (setq coding 'raw-text)) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
169 ;; Suppress producing escape sequences for compositions. |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
170 (remove-text-properties 0 (length str) '(composition nil) str) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
171 (cond |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
172 ((eq type 'TEXT) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
173 (if (not (multibyte-string-p str)) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
174 ;; Don't have to encode unibyte string. |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
175 (setq type 'STRING) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
176 ;; If STR contains only ASCII, Latin-1, and raw bytes, |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
177 ;; encode STR by iso-latin-1, and return it as type |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
178 ;; `STRING'. Otherwise, encode STR by CODING. In that |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
179 ;; case, the returing type depends on CODING. |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
180 (let ((charsets (find-charset-string str))) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
181 (setq charsets |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
182 (delq 'ascii |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
183 (delq 'latin-iso8859-1 |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
184 (delq 'eight-bit-control |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
185 (delq 'eight-bit-graphic charsets))))) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
186 (if charsets |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
187 (setq str (encode-coding-string str coding) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
188 type (if (memq coding '(compound-text |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
189 compound-text-with-extensions)) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
190 'COMPOUND_TEXT |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
191 'STRING)) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
192 (setq type 'STRING |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
193 str (encode-coding-string str 'iso-latin-1)))))) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
194 |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
195 ((eq type 'COMPOUND_TEXT) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
196 (setq str (encode-coding-string str coding))) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
197 |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
198 ((eq type 'STRING) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
199 (if (memq coding '(compound-text |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
200 compound-text-with-extensions)) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
201 (setq str (string-make-unibyte str)) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
202 (setq str (encode-coding-string str coding)))) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
203 |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
204 ((eq type 'UTF8_STRING) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
205 (setq str (encode-coding-string str 'utf-8))) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
206 |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
207 (t |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
208 (error "Unknow selection type: %S" type)) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
209 )) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
210 |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
211 (setq next-selection-coding-system nil) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
212 (cons type str)))) |
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
213 |
2234 | 214 |
215 (defun xselect-convert-to-length (selection type value) | |
216 (let ((value | |
217 (cond ((stringp value) | |
218 (length value)) | |
6442
c81cfdffcf49
(x-valid-simple-selection-p): Accept an overlay.
Richard M. Stallman <rms@gnu.org>
parents:
3035
diff
changeset
|
219 ((overlayp value) |
c81cfdffcf49
(x-valid-simple-selection-p): Accept an overlay.
Richard M. Stallman <rms@gnu.org>
parents:
3035
diff
changeset
|
220 (abs (- (overlay-end value) (overlay-start value)))) |
2234 | 221 ((and (consp value) |
222 (markerp (car value)) | |
223 (markerp (cdr value))) | |
224 (or (eq (marker-buffer (car value)) | |
225 (marker-buffer (cdr value))) | |
226 (signal 'error | |
227 (list "markers must be in the same buffer" | |
228 (car value) (cdr value)))) | |
229 (abs (- (car value) (cdr value))))))) | |
230 (if value ; force it to be in 32-bit format. | |
231 (cons (ash value -16) (logand value 65535)) | |
232 nil))) | |
233 | |
234 (defun xselect-convert-to-targets (selection type value) | |
235 ;; return a vector of atoms, but remove duplicates first. | |
236 (let* ((all (cons 'TIMESTAMP (mapcar 'car selection-converter-alist))) | |
237 (rest all)) | |
238 (while rest | |
239 (cond ((memq (car rest) (cdr rest)) | |
240 (setcdr rest (delq (car rest) (cdr rest)))) | |
241 ((eq (car (cdr rest)) '_EMACS_INTERNAL) ; shh, it's a secret | |
242 (setcdr rest (cdr (cdr rest)))) | |
243 (t | |
244 (setq rest (cdr rest))))) | |
245 (apply 'vector all))) | |
246 | |
247 (defun xselect-convert-to-delete (selection type value) | |
248 (x-disown-selection-internal selection) | |
249 ;; A return value of nil means that we do not know how to do this conversion, | |
250 ;; and replies with an "error". A return value of NULL means that we have | |
251 ;; done the conversion (and any side-effects) but have no value to return. | |
252 'NULL) | |
253 | |
254 (defun xselect-convert-to-filename (selection type value) | |
6442
c81cfdffcf49
(x-valid-simple-selection-p): Accept an overlay.
Richard M. Stallman <rms@gnu.org>
parents:
3035
diff
changeset
|
255 (cond ((overlayp value) |
c81cfdffcf49
(x-valid-simple-selection-p): Accept an overlay.
Richard M. Stallman <rms@gnu.org>
parents:
3035
diff
changeset
|
256 (buffer-file-name (or (overlay-buffer value) |
c81cfdffcf49
(x-valid-simple-selection-p): Accept an overlay.
Richard M. Stallman <rms@gnu.org>
parents:
3035
diff
changeset
|
257 (error "selection is in a killed buffer")))) |
2234 | 258 ((and (consp value) |
259 (markerp (car value)) | |
260 (markerp (cdr value))) | |
261 (buffer-file-name (or (marker-buffer (car value)) | |
262 (error "selection is in a killed buffer")))) | |
263 (t nil))) | |
264 | |
265 (defun xselect-convert-to-charpos (selection type value) | |
266 (let (a b tmp) | |
6442
c81cfdffcf49
(x-valid-simple-selection-p): Accept an overlay.
Richard M. Stallman <rms@gnu.org>
parents:
3035
diff
changeset
|
267 (cond ((cond ((overlayp value) |
c81cfdffcf49
(x-valid-simple-selection-p): Accept an overlay.
Richard M. Stallman <rms@gnu.org>
parents:
3035
diff
changeset
|
268 (setq a (overlay-start value) |
c81cfdffcf49
(x-valid-simple-selection-p): Accept an overlay.
Richard M. Stallman <rms@gnu.org>
parents:
3035
diff
changeset
|
269 b (overlay-end value))) |
2234 | 270 ((and (consp value) |
271 (markerp (car value)) | |
272 (markerp (cdr value))) | |
273 (setq a (car value) | |
274 b (cdr value)))) | |
275 (setq a (1- a) b (1- b)) ; zero-based | |
276 (if (< b a) (setq tmp a a b b tmp)) | |
277 (cons 'SPAN | |
278 (vector (cons (ash a -16) (logand a 65535)) | |
279 (cons (ash b -16) (logand b 65535)))))))) | |
280 | |
281 (defun xselect-convert-to-lineno (selection type value) | |
282 (let (a b buf tmp) | |
283 (cond ((cond ((and (consp value) | |
284 (markerp (car value)) | |
285 (markerp (cdr value))) | |
286 (setq a (marker-position (car value)) | |
287 b (marker-position (cdr value)) | |
288 buf (marker-buffer (car value)))) | |
6442
c81cfdffcf49
(x-valid-simple-selection-p): Accept an overlay.
Richard M. Stallman <rms@gnu.org>
parents:
3035
diff
changeset
|
289 ((overlayp value) |
c81cfdffcf49
(x-valid-simple-selection-p): Accept an overlay.
Richard M. Stallman <rms@gnu.org>
parents:
3035
diff
changeset
|
290 (setq buf (overlay-buffer value) |
c81cfdffcf49
(x-valid-simple-selection-p): Accept an overlay.
Richard M. Stallman <rms@gnu.org>
parents:
3035
diff
changeset
|
291 a (overlay-start value) |
c81cfdffcf49
(x-valid-simple-selection-p): Accept an overlay.
Richard M. Stallman <rms@gnu.org>
parents:
3035
diff
changeset
|
292 b (overlay-end value))) |
2234 | 293 ) |
294 (save-excursion | |
295 (set-buffer buf) | |
296 (setq a (count-lines 1 a) | |
297 b (count-lines 1 b))) | |
298 (if (< b a) (setq tmp a a b b tmp)) | |
299 (cons 'SPAN | |
300 (vector (cons (ash a -16) (logand a 65535)) | |
301 (cons (ash b -16) (logand b 65535)))))))) | |
302 | |
303 (defun xselect-convert-to-colno (selection type value) | |
304 (let (a b buf tmp) | |
305 (cond ((cond ((and (consp value) | |
306 (markerp (car value)) | |
307 (markerp (cdr value))) | |
308 (setq a (car value) | |
309 b (cdr value) | |
310 buf (marker-buffer a))) | |
6442
c81cfdffcf49
(x-valid-simple-selection-p): Accept an overlay.
Richard M. Stallman <rms@gnu.org>
parents:
3035
diff
changeset
|
311 ((overlayp value) |
c81cfdffcf49
(x-valid-simple-selection-p): Accept an overlay.
Richard M. Stallman <rms@gnu.org>
parents:
3035
diff
changeset
|
312 (setq buf (overlay-buffer value) |
c81cfdffcf49
(x-valid-simple-selection-p): Accept an overlay.
Richard M. Stallman <rms@gnu.org>
parents:
3035
diff
changeset
|
313 a (overlay-start value) |
c81cfdffcf49
(x-valid-simple-selection-p): Accept an overlay.
Richard M. Stallman <rms@gnu.org>
parents:
3035
diff
changeset
|
314 b (overlay-end value))) |
2234 | 315 ) |
316 (save-excursion | |
317 (set-buffer buf) | |
318 (goto-char a) | |
319 (setq a (current-column)) | |
320 (goto-char b) | |
321 (setq b (current-column))) | |
322 (if (< b a) (setq tmp a a b b tmp)) | |
323 (cons 'SPAN | |
324 (vector (cons (ash a -16) (logand a 65535)) | |
325 (cons (ash b -16) (logand b 65535)))))))) | |
326 | |
327 (defun xselect-convert-to-os (selection type size) | |
328 (symbol-name system-type)) | |
329 | |
330 (defun xselect-convert-to-host (selection type size) | |
331 (system-name)) | |
332 | |
333 (defun xselect-convert-to-user (selection type size) | |
334 (user-full-name)) | |
335 | |
336 (defun xselect-convert-to-class (selection type size) | |
42028
5f0fca416a2f
(xselect-convert-to-class, xselect-convert-to-name): Documented.
Pavel Janík <Pavel@Janik.cz>
parents:
41989
diff
changeset
|
337 "Convert selection to class. |
5f0fca416a2f
(xselect-convert-to-class, xselect-convert-to-name): Documented.
Pavel Janík <Pavel@Janik.cz>
parents:
41989
diff
changeset
|
338 This function returns the string \"Emacs\"." |
2879
48dd9b2361df
* select.el (xselect-convert-to-class): Just return "Emacs" here.
Jim Blandy <jimb@redhat.com>
parents:
2571
diff
changeset
|
339 "Emacs") |
2234 | 340 |
341 ;; We do not try to determine the name Emacs was invoked with, | |
342 ;; because it is not clean for a program's behavior to depend on that. | |
343 (defun xselect-convert-to-name (selection type size) | |
42028
5f0fca416a2f
(xselect-convert-to-class, xselect-convert-to-name): Documented.
Pavel Janík <Pavel@Janik.cz>
parents:
41989
diff
changeset
|
344 "Convert selection to name. |
5f0fca416a2f
(xselect-convert-to-class, xselect-convert-to-name): Documented.
Pavel Janík <Pavel@Janik.cz>
parents:
41989
diff
changeset
|
345 This function returns the string \"emacs\"." |
2234 | 346 "emacs") |
347 | |
348 (defun xselect-convert-to-integer (selection type value) | |
349 (and (integerp value) | |
350 (cons (ash value -16) (logand value 65535)))) | |
351 | |
352 (defun xselect-convert-to-atom (selection type value) | |
353 (and (symbolp value) value)) | |
354 | |
355 (defun xselect-convert-to-identity (selection type value) ; used internally | |
356 (vector value)) | |
357 | |
358 (setq selection-converter-alist | |
359 '((TEXT . xselect-convert-to-string) | |
17012
f1932b36f01d
(x-get-selection): Set default data-type of selection
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
360 (COMPOUND_TEXT . xselect-convert-to-string) |
2234 | 361 (STRING . xselect-convert-to-string) |
46879
f7c325954eca
(xselect-convert-to-string): If TYPE is non-nil,
Kenichi Handa <handa@m17n.org>
parents:
45647
diff
changeset
|
362 (UTF8_STRING . xselect-convert-to-string) |
2234 | 363 (TARGETS . xselect-convert-to-targets) |
364 (LENGTH . xselect-convert-to-length) | |
365 (DELETE . xselect-convert-to-delete) | |
366 (FILE_NAME . xselect-convert-to-filename) | |
367 (CHARACTER_POSITION . xselect-convert-to-charpos) | |
368 (LINE_NUMBER . xselect-convert-to-lineno) | |
369 (COLUMN_NUMBER . xselect-convert-to-colno) | |
370 (OWNER_OS . xselect-convert-to-os) | |
371 (HOST_NAME . xselect-convert-to-host) | |
372 (USER . xselect-convert-to-user) | |
373 (CLASS . xselect-convert-to-class) | |
374 (NAME . xselect-convert-to-name) | |
375 (ATOM . xselect-convert-to-atom) | |
376 (INTEGER . xselect-convert-to-integer) | |
377 (_EMACS_INTERNAL . xselect-convert-to-identity) | |
378 )) | |
379 | |
380 (provide 'select) | |
381 | |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33914
diff
changeset
|
382 ;;; select.el ends here |