1 ;;; select.el --- lisp portion of standard selection support.
5 ;; Copyright (c) 1993 Free Software Foundation, Inc.
6 ;; Based partially on earlier release by Lucid.
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
26 ;; This is for temporary compatibility with pre-release Emacs 19.
27 (defalias 'x-selection
'x-get-selection
)
28 (defun x-get-selection (&optional type data-type
)
29 "Return the value of an X Windows selection.
30 The argument TYPE (default `PRIMARY') says which selection,
31 and the argument DATA-TYPE (default `STRING') says how to convert the data."
32 (x-get-selection-internal (or type
'PRIMARY
) (or data-type
'STRING
)))
34 (defun x-get-clipboard ()
35 "Return text pasted to the clipboard."
36 (x-get-selection-internal 'CLIPBOARD
'STRING
))
38 (defun x-set-selection (type data
)
39 "Make an X Windows selection of type TYPE and value DATA.
40 The argument TYPE (default `PRIMARY') says which selection,
41 and DATA specifies the contents. DATA may be a string,
42 a symbol, an integer (or a cons of two integers or list of two integers),
43 or a cons of two markers pointing to the same buffer.
44 In the last case, the selection is considered to be the text
46 The data may also be a vector of valid non-vector selection values."
47 (interactive (if (not current-prefix-arg
)
48 (list (read-string "Store text for pasting: "))
49 (list (cons ;; these need not be ordered.
50 (copy-marker (point-marker))
51 (copy-marker (mark-marker))))))
52 ;; This is for temporary compatibility with pre-release Emacs 19.
54 (setq type
(intern type
)))
55 (or (x-valid-simple-selection-p data
)
58 (i (1- (length data
))))
60 (or (x-valid-simple-selection-p (aref data i
))
64 (signal 'error
(list "invalid selection" data
)))
65 (or type
(setq type
'PRIMARY
))
67 (x-own-selection-internal type data
)
68 (x-disown-selection-internal type
))
71 (defun x-valid-simple-selection-p (data)
77 (or (integerp (cdr data
))
78 (and (consp (cdr data
))
79 (integerp (car (cdr data
))))))
80 ;;; (and (fboundp 'extentp)
85 (marker-buffer (car data
))
86 (marker-buffer (cdr data
))
87 (eq (marker-buffer (car data
))
88 (marker-buffer (cdr data
)))
89 (buffer-name (marker-buffer (car data
)))
90 (buffer-name (marker-buffer (cdr data
))))))
92 ;;; Cut Buffer support
94 (defun x-get-cut-buffer (&optional which-one
)
95 "Returns the value of one of the 8 X server cut-buffers. Optional arg
96 WHICH-ONE should be a number from 0 to 7, defaulting to 0.
97 Cut buffers are considered obsolete; you should use selections instead."
98 (x-get-cut-buffer-internal
100 (aref [CUT_BUFFER0 CUT_BUFFER1 CUT_BUFFER2 CUT_BUFFER3
101 CUT_BUFFER4 CUT_BUFFER5 CUT_BUFFER6 CUT_BUFFER7
]
105 (defun x-set-cut-buffer (string &optional push
)
106 "Store STRING into the X server's primary cut buffer.
107 If PUSH is non-nil, also rotate the cut buffers:
108 this means the previous value of the primary cut buffer moves the second
109 cut buffer, and the second to the third, and so on (there are 8 buffers.)
110 Cut buffers are considered obsolete; you should use selections instead."
111 ;; Check the data type of STRING.
112 (substring string
0 0)
114 (x-rotate-cut-buffers-internal 1))
115 (x-store-cut-buffer-internal 'CUT_BUFFER0 string
))
118 ;;; Functions to convert the selection into various other selection types.
119 ;;; Every selection type that Emacs handles is implemented this way, except
120 ;;; for TIMESTAMP, which is a special case.
122 (defun xselect-convert-to-string (selection type value
)
123 (cond ((stringp value
)
127 ;;; (set-buffer (extent-buffer value))
128 ;;; (buffer-substring (extent-start-position value)
129 ;;; (extent-end-position value))))
131 (markerp (car value
))
132 (markerp (cdr value
)))
133 (or (eq (marker-buffer (car value
)) (marker-buffer (cdr value
)))
135 (list "markers must be in the same buffer"
136 (car value
) (cdr value
))))
138 (set-buffer (or (marker-buffer (car value
))
139 (error "selection is in a killed buffer")))
140 (buffer-substring (car value
) (cdr value
))))
143 (defun xselect-convert-to-length (selection type value
)
145 (cond ((stringp value
)
148 ;;; (extent-length value))
150 (markerp (car value
))
151 (markerp (cdr value
)))
152 (or (eq (marker-buffer (car value
))
153 (marker-buffer (cdr value
)))
155 (list "markers must be in the same buffer"
156 (car value
) (cdr value
))))
157 (abs (- (car value
) (cdr value
)))))))
158 (if value
; force it to be in 32-bit format.
159 (cons (ash value -
16) (logand value
65535))
162 (defun xselect-convert-to-targets (selection type value
)
163 ;; return a vector of atoms, but remove duplicates first.
164 (let* ((all (cons 'TIMESTAMP
(mapcar 'car selection-converter-alist
)))
167 (cond ((memq (car rest
) (cdr rest
))
168 (setcdr rest
(delq (car rest
) (cdr rest
))))
169 ((eq (car (cdr rest
)) '_EMACS_INTERNAL
) ; shh, it's a secret
170 (setcdr rest
(cdr (cdr rest
))))
172 (setq rest
(cdr rest
)))))
173 (apply 'vector all
)))
175 (defun xselect-convert-to-delete (selection type value
)
176 (x-disown-selection-internal selection
)
177 ;; A return value of nil means that we do not know how to do this conversion,
178 ;; and replies with an "error". A return value of NULL means that we have
179 ;; done the conversion (and any side-effects) but have no value to return.
182 (defun xselect-convert-to-filename (selection type value
)
185 ;;; (buffer-file-name (or (extent-buffer value)
186 ;;; (error "selection is in a killed buffer"))))
188 (markerp (car value
))
189 (markerp (cdr value
)))
190 (buffer-file-name (or (marker-buffer (car value
))
191 (error "selection is in a killed buffer"))))
194 (defun xselect-convert-to-charpos (selection type value
)
198 ;;; (setq a (extent-start-position value)
199 ;;; b (extent-end-position value)))
201 (markerp (car value
))
202 (markerp (cdr value
)))
205 (setq a
(1- a
) b
(1- b
)) ; zero-based
206 (if (< b a
) (setq tmp a a b b tmp
))
208 (vector (cons (ash a -
16) (logand a
65535))
209 (cons (ash b -
16) (logand b
65535))))))))
211 (defun xselect-convert-to-lineno (selection type value
)
213 (cond ((cond ((and (consp value
)
214 (markerp (car value
))
215 (markerp (cdr value
)))
216 (setq a
(marker-position (car value
))
217 b
(marker-position (cdr value
))
218 buf
(marker-buffer (car value
))))
220 ;;; (setq buf (extent-buffer value)
221 ;;; a (extent-start-position value)
222 ;;; b (extent-end-position value)))
226 (setq a
(count-lines 1 a
)
227 b
(count-lines 1 b
)))
228 (if (< b a
) (setq tmp a a b b tmp
))
230 (vector (cons (ash a -
16) (logand a
65535))
231 (cons (ash b -
16) (logand b
65535))))))))
233 (defun xselect-convert-to-colno (selection type value
)
235 (cond ((cond ((and (consp value
)
236 (markerp (car value
))
237 (markerp (cdr value
)))
240 buf
(marker-buffer a
)))
242 ;;; (setq buf (extent-buffer value)
243 ;;; a (extent-start-position value)
244 ;;; b (extent-end-position value)))
249 (setq a
(current-column))
251 (setq b
(current-column)))
252 (if (< b a
) (setq tmp a a b b tmp
))
254 (vector (cons (ash a -
16) (logand a
65535))
255 (cons (ash b -
16) (logand b
65535))))))))
257 (defun xselect-convert-to-os (selection type size
)
258 (symbol-name system-type
))
260 (defun xselect-convert-to-host (selection type size
)
263 (defun xselect-convert-to-user (selection type size
)
266 (defun xselect-convert-to-class (selection type size
)
269 ;; We do not try to determine the name Emacs was invoked with,
270 ;; because it is not clean for a program's behavior to depend on that.
271 (defun xselect-convert-to-name (selection type size
)
274 (defun xselect-convert-to-integer (selection type value
)
275 (and (integerp value
)
276 (cons (ash value -
16) (logand value
65535))))
278 (defun xselect-convert-to-atom (selection type value
)
279 (and (symbolp value
) value
))
281 (defun xselect-convert-to-identity (selection type value
) ; used internally
284 (setq selection-converter-alist
285 '((TEXT . xselect-convert-to-string
)
286 (STRING . xselect-convert-to-string
)
287 (TARGETS . xselect-convert-to-targets
)
288 (LENGTH . xselect-convert-to-length
)
289 (DELETE . xselect-convert-to-delete
)
290 (FILE_NAME . xselect-convert-to-filename
)
291 (CHARACTER_POSITION . xselect-convert-to-charpos
)
292 (LINE_NUMBER . xselect-convert-to-lineno
)
293 (COLUMN_NUMBER . xselect-convert-to-colno
)
294 (OWNER_OS . xselect-convert-to-os
)
295 (HOST_NAME . xselect-convert-to-host
)
296 (USER . xselect-convert-to-user
)
297 (CLASS . xselect-convert-to-class
)
298 (NAME . xselect-convert-to-name
)
299 (ATOM . xselect-convert-to-atom
)
300 (INTEGER . xselect-convert-to-integer
)
301 (_EMACS_INTERNAL . xselect-convert-to-identity
)
306 ;;; select.el ends here.