(python-open-block-statement-p): Fix
[emacs.git] / lisp / x-dnd.el
blob7d43a10556eb597c7f9e2095167f2c1101ff7276
1 ;;; x-dnd.el --- drag and drop support for X.
3 ;; Copyright (C) 2004
4 ;; Free Software Foundation, Inc.
6 ;; Author: Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7 ;; Maintainer: FSF
8 ;; Keywords: window, drag, drop
10 ;; This file is part of GNU Emacs.
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.
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.
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., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
27 ;;; Commentary:
29 ;; This file provides the drop part only. Currently supported protocols
30 ;; are XDND, Motif and the old KDE 1.x protocol.
32 ;;; Code:
34 ;;; Customizable variables
37 (defcustom x-dnd-test-function 'x-dnd-default-test-function
38 "The function drag and drop uses to determine if to accept or reject a drop.
39 The function takes three arguments, WINDOW ACTION and TYPES.
40 WINDOW is where the mouse is when the function is called. WINDOW may be a
41 frame if the mouse isn't over a real window (i.e. menu bar, tool bar or
42 scroll bar). ACTION is the suggested action from the drag and drop source,
43 one of the symbols move, copy link or ask. TYPES is a list of available types
44 for the drop.
46 The function shall return nil to reject the drop or a cons with two values,
47 the wanted action as car and the wanted type as cdr. The wanted action
48 can be copy, move, link, ask or private.
49 The default value for this variable is `x-dnd-default-test-function'."
50 :type 'symbol
51 :group 'x)
53 (defcustom x-dnd-protocol-alist
55 ("^file:///" . x-dnd-open-local-file) ; XDND format.
56 ("^file://" . x-dnd-open-file) ; URL with host
57 ("^file:" . x-dnd-open-local-file) ; Old KDE, Motif, Sun
60 "The functions to call for different protocols when a drop is made.
61 This variable is used by `x-dnd-handle-uri-list' and `x-dnd-handle-moz-url'.
62 The list contains of (REGEXP . FUNCTION) pairs.
63 The functions shall take two arguments, URL, which is the URL dropped and
64 ACTION which is the action to be performed for the drop (move, copy, link,
65 private or ask).
66 If no match is found here, and the value of `browse-url-browser-function'
67 is a pair of (REGEXP . FUNCTION), those regexps are tried for a match.
68 Insertion of text is not handeled by these functions, see `x-dnd-types-alist'
69 for that.
70 The function shall return the action done (move, copy, link or private)
71 if some action was made, or nil if the URL is ignored."
72 :type 'alist
73 :group 'x)
76 (defcustom x-dnd-types-alist
78 ("text/uri-list" . x-dnd-handle-uri-list)
79 ("text/x-moz-url" . x-dnd-handle-moz-url)
80 ("_NETSCAPE_URL" . x-dnd-handle-uri-list)
81 ("FILE_NAME" . x-dnd-handle-file-name)
82 ("UTF8_STRING" . x-dnd-insert-utf8-text)
83 ("text/plain;charset=UTF-8" . x-dnd-insert-utf8-text)
84 ("text/plain;charset=utf-8" . x-dnd-insert-utf8-text)
85 ("text/unicode" . x-dnd-insert-utf16-text)
86 ("text/plain" . x-dnd-insert-text)
87 ("COMPOUND_TEXT" . x-dnd-insert-ctext)
88 ("STRING" . x-dnd-insert-text)
89 ("TEXT" . x-dnd-insert-text)
91 "Which function to call to handle a drop of that type.
92 If the type for the drop is not present, or the function is nil,
93 the drop is rejected. The function takes three arguments, WINDOW, ACTION
94 and DATA. WINDOW is where the drop occured, ACTION is the action for
95 this drop (copy, move, link, private or ask) as determined by a previous
96 call to `x-dnd-test-function'. DATA is the drop data.
97 The function shall return the action used (copy, move, link or private) if drop
98 is successful, nil if not."
99 :type 'alist
100 :group 'x)
102 (defcustom x-dnd-open-file-other-window nil
103 "If non-nil, always use find-file-other-window to open dropped files."
104 :type 'boolean
105 :group 'x)
107 ;; Internal variables
109 (defvar x-dnd-known-types
110 '("text/uri-list"
111 "text/x-moz-url"
112 "_NETSCAPE_URL"
113 "FILE_NAME"
114 "UTF8_STRING"
115 "text/plain;charset=UTF-8"
116 "text/plain;charset=utf-8"
117 "text/unicode"
118 "text/plain"
119 "COMPOUND_TEXT"
120 "STRING"
121 "TEXT"
123 "The types accepted by default for dropped data.
124 The types are chosen in the order they appear in the list.")
126 (defvar x-dnd-current-state nil
127 "The current state for a drop.
128 This is an alist with one entry for each display. The value for each display
129 is a vector that contains the state for drag and drop for that display.
130 Elements in the vector are:
131 Last buffer drag was in,
132 last window drag was in,
133 types available for drop,
134 the action suggested by the source,
135 the type we want for the drop,
136 the action we want for the drop,
137 any protocol specific data.")
139 (defvar x-dnd-empty-state [nil nil nil nil nil nil nil])
143 (defun x-dnd-init-frame (&optional frame)
144 "Setup drag and drop for FRAME (i.e. create appropriate properties)."
145 (x-dnd-init-xdnd-for-frame frame)
146 (x-dnd-init-motif-for-frame frame))
148 (defun x-dnd-get-state-cons-for-frame (frame-or-window)
149 "Return the entry in x-dnd-current-state for a frame or window."
150 (let* ((frame (if (framep frame-or-window) frame-or-window
151 (window-frame frame-or-window)))
152 (display (frame-parameter frame 'display)))
153 (if (not (assoc display x-dnd-current-state))
154 (push (cons display (copy-sequence x-dnd-empty-state))
155 x-dnd-current-state))
156 (assoc display x-dnd-current-state)))
158 (defun x-dnd-get-state-for-frame (frame-or-window)
159 "Return the state in x-dnd-current-state for a frame or window."
160 (cdr (x-dnd-get-state-cons-for-frame frame-or-window)))
162 (defun x-dnd-default-test-function (window action types)
163 "The default test function for drag and drop.
164 WINDOW is where the mouse is when this function is called. It may be a frame
165 if the mouse is over the menu bar, scroll bar or tool bar.
166 ACTION is the suggested action from the source, and TYPES are the
167 types the drop data can have. This function only accepts drops with
168 types in `x-dnd-known-types'. It always returns the action private."
169 (let ((type (x-dnd-choose-type types)))
170 (when type (cons 'private type))))
173 (defun x-dnd-current-type (frame-or-window)
174 "Return the type we want the DND data to be in for the current drop.
175 FRAME-OR-WINDOW is the frame or window that the mouse is over."
176 (aref (x-dnd-get-state-for-frame frame-or-window) 4))
178 (defun x-dnd-forget-drop (frame-or-window)
179 "Remove all state for the last drop.
180 FRAME-OR-WINDOW is the frame or window that the mouse is over."
181 (setcdr (x-dnd-get-state-cons-for-frame frame-or-window)
182 (copy-sequence x-dnd-empty-state)))
184 (defun x-dnd-maybe-call-test-function (window action)
185 "Call `x-dnd-test-function' if something has changed.
186 WINDOW is the window the mouse is over. ACTION is the suggested
187 action from the source. If nothing has changed, return the last
188 action and type we got from `x-dnd-test-function'."
189 (let ((buffer (when (and (windowp window) (window-live-p window))
190 (window-buffer window)))
191 (current-state (x-dnd-get-state-for-frame window)))
192 (when (or (not (equal buffer (aref current-state 0)))
193 (not (equal window (aref current-state 1)))
194 (not (equal action (aref current-state 3))))
195 (save-excursion
196 (when buffer (set-buffer buffer))
197 (let* ((action-type (funcall x-dnd-test-function
198 window
199 action
200 (aref current-state 2)))
201 (handler (cdr (assoc (cdr action-type) x-dnd-types-alist))))
202 ;; Ignore action-type if we have no handler.
203 (setq current-state
204 (x-dnd-save-state window
205 action
206 (when handler action-type)))))))
207 (let ((current-state (x-dnd-get-state-for-frame window)))
208 (cons (aref current-state 5)
209 (aref current-state 4))))
211 (defun x-dnd-save-state (window action action-type &optional types extra-data)
212 "Save the state of the current drag and drop.
213 WINDOW is the window the mouse is over. ACTION is the action suggested
214 by the source. ACTION-TYPE is the result of calling `x-dnd-test-function'.
215 If given, TYPES are the types for the drop data that the source supports.
216 EXTRA-DATA is data needed for a specific protocol."
217 (let ((current-state (x-dnd-get-state-for-frame window)))
218 (aset current-state 5 (car action-type))
219 (aset current-state 4 (cdr action-type))
220 (aset current-state 3 action)
221 (when types (aset current-state 2 types))
222 (when extra-data (aset current-state 6 extra-data))
223 (aset current-state 1 window)
224 (aset current-state 0 (if (and (windowp window)
225 (window-live-p window))
226 (window-buffer window) nil))
227 (setcdr (x-dnd-get-state-cons-for-frame window) current-state)))
230 (defun x-dnd-handle-one-url (window action arg)
231 "Handle one dropped url by calling the appropriate handler.
232 The handler is first localted by looking at `x-dnd-protocol-alist'.
233 If no match is found here, and the value of `browse-url-browser-function'
234 is a pair of (REGEXP . FUNCTION), those regexps are tried for a match.
235 If no match is found, just call `x-dnd-insert-text'.
236 WINDOW is where the drop happend, ACTION is the action for the drop,
237 ARG is the URL that has been dropped.
238 Returns ACTION."
239 (require 'browse-url)
240 (let* ((uri (replace-regexp-in-string
241 "%[A-Z0-9][A-Z0-9]"
242 (lambda (arg)
243 (format "%c" (string-to-number (substring arg 1) 16)))
244 arg))
245 ret)
247 (catch 'done
248 (dolist (bf x-dnd-protocol-alist)
249 (when (string-match (car bf) uri)
250 (setq ret (funcall (cdr bf) uri action))
251 (throw 'done t)))
252 nil)
253 (when (not (functionp browse-url-browser-function))
254 (catch 'done
255 (dolist (bf browse-url-browser-function)
256 (when (string-match (car bf) uri)
257 (setq ret 'private)
258 (funcall (cdr bf) uri action)
259 (throw 'done t)))
260 nil))
261 (progn
262 (x-dnd-insert-text window action uri)
263 (setq ret 'private)))
264 ret))
267 (defun x-dnd-get-local-file-uri (uri)
268 "Return an uri converted to file:/// syntax if uri is a local file.
269 Return nil if URI is not a local file."
271 ;; The hostname may be our hostname, in that case, convert to a local
272 ;; file. Otherwise return nil. TODO: How about an IP-address as hostname?
273 (let ((hostname (when (string-match "^file://\\([^/]*\\)" uri)
274 (downcase (match-string 1 uri))))
275 (system-name-no-dot
276 (downcase (if (string-match "^[^\\.]+" system-name)
277 (match-string 0 system-name)
278 system-name))))
279 (when (and hostname
280 (or (string-equal "localhost" hostname)
281 (string-equal (downcase system-name) hostname)
282 (string-equal system-name-no-dot hostname)))
283 (concat "file://" (substring uri (+ 7 (length hostname)))))))
285 (defun x-dnd-get-local-file-name (uri &optional must-exist)
286 "Return file name converted from file:/// or file: syntax.
287 URI is the uri for the file. If MUST-EXIST is given and non-nil,
288 only return non-nil if the file exists.
289 Return nil if URI is not a local file."
290 (let ((f (cond ((string-match "^file:///" uri) ; XDND format.
291 (substring uri (1- (match-end 0))))
292 ((string-match "^file:" uri) ; Old KDE, Motif, Sun
293 (substring uri (match-end 0))))))
294 (when (and f must-exist)
295 (let* ((decoded-f (decode-coding-string
297 (or file-name-coding-system
298 default-file-name-coding-system)))
299 (try-f (if (file-readable-p decoded-f) decoded-f f)))
300 (when (file-readable-p try-f) try-f)))))
303 (defun x-dnd-open-local-file (uri action)
304 "Open a local file.
305 The file is opened in the current window, or a new window if
306 `x-dnd-open-file-other-window' is set. URI is the url for the file,
307 and must have the format file:file-name or file:///file-name.
308 The last / in file:/// is part of the file name. ACTION is ignored."
310 (let* ((f (x-dnd-get-local-file-name uri t)))
311 (if (and f (file-readable-p f))
312 (progn
313 (if x-dnd-open-file-other-window
314 (find-file-other-window f)
315 (find-file f))
316 'private)
317 (error "Can not read %s" uri))))
319 (defun x-dnd-open-file (uri action)
320 "Open a local or remote file.
321 The file is opened in the current window, or a new window if
322 `x-dnd-open-file-other-window' is set. URI is the url for the file,
323 and must have the format file://hostname/file-name. ACTION is ignored.
324 The last / in file://hostname/ is part of the file name."
326 ;; The hostname may be our hostname, in that case, convert to a local
327 ;; file. Otherwise return nil.
328 (let ((local-file (x-dnd-get-local-file-uri uri)))
329 (if local-file (x-dnd-open-local-file local-file action)
330 (error "Remote files not supported"))))
333 (defun x-dnd-handle-moz-url (window action data)
334 "Handle one item of type text/x-moz-url.
335 WINDOW is the window where the drop happened. ACTION is ignored.
336 DATA is the moz-url, which is formatted as two strings separated by \r\n.
337 The first string is the URL, the second string is the title of that URL.
338 DATA is encoded in utf-16. Decode the URL and call `x-dnd-handle-uri-list'."
339 ;; Mozilla and applications based on it (Galeon for example) uses
340 ;; text/unicode, but it is impossible to tell if it is le or be. Use what
341 ;; the machine Emacs runs on use. This looses if dropping between machines
342 ;; with different endian, but it is the best we can do.
343 (let* ((coding (if (eq (byteorder) ?B) 'utf-16be 'utf-16le))
344 (string (decode-coding-string data coding))
345 (strings (split-string string "[\r\n]" t))
346 ;; Can one drop more than one moz-url ?? Assume not.
347 (url (car strings))
348 (title (car (cdr strings))))
349 (x-dnd-handle-uri-list window action url)))
351 (defun x-dnd-insert-utf8-text (window action text)
352 "Decode the UTF-8 text and insert it at point.
353 TEXT is the text as a string, WINDOW is the window where the drop happened."
354 (x-dnd-insert-text window action (decode-coding-string text 'utf-8)))
356 (defun x-dnd-insert-utf16-text (window action text)
357 "Decode the UTF-16 text and insert it at point.
358 TEXT is the text as a string, WINDOW is the window where the drop happened."
359 ;; See comment in x-dnd-handle-moz-url about coding.
360 (let ((coding (if (eq (byteorder) ?B) 'utf-16be 'utf-16le)))
361 (x-dnd-insert-text window action (decode-coding-string text coding))))
363 (defun x-dnd-insert-ctext (window action text)
364 "Decode the compound text and insert it at point.
365 TEXT is the text as a string, WINDOW is the window where the drop happened."
366 (x-dnd-insert-text window action
367 (decode-coding-string text
368 'compound-text-with-extensions)))
370 (defun x-dnd-insert-text (window action text)
371 "Insert text at point or push to the kill ring if buffer is read only.
372 TEXT is the text as a string, WINDOW is the window where the drop happened."
373 (if (or buffer-read-only
374 (not (windowp window)))
375 (progn
376 (kill-new text)
377 (message
378 (substitute-command-keys
379 "The dropped text can be accessed with \\[yank]")))
380 (insert text))
381 action)
383 (defun x-dnd-handle-uri-list (window action string)
384 "Split an uri-list into separate URIs and call `x-dnd-handle-one-url'.
385 WINDOW is the window where the drop happened.
386 STRING is the uri-list as a string. The URIs are separated by \r\n."
387 (let ((uri-list (split-string string "[\0\r\n]" t))
388 retval)
389 (dolist (bf uri-list)
390 ;; If one URL is handeled, treat as if the whole drop succeeded.
391 (let ((did-action (x-dnd-handle-one-url window action bf)))
392 (when did-action (setq retval did-action))))
393 retval))
395 (defun x-dnd-handle-file-name (window action string)
396 "Prepend file:// to file names and call `x-dnd-handle-one-url'.
397 WINDOW is the window where the drop happened.
398 STRING is the file names as a string, separated by nulls."
399 (let ((uri-list (split-string string "[\0\r\n]" t))
400 retval)
401 (dolist (bf uri-list)
402 ;; If one URL is handeled, treat as if the whole drop succeeded.
403 (let* ((file-uri (concat "file://" bf))
404 (did-action (x-dnd-handle-one-url window action file-uri)))
405 (when did-action (setq retval did-action))))
406 retval))
409 (defun x-dnd-choose-type (types &optional known-types)
410 "Choose which type we want to receive for the drop.
411 TYPES are the types the source of the drop offers, a vector of type names
412 as strings or symbols. Select among the types in `x-dnd-known-types' or
413 KNOWN-TYPES if given, and return that type name.
414 If no suitable type is found, return nil."
415 (let* ((known-list (or known-types x-dnd-known-types))
416 (first-known-type (car known-list))
417 (types-array types)
418 (found (when first-known-type
419 (catch 'done
420 (dotimes (i (length types-array))
421 (let* ((type (aref types-array i))
422 (typename (if (symbolp type)
423 (symbol-name type) type)))
424 (when (equal first-known-type typename)
425 (throw 'done first-known-type))))
426 nil))))
428 (if (and (not found) (cdr known-list))
429 (x-dnd-choose-type types (cdr known-list))
430 found)))
432 (defun x-dnd-drop-data (event frame window data type)
433 "Drop one data item onto a frame.
434 EVENT is the client message for the drop, FRAME is the frame the drop occurred
435 on. WINDOW is the window of FRAME where the drop happened. DATA is the data
436 received from the source, and type is the type for DATA, see
437 `x-dnd-types-alist').
439 Returns the action used (move, copy, link, private) if drop was successful,
440 nil if not."
441 (let* ((type-info (assoc type x-dnd-types-alist))
442 (handler (cdr type-info))
443 (state (x-dnd-get-state-for-frame frame))
444 (action (aref state 5))
445 (w (posn-window (event-start event))))
446 (when handler
447 (if (and (windowp w) (window-live-p w))
448 ;; If dropping in a window, open files in that window rather
449 ;; than in a new widow.
450 (let ((x-dnd-open-file-other-window nil))
451 (goto-char (posn-point (event-start event)))
452 (funcall handler window action data))
453 (let ((x-dnd-open-file-other-window t)) ;; Dropping on non-window.
454 (select-frame frame)
455 (funcall handler window action data))))))
457 (defun x-dnd-handle-drag-n-drop-event (event)
458 "Receive drag and drop events (X client messages).
459 Currently XDND, Motif and old KDE 1.x protocols are recognized."
460 (interactive "e")
461 (let* ((client-message (car (cdr (cdr event))))
462 (window (posn-window (event-start event)))
463 (message-atom (aref client-message 0))
464 (frame (aref client-message 1))
465 (format (aref client-message 2))
466 (data (aref client-message 3)))
468 (cond ((equal "DndProtocol" message-atom) ; Old KDE 1.x.
469 (x-dnd-handle-old-kde event frame window message-atom format data))
471 ((equal "_MOTIF_DRAG_AND_DROP_MESSAGE" message-atom) ; Motif
472 (x-dnd-handle-motif event frame window message-atom format data))
474 ((and (> (length message-atom) 4) ; XDND protocol.
475 (equal "Xdnd" (substring message-atom 0 4)))
476 (x-dnd-handle-xdnd event frame window message-atom format data)))))
479 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
480 ;;; Old KDE protocol. Only dropping of files.
482 (defun x-dnd-handle-old-kde (event frame window message format data)
483 "Open the files in a KDE 1.x drop."
484 (let ((values (x-window-property "DndSelection" frame nil 0 t)))
485 (x-dnd-handle-uri-list window 'private
486 (replace-regexp-in-string "\0$" "" values))))
487 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
491 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
492 ;;; XDND protocol.
494 (defvar x-dnd-xdnd-to-action
495 '(("XdndActionPrivate" . private)
496 ("XdndActionCopy" . copy)
497 ("XdndActionMove" . move)
498 ("XdndActionLink" . link)
499 ("XdndActionAsk" . ask))
500 "Mapping from XDND action types to lisp symbols.")
502 (defun x-dnd-init-xdnd-for-frame (frame)
503 "Set the XdndAware property for FRAME to indicate that we do XDND."
504 (x-change-window-property "XdndAware"
505 '(5) ;; The version of XDND we support.
506 frame "ATOM" 32 t))
508 (defun x-dnd-get-drop-width-height (frame w accept)
509 "Return the widht/height to be sent in a XDndStatus message.
510 FRAME is the frame and W is the window where the drop happened.
511 If ACCEPT is nil return 0 (empty rectangle),
512 otherwise if W is a window, return its widht/height,
513 otherwise return the frame width/height."
514 (if accept
515 (if (windowp w) ;; w is not a window if dropping on the menu bar,
516 ;; scroll bar or tool bar.
517 (let ((edges (window-inside-pixel-edges w)))
518 (cons
519 (- (nth 2 edges) (nth 0 edges)) ;; right - left
520 (- (nth 3 edges) (nth 1 edges)))) ;; bottom - top
521 (cons (frame-pixel-width frame)
522 (frame-pixel-height frame)))
525 (defun x-dnd-get-drop-x-y (frame w)
526 "Return the x/y coordinates to be sent in a XDndStatus message.
527 Coordinates are required to be absolute.
528 FRAME is the frame and W is the window where the drop happened.
529 If W is a window, return its absolute corrdinates,
530 otherwise return the frame coordinates."
531 (let* ((frame-left (frame-parameter frame 'left))
532 ;; If the frame is outside the display, frame-left looks like
533 ;; '(0 -16). Extract the -16.
534 (frame-real-left (if (consp frame-left) (car (cdr frame-left))
535 frame-left))
536 (frame-top (frame-parameter frame 'top))
537 (frame-real-top (if (consp frame-top) (car (cdr frame-top))
538 frame-top)))
539 (if (windowp w)
540 (let ((edges (window-inside-pixel-edges w)))
541 (cons
542 (+ frame-real-left (nth 0 edges))
543 (+ frame-real-top (nth 1 edges))))
544 (cons frame-real-left frame-real-top))))
546 (defun x-dnd-handle-xdnd (event frame window message format data)
547 "Receive one XDND event (client message) and send the appropriate reply.
548 EVENT is the client message. FRAME is where the mouse is now.
549 WINDOW is the window within FRAME where the mouse is now.
550 FORMAT is 32 (not used). MESSAGE is the data part of an XClientMessageEvent."
551 (cond ((equal "XdndEnter" message)
552 (let ((version (ash (car (aref data 1)) -8))
553 (more-than-3 (cdr (aref data 1)))
554 (dnd-source (aref data 0)))
555 (x-dnd-save-state
556 window nil nil
557 (if (> more-than-3 0)
558 (x-window-property "XdndTypeList"
559 frame "AnyPropertyType"
560 dnd-source nil t)
561 (vector (x-get-atom-name (aref data 2))
562 (x-get-atom-name (aref data 3))
563 (x-get-atom-name (aref data 4)))))))
565 ((equal "XdndPosition" message)
566 (let* ((x (car (aref data 2)))
567 (y (cdr (aref data 2)))
568 (action (x-get-atom-name (aref data 4)))
569 (dnd-source (aref data 0))
570 (dnd-time (aref data 3))
571 (action-type (x-dnd-maybe-call-test-function
572 window
573 (cdr (assoc action x-dnd-xdnd-to-action))))
574 (reply-action (car (rassoc (car action-type)
575 x-dnd-xdnd-to-action)))
576 (accept ;; 1 = accept, 0 = reject
577 (if (and reply-action action-type) 1 0))
578 (list-to-send
579 (list (string-to-number
580 (frame-parameter frame 'outer-window-id))
581 accept ;; 1 = Accept, 0 = reject.
582 (x-dnd-get-drop-x-y frame window)
583 (x-dnd-get-drop-width-height
584 frame window (eq accept 1))
585 (or reply-action 0)
587 (x-send-client-message
588 frame dnd-source frame "XdndStatus" 32 list-to-send)
591 ((equal "XdndLeave" message)
592 (x-dnd-forget-drop window))
594 ((equal "XdndDrop" message)
595 (if (windowp window) (select-window window))
596 (let* ((dnd-source (aref data 0))
597 (value (and (x-dnd-current-type window)
598 (x-get-selection-internal
599 'XdndSelection
600 (intern (x-dnd-current-type window)))))
601 success action ret-action)
603 (setq action (if value
604 (condition-case info
605 (x-dnd-drop-data event frame window value
606 (x-dnd-current-type window))
607 (error
608 (message "Error: %s" info)
609 nil))))
611 (setq success (if action 1 0))
612 (setq ret-action
613 (if (eq success 1)
614 (or (car (rassoc action x-dnd-xdnd-to-action))
615 "XdndActionPrivate")
618 (x-send-client-message
619 frame dnd-source frame "XdndFinished" 32
620 (list (string-to-number (frame-parameter frame 'outer-window-id))
621 success ;; 1 = Success, 0 = Error
622 (if success "XdndActionPrivate" 0)
624 (x-dnd-forget-drop window)))
626 (t (error "Unknown XDND message %s %s" message data))))
628 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
629 ;;; Motif protocol.
631 (defun x-dnd-init-motif-for-frame (frame)
632 "Set _MOTIF_DRAG_RECEIVER_INFO for FRAME to indicate that we do Motif DND."
633 (x-change-window-property "_MOTIF_DRAG_RECEIVER_INFO"
634 (list
635 (byteorder)
636 0 ; The Motif DND version.
637 5 ; We want drag dynamic.
638 0 0 0 0 0 0 0
639 0 0 0 0 0 0) ; Property must be 16 bytes.
640 frame "_MOTIF_DRAG_RECEIVER_INFO" 8 t))
642 (defun x-dnd-get-motif-value (data offset size byteorder)
643 (cond ((eq size 2)
644 (if (eq byteorder ?l)
645 (+ (ash (aref data (1+ offset)) 8)
646 (aref data offset))
647 (+ (ash (aref data offset) 8)
648 (aref data (1+ offset)))))
650 ((eq size 4)
651 (if (eq byteorder ?l)
652 (cons (+ (ash (aref data (+ 3 offset)) 8)
653 (aref data (+ 2 offset)))
654 (+ (ash (aref data (1+ offset)) 8)
655 (aref data offset)))
656 (cons (+ (ash (aref data offset) 8)
657 (aref data (1+ offset)))
658 (+ (ash (aref data (+ 2 offset)) 8)
659 (aref data (+ 3 offset))))))))
661 (defun x-dnd-motif-value-to-list (value size byteorder)
662 (let ((bytes (cond ((eq size 2)
663 (list (logand (lsh value -8) ?\xff)
664 (logand value ?\xff)))
666 ((eq size 4)
667 (if (consp value)
668 (list (logand (lsh (car value) -8) ?\xff)
669 (logand (car value) ?\xff)
670 (logand (lsh (cdr value) -8) ?\xff)
671 (logand (cdr value) ?\xff))
672 (list (logand (lsh value -24) ?\xff)
673 (logand (lsh value -16) ?\xff)
674 (logand (lsh value -8) ?\xff)
675 (logand value ?\xff)))))))
676 (if (eq byteorder ?l)
677 (reverse bytes)
678 bytes)))
681 (defvar x-dnd-motif-message-types
682 '((0 . XmTOP_LEVEL_ENTER)
683 (1 . XmTOP_LEVEL_LEAVE)
684 (2 . XmDRAG_MOTION)
685 (3 . XmDROP_SITE_ENTER)
686 (4 . XmDROP_SITE_LEAVE)
687 (5 . XmDROP_START)
688 (6 . XmDROP_FINISH)
689 (7 . XmDRAG_DROP_FINISH)
690 (8 . XmOPERATION_CHANGED))
691 "Mapping from numbers to Motif DND message types.")
693 (defvar x-dnd-motif-to-action
694 '((1 . move)
695 (2 . copy)
696 (3 . link) ; Both 3 and 4 has been seen as link.
697 (4 . link)
698 (2 . private)) ; Motif does not have private, so use copy for private.
699 "Mapping from number to operation for Motif DND.")
701 (defun x-dnd-handle-motif (event frame window message-atom format data)
702 (let* ((message-type (cdr (assoc (aref data 0) x-dnd-motif-message-types)))
703 (source-byteorder (aref data 1))
704 (my-byteorder (byteorder))
705 (source-flags (x-dnd-get-motif-value data 2 2 source-byteorder))
706 (source-action (cdr (assoc (logand ?\xF source-flags)
707 x-dnd-motif-to-action))))
709 (cond ((eq message-type 'XmTOP_LEVEL_ENTER)
710 (let* ((dnd-source (x-dnd-get-motif-value
711 data 8 4 source-byteorder))
712 (selection-atom (x-dnd-get-motif-value
713 data 12 4 source-byteorder))
714 (atom-name (x-get-atom-name selection-atom))
715 (types (when atom-name
716 (x-get-selection-internal (intern atom-name)
717 'TARGETS))))
718 (x-dnd-forget-drop frame)
719 (when types (x-dnd-save-state window nil nil
720 types
721 dnd-source))))
723 ;; Can not forget drop here, LEAVE comes before DROP_START and
724 ;; we need the state in DROP_START.
725 ((eq message-type 'XmTOP_LEVEL_LEAVE)
726 nil)
728 ((eq message-type 'XmDRAG_MOTION)
729 (let* ((state (x-dnd-get-state-for-frame frame))
730 (timestamp (x-dnd-motif-value-to-list
731 (x-dnd-get-motif-value data 4 4
732 source-byteorder)
733 4 my-byteorder))
734 (x (x-dnd-motif-value-to-list
735 (x-dnd-get-motif-value data 8 2 source-byteorder)
736 2 my-byteorder))
737 (y (x-dnd-motif-value-to-list
738 (x-dnd-get-motif-value data 10 2 source-byteorder)
739 2 my-byteorder))
740 (dnd-source (aref state 6))
741 (first-move (not (aref state 3)))
742 (action-type (x-dnd-maybe-call-test-function
743 window
744 source-action))
745 (reply-action (car (rassoc (car action-type)
746 x-dnd-motif-to-action)))
747 (reply-flags
748 (x-dnd-motif-value-to-list
749 (if reply-action
750 (+ reply-action
751 ?\x30 ; 30: valid drop site
752 ?\x700) ; 700: can do copy, move or link
753 ?\x30) ; 30: drop site, but noop.
754 2 my-byteorder))
755 (reply (append
756 (list
757 (+ ?\x80 ; 0x80 indicates a reply.
758 (if first-move
759 3 ; First time, reply is SITE_ENTER.
760 2)) ; Not first time, reply is DRAG_MOTION.
761 my-byteorder)
762 reply-flags
763 timestamp
765 y)))
766 (x-send-client-message frame
767 dnd-source
768 frame
769 "_MOTIF_DRAG_AND_DROP_MESSAGE"
771 reply)))
773 ((eq message-type 'XmOPERATION_CHANGED)
774 (let* ((state (x-dnd-get-state-for-frame frame))
775 (timestamp (x-dnd-motif-value-to-list
776 (x-dnd-get-motif-value data 4 4 source-byteorder)
777 4 my-byteorder))
778 (dnd-source (aref state 6))
779 (action-type (x-dnd-maybe-call-test-function
780 window
781 source-action))
782 (reply-action (car (rassoc (car action-type)
783 x-dnd-motif-to-action)))
784 (reply-flags
785 (x-dnd-motif-value-to-list
786 (if reply-action
787 (+ reply-action
788 ?\x30 ; 30: valid drop site
789 ?\x700) ; 700: can do copy, move or link
790 ?\x30) ; 30: drop site, but noop
791 2 my-byteorder))
792 (reply (append
793 (list
794 (+ ?\x80 ; 0x80 indicates a reply.
795 8) ; 8 is OPERATION_CHANGED
796 my-byteorder)
797 reply-flags
798 timestamp)))
799 (x-send-client-message frame
800 dnd-source
801 frame
802 "_MOTIF_DRAG_AND_DROP_MESSAGE"
804 reply)))
806 ((eq message-type 'XmDROP_START)
807 (let* ((x (x-dnd-motif-value-to-list
808 (x-dnd-get-motif-value data 8 2 source-byteorder)
809 2 my-byteorder))
810 (y (x-dnd-motif-value-to-list
811 (x-dnd-get-motif-value data 10 2 source-byteorder)
812 2 my-byteorder))
813 (selection-atom (x-dnd-get-motif-value
814 data 12 4 source-byteorder))
815 (atom-name (x-get-atom-name selection-atom))
816 (dnd-source (x-dnd-get-motif-value
817 data 16 4 source-byteorder))
818 (action-type (x-dnd-maybe-call-test-function
819 window
820 source-action))
821 (reply-action (car (rassoc (car action-type)
822 x-dnd-motif-to-action)))
823 (reply-flags
824 (x-dnd-motif-value-to-list
825 (if reply-action
826 (+ reply-action
827 ?\x30 ; 30: valid drop site
828 ?\x700) ; 700: can do copy, move or link
829 (+ ?\x30 ; 30: drop site, but noop.
830 ?\x200)) ; 200: drop cancel.
831 2 my-byteorder))
832 (reply (append
833 (list
834 (+ ?\x80 ; 0x80 indicates a reply.
835 5) ; DROP_START.
836 my-byteorder)
837 reply-flags
840 (timestamp (x-dnd-get-motif-value
841 data 4 4 source-byteorder))
842 action)
844 (x-send-client-message frame
845 dnd-source
846 frame
847 "_MOTIF_DRAG_AND_DROP_MESSAGE"
849 reply)
850 (setq action
851 (when (and reply-action atom-name)
852 (let* ((value (x-get-selection-internal
853 (intern atom-name)
854 (intern (x-dnd-current-type window)))))
855 (when value
856 (condition-case info
857 (x-dnd-drop-data event frame window value
858 (x-dnd-current-type window))
859 (error
860 (message "Error: %s" info)
861 nil))))))
862 (x-get-selection-internal
863 (intern atom-name)
864 (if action 'XmTRANSFER_SUCCESS 'XmTRANSFER_FAILURE)
865 timestamp)
866 (x-dnd-forget-drop frame)))
868 (t (error "Unknown Motif DND message %s %s" message data)))))
874 (provide 'x-dnd)
876 ;;; arch-tag: b621fb7e-50da-4323-850b-5fc71ae64621
877 ;;; x-dnd.el ends here