Mercurial > emacs
annotate lisp/dnd.el @ 71765:6aa63dccd38d
* progmodes/cc-awk.el (defconst): Fix compilation error.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Mon, 10 Jul 2006 18:54:07 +0000 |
parents | eca94c558ceb |
children | eedaad0e9f80 |
rev | line source |
---|---|
61479 | 1 ;;; dnd.el --- drag and drop support. |
2 | |
68651
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
65582
diff
changeset
|
3 ;; Copyright (C) 2005, 2006 Free Software Foundation, Inc. |
61479 | 4 |
5 ;; Author: Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | |
6 ;; Maintainer: FSF | |
7 ;; Keywords: window, drag, drop | |
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 | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64091 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
61479 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;; This file provides the generic handling of the drop part only. | |
29 ;; Different DND backends (X11, W32, etc.) that handle the platform | |
30 ;; specific DND parts call the functions here to do final delivery of | |
31 ;; a drop. | |
32 | |
33 ;;; Code: | |
34 | |
35 ;;; Customizable variables | |
36 | |
37 | |
62311
a8f10a069bde
(dnd-protocol-alist): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
62240
diff
changeset
|
38 ;;;###autoload |
61479 | 39 (defcustom dnd-protocol-alist |
40 '( | |
41 ("^file:///" . dnd-open-local-file) ; XDND format. | |
42 ("^file://" . dnd-open-file) ; URL with host | |
43 ("^file:" . dnd-open-local-file) ; Old KDE, Motif, Sun | |
44 ) | |
45 | |
46 "The functions to call for different protocols when a drop is made. | |
47 This variable is used by `dnd-handle-one-url' and `dnd-handle-file-name'. | |
48 The list contains of (REGEXP . FUNCTION) pairs. | |
49 The functions shall take two arguments, URL, which is the URL dropped and | |
50 ACTION which is the action to be performed for the drop (move, copy, link, | |
51 private or ask). | |
52 If no match is found here, and the value of `browse-url-browser-function' | |
53 is a pair of (REGEXP . FUNCTION), those regexps are tried for a match. | |
54 If no match is found, the URL is inserted as text by calling `dnd-insert-text'. | |
55 The function shall return the action done (move, copy, link or private) | |
56 if some action was made, or nil if the URL is ignored." | |
57 :version "22.1" | |
62240
19d278c4224b
* dnd.el (dnd-protocol-alist): Improve custom type.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
61482
diff
changeset
|
58 :type '(repeat (cons (regexp) (function))) |
61479 | 59 :group 'dnd) |
60 | |
61 | |
62 | |
63 (defcustom dnd-open-file-other-window nil | |
64 "If non-nil, always use find-file-other-window to open dropped files." | |
65 :version "22.1" | |
66 :type 'boolean | |
67 :group 'dnd) | |
68 | |
69 | |
70 ;; Functions | |
71 | |
70760
eca94c558ceb
(dnd-handle-one-url): Change 3rd arg ARG to URL. Don't unescape URL.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
68651
diff
changeset
|
72 (defun dnd-handle-one-url (window action url) |
61479 | 73 "Handle one dropped url by calling the appropriate handler. |
74 The handler is first located by looking at `dnd-protocol-alist'. | |
75 If no match is found here, and the value of `browse-url-browser-function' | |
76 is a pair of (REGEXP . FUNCTION), those regexps are tried for a match. | |
77 If no match is found, just call `dnd-insert-text'. | |
78 WINDOW is where the drop happend, ACTION is the action for the drop, | |
70760
eca94c558ceb
(dnd-handle-one-url): Change 3rd arg ARG to URL. Don't unescape URL.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
68651
diff
changeset
|
79 URL is what has been dropped. |
61479 | 80 Returns ACTION." |
81 (require 'browse-url) | |
70760
eca94c558ceb
(dnd-handle-one-url): Change 3rd arg ARG to URL. Don't unescape URL.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
68651
diff
changeset
|
82 (let (ret) |
61479 | 83 (or |
84 (catch 'done | |
85 (dolist (bf dnd-protocol-alist) | |
70760
eca94c558ceb
(dnd-handle-one-url): Change 3rd arg ARG to URL. Don't unescape URL.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
68651
diff
changeset
|
86 (when (string-match (car bf) url) |
eca94c558ceb
(dnd-handle-one-url): Change 3rd arg ARG to URL. Don't unescape URL.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
68651
diff
changeset
|
87 (setq ret (funcall (cdr bf) url action)) |
61479 | 88 (throw 'done t))) |
89 nil) | |
90 (when (not (functionp browse-url-browser-function)) | |
91 (catch 'done | |
92 (dolist (bf browse-url-browser-function) | |
70760
eca94c558ceb
(dnd-handle-one-url): Change 3rd arg ARG to URL. Don't unescape URL.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
68651
diff
changeset
|
93 (when (string-match (car bf) url) |
61479 | 94 (setq ret 'private) |
70760
eca94c558ceb
(dnd-handle-one-url): Change 3rd arg ARG to URL. Don't unescape URL.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
68651
diff
changeset
|
95 (funcall (cdr bf) url action) |
61479 | 96 (throw 'done t))) |
97 nil)) | |
98 (progn | |
70760
eca94c558ceb
(dnd-handle-one-url): Change 3rd arg ARG to URL. Don't unescape URL.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
68651
diff
changeset
|
99 (dnd-insert-text window action url) |
61479 | 100 (setq ret 'private))) |
101 ret)) | |
102 | |
103 | |
104 (defun dnd-get-local-file-uri (uri) | |
105 "Return an uri converted to file:/// syntax if uri is a local file. | |
106 Return nil if URI is not a local file." | |
107 | |
108 ;; The hostname may be our hostname, in that case, convert to a local | |
109 ;; file. Otherwise return nil. TODO: How about an IP-address as hostname? | |
110 (let ((hostname (when (string-match "^file://\\([^/]*\\)" uri) | |
111 (downcase (match-string 1 uri)))) | |
112 (system-name-no-dot | |
113 (downcase (if (string-match "^[^\\.]+" system-name) | |
114 (match-string 0 system-name) | |
115 system-name)))) | |
116 (when (and hostname | |
117 (or (string-equal "localhost" hostname) | |
118 (string-equal (downcase system-name) hostname) | |
119 (string-equal system-name-no-dot hostname))) | |
120 (concat "file://" (substring uri (+ 7 (length hostname))))))) | |
121 | |
122 (defun dnd-get-local-file-name (uri &optional must-exist) | |
123 "Return file name converted from file:/// or file: syntax. | |
124 URI is the uri for the file. If MUST-EXIST is given and non-nil, | |
125 only return non-nil if the file exists. | |
126 Return nil if URI is not a local file." | |
127 (let ((f (cond ((string-match "^file:///" uri) ; XDND format. | |
128 (substring uri (1- (match-end 0)))) | |
129 ((string-match "^file:" uri) ; Old KDE, Motif, Sun | |
130 (substring uri (match-end 0)))))) | |
131 (when (and f must-exist) | |
70760
eca94c558ceb
(dnd-handle-one-url): Change 3rd arg ARG to URL. Don't unescape URL.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
68651
diff
changeset
|
132 (setq f (replace-regexp-in-string |
eca94c558ceb
(dnd-handle-one-url): Change 3rd arg ARG to URL. Don't unescape URL.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
68651
diff
changeset
|
133 "%[A-Z0-9][A-Z0-9]" |
eca94c558ceb
(dnd-handle-one-url): Change 3rd arg ARG to URL. Don't unescape URL.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
68651
diff
changeset
|
134 (lambda (arg) |
eca94c558ceb
(dnd-handle-one-url): Change 3rd arg ARG to URL. Don't unescape URL.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
68651
diff
changeset
|
135 (format "%c" (string-to-number (substring arg 1) 16))) |
eca94c558ceb
(dnd-handle-one-url): Change 3rd arg ARG to URL. Don't unescape URL.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
68651
diff
changeset
|
136 f nil t)) |
61479 | 137 (let* ((decoded-f (decode-coding-string |
138 f | |
139 (or file-name-coding-system | |
140 default-file-name-coding-system))) | |
141 (try-f (if (file-readable-p decoded-f) decoded-f f))) | |
142 (when (file-readable-p try-f) try-f))))) | |
143 | |
144 | |
145 (defun dnd-open-local-file (uri action) | |
146 "Open a local file. | |
147 The file is opened in the current window, or a new window if | |
148 `dnd-open-file-other-window' is set. URI is the url for the file, | |
149 and must have the format file:file-name or file:///file-name. | |
150 The last / in file:/// is part of the file name. ACTION is ignored." | |
151 | |
152 (let* ((f (dnd-get-local-file-name uri t))) | |
153 (if (and f (file-readable-p f)) | |
154 (progn | |
155 (if dnd-open-file-other-window | |
156 (find-file-other-window f) | |
157 (find-file f)) | |
158 'private) | |
159 (error "Can not read %s" uri)))) | |
160 | |
161 (defun dnd-open-file (uri action) | |
162 "Open a local or remote file. | |
163 The file is opened in the current window, or a new window if | |
164 `dnd-open-file-other-window' is set. URI is the url for the file, | |
165 and must have the format file://hostname/file-name. ACTION is ignored. | |
166 The last / in file://hostname/ is part of the file name." | |
167 | |
168 ;; The hostname may be our hostname, in that case, convert to a local | |
169 ;; file. Otherwise return nil. | |
170 (let ((local-file (dnd-get-local-file-uri uri))) | |
171 (if local-file (dnd-open-local-file local-file action) | |
172 (error "Remote files not supported")))) | |
173 | |
174 | |
175 (defun dnd-insert-text (window action text) | |
176 "Insert text at point or push to the kill ring if buffer is read only. | |
177 TEXT is the text as a string, WINDOW is the window where the drop happened." | |
178 (if (or buffer-read-only | |
179 (not (windowp window))) | |
180 (progn | |
181 (kill-new text) | |
65582
4d1085b02d64
Message format spec fixes (1)
Deepak Goel <deego@gnufans.org>
parents:
64762
diff
changeset
|
182 (message "%s" |
61479 | 183 (substitute-command-keys |
184 "The dropped text can be accessed with \\[yank]"))) | |
185 (insert text)) | |
186 action) | |
187 | |
188 | |
189 (provide 'dnd) | |
190 | |
61482 | 191 ;; arch-tag: 0472f6a5-2e8f-4304-9e44-1a0877c771b7 |
61479 | 192 ;;; dnd.el ends here |