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