Doc fix.
[bpt/emacs.git] / lisp / dnd.el
CommitLineData
e9dc55ba 1;;; dnd.el --- drag and drop support. -*- coding: utf-8 -*-
6018020d 2
e9dc55ba
GM
3;; Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010
4;; Free Software Foundation, Inc.
6018020d 5
e9dc55ba 6;; Author: Jan Djärv <jan.h.d@swipnet.se>
6018020d
JD
7;; Maintainer: FSF
8;; Keywords: window, drag, drop
9
10;; This file is part of GNU Emacs.
11
eb3fa2cf 12;; GNU Emacs is free software: you can redistribute it and/or modify
6018020d 13;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
6018020d
JD
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
eb3fa2cf 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
6018020d
JD
24
25;;; Commentary:
26
27;; This file provides the generic handling of the drop part only.
28;; Different DND backends (X11, W32, etc.) that handle the platform
29;; specific DND parts call the functions here to do final delivery of
30;; a drop.
31
32;;; Code:
33
34;;; Customizable variables
35
36
01147a50 37;;;###autoload
6018020d 38(defcustom dnd-protocol-alist
1e8780b1
DN
39 `((,(purecopy "^file:///") . dnd-open-local-file) ; XDND format.
40 (,(purecopy "^file://") . dnd-open-file) ; URL with host
41 (,(purecopy "^file:") . dnd-open-local-file) ; Old KDE, Motif, Sun
42 (,(purecopy "^\\(https?\\|ftp\\|file\\|nfs\\)://") . dnd-open-file)
c79b0f8f 43 )
6018020d
JD
44
45 "The functions to call for different protocols when a drop is made.
46This variable is used by `dnd-handle-one-url' and `dnd-handle-file-name'.
47The list contains of (REGEXP . FUNCTION) pairs.
48The functions shall take two arguments, URL, which is the URL dropped and
49ACTION which is the action to be performed for the drop (move, copy, link,
50private or ask).
51If no match is found here, and the value of `browse-url-browser-function'
52is a pair of (REGEXP . FUNCTION), those regexps are tried for a match.
53If no match is found, the URL is inserted as text by calling `dnd-insert-text'.
54The function shall return the action done (move, copy, link or private)
55if some action was made, or nil if the URL is ignored."
56 :version "22.1"
1ed8284d 57 :type '(repeat (cons (regexp) (function)))
6018020d
JD
58 :group 'dnd)
59
60
c79b0f8f
JD
61(defcustom dnd-open-remote-file-function
62 (if (eq system-type 'windows-nt)
8e9e7fa1 63 'dnd-open-local-file
c79b0f8f
JD
64 'dnd-open-remote-url)
65 "The function to call when opening a file on a remote machine.
66The function will be called with two arguments; URI and ACTION. See
67`dnd-open-file' for details.
68If nil, then dragging remote files into Emacs will result in an error.
8e9e7fa1
JR
69Predefined functions are `dnd-open-local-file' and `dnd-open-remote-url'.
70`dnd-open-local-file' attempts to open a remote file using its UNC name and
71is the default on MS-Windows. `dnd-open-remote-url' uses `url-handler-mode'
72and is the default except for MS-Windows."
c79b0f8f
JD
73 :version "22.1"
74 :type 'function
75 :group 'dnd)
76
6018020d
JD
77
78(defcustom dnd-open-file-other-window nil
79 "If non-nil, always use find-file-other-window to open dropped files."
80 :version "22.1"
81 :type 'boolean
82 :group 'dnd)
83
84
85;; Functions
86
01aa8c41 87(defun dnd-handle-one-url (window action url)
6018020d
JD
88 "Handle one dropped url by calling the appropriate handler.
89The handler is first located by looking at `dnd-protocol-alist'.
90If no match is found here, and the value of `browse-url-browser-function'
91is a pair of (REGEXP . FUNCTION), those regexps are tried for a match.
92If no match is found, just call `dnd-insert-text'.
a3545af4 93WINDOW is where the drop happened, ACTION is the action for the drop,
01aa8c41 94URL is what has been dropped.
6018020d
JD
95Returns ACTION."
96 (require 'browse-url)
01aa8c41 97 (let (ret)
6018020d
JD
98 (or
99 (catch 'done
100 (dolist (bf dnd-protocol-alist)
01aa8c41
YM
101 (when (string-match (car bf) url)
102 (setq ret (funcall (cdr bf) url action))
6018020d
JD
103 (throw 'done t)))
104 nil)
105 (when (not (functionp browse-url-browser-function))
106 (catch 'done
107 (dolist (bf browse-url-browser-function)
01aa8c41 108 (when (string-match (car bf) url)
6018020d 109 (setq ret 'private)
01aa8c41 110 (funcall (cdr bf) url action)
6018020d
JD
111 (throw 'done t)))
112 nil))
113 (progn
01aa8c41 114 (dnd-insert-text window action url)
6018020d
JD
115 (setq ret 'private)))
116 ret))
117
118
119(defun dnd-get-local-file-uri (uri)
120 "Return an uri converted to file:/// syntax if uri is a local file.
121Return nil if URI is not a local file."
122
123 ;; The hostname may be our hostname, in that case, convert to a local
124 ;; file. Otherwise return nil. TODO: How about an IP-address as hostname?
125 (let ((hostname (when (string-match "^file://\\([^/]*\\)" uri)
126 (downcase (match-string 1 uri))))
127 (system-name-no-dot
128 (downcase (if (string-match "^[^\\.]+" system-name)
129 (match-string 0 system-name)
130 system-name))))
131 (when (and hostname
132 (or (string-equal "localhost" hostname)
133 (string-equal (downcase system-name) hostname)
134 (string-equal system-name-no-dot hostname)))
135 (concat "file://" (substring uri (+ 7 (length hostname)))))))
136
137(defun dnd-get-local-file-name (uri &optional must-exist)
138 "Return file name converted from file:/// or file: syntax.
139URI is the uri for the file. If MUST-EXIST is given and non-nil,
140only return non-nil if the file exists.
141Return nil if URI is not a local file."
142 (let ((f (cond ((string-match "^file:///" uri) ; XDND format.
143 (substring uri (1- (match-end 0))))
144 ((string-match "^file:" uri) ; Old KDE, Motif, Sun
145 (substring uri (match-end 0))))))
146 (when (and f must-exist)
01aa8c41 147 (setq f (replace-regexp-in-string
e39ef891 148 "%[A-Fa-f0-9][A-Fa-f0-9]"
01aa8c41 149 (lambda (arg)
62a714fc
KH
150 (let ((str (make-string 1 0)))
151 (aset str 0 (string-to-number (substring arg 1) 16))
152 str))
e22f775c 153 f t t))
6018020d
JD
154 (let* ((decoded-f (decode-coding-string
155 f
156 (or file-name-coding-system
157 default-file-name-coding-system)))
158 (try-f (if (file-readable-p decoded-f) decoded-f f)))
159 (when (file-readable-p try-f) try-f)))))
160
161
162(defun dnd-open-local-file (uri action)
163 "Open a local file.
164The file is opened in the current window, or a new window if
165`dnd-open-file-other-window' is set. URI is the url for the file,
166and must have the format file:file-name or file:///file-name.
8e9e7fa1
JR
167The last / in file:/// is part of the file name. If the system
168natively supports unc file names, then remote urls of the form
169file://server-name/file-name will also be handled by this function.
170An alternative for systems that do not support unc file names is
171`dnd-open-remote-url'. ACTION is ignored."
6018020d
JD
172
173 (let* ((f (dnd-get-local-file-name uri t)))
174 (if (and f (file-readable-p f))
175 (progn
176 (if dnd-open-file-other-window
177 (find-file-other-window f)
178 (find-file f))
179 'private)
180 (error "Can not read %s" uri))))
181
c79b0f8f
JD
182(defun dnd-open-remote-url (uri action)
183 "Open a remote file with `find-file' and `url-handler-mode'.
184Turns `url-handler-mode' on if not on before. The file is opened in the
185current window, or a new window if `dnd-open-file-other-window' is set.
186URI is the url for the file. ACTION is ignored."
187 (progn
1df4d4a8 188 (require 'url-handlers)
c79b0f8f
JD
189 (or url-handler-mode (url-handler-mode))
190 (if dnd-open-file-other-window
191 (find-file-other-window uri)
192 (find-file uri))
193 'private))
194
195
6018020d
JD
196(defun dnd-open-file (uri action)
197 "Open a local or remote file.
198The file is opened in the current window, or a new window if
199`dnd-open-file-other-window' is set. URI is the url for the file,
200and must have the format file://hostname/file-name. ACTION is ignored.
201The last / in file://hostname/ is part of the file name."
202
203 ;; The hostname may be our hostname, in that case, convert to a local
204 ;; file. Otherwise return nil.
205 (let ((local-file (dnd-get-local-file-uri uri)))
206 (if local-file (dnd-open-local-file local-file action)
c79b0f8f
JD
207 (if dnd-open-remote-file-function
208 (funcall dnd-open-remote-file-function uri action)
209 (error "Remote files not supported")))))
6018020d
JD
210
211
212(defun dnd-insert-text (window action text)
213 "Insert text at point or push to the kill ring if buffer is read only.
214TEXT is the text as a string, WINDOW is the window where the drop happened."
215 (if (or buffer-read-only
216 (not (windowp window)))
217 (progn
218 (kill-new text)
8a26c165 219 (message "%s"
6018020d
JD
220 (substitute-command-keys
221 "The dropped text can be accessed with \\[yank]")))
222 (insert text))
223 action)
224
225
226(provide 'dnd)
227
0436c0c2 228;; arch-tag: 0472f6a5-2e8f-4304-9e44-1a0877c771b7
6018020d 229;;; dnd.el ends here