1 ;;; x-dnd.el --- drag and drop support for X.
4 ;; Free Software Foundation, Inc.
6 ;; Author: Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
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)
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.
29 ;; This file provides the drop part only. Currently supported protocols
30 ;; are XDND, Motif and the old KDE 1.x protocol.
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
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'."
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,
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'
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."
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."
102 (defcustom x-dnd-open-file-other-window nil
103 "If non-nil, always use find-file-other-window to open dropped files."
107 ;; Internal variables
109 (defvar x-dnd-known-types
115 "text/plain;charset=UTF-8"
116 "text/plain;charset=utf-8"
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))))
196 (when buffer
(set-buffer buffer
))
197 (let* ((action-type (funcall x-dnd-test-function
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.
204 (x-dnd-save-state window
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.
239 (require 'browse-url
)
240 (let* ((uri (replace-regexp-in-string
243 (format "%c" (string-to-number (substring arg
1) 16)))
248 (dolist (bf x-dnd-protocol-alist
)
249 (when (string-match (car bf
) uri
)
250 (setq ret
(funcall (cdr bf
) uri action
))
253 (when (not (functionp browse-url-browser-function
))
255 (dolist (bf browse-url-browser-function
)
256 (when (string-match (car bf
) uri
)
258 (funcall (cdr bf
) uri action
)
262 (x-dnd-insert-text window action uri
)
263 (setq ret
'private
)))
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
))))
276 (downcase (if (string-match "^[^\\.]+" system-name
)
277 (match-string 0 system-name
)
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
)
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
))
313 (if x-dnd-open-file-other-window
314 (find-file-other-window f
)
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.
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
)))
378 (substitute-command-keys
379 "The dropped text can be accessed with \\[yank]")))
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
))
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
))))
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
))
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
))))
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
))
418 (found (when first-known-type
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
))))
428 (if (and (not found
) (cdr known-list
))
429 (x-dnd-choose-type types
(cdr known-list
))
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,
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
))))
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.
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."
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 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
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.
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."
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
)))
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
))
536 (frame-top (frame-parameter frame
'top
))
537 (frame-real-top (if (consp frame-top
) (car (cdr frame-top
))
540 (let ((edges (window-inside-pixel-edges w
)))
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)))
557 (if (> more-than-3
0)
558 (x-window-property "XdndTypeList"
559 frame
"AnyPropertyType"
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
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))
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))
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
600 (intern (x-dnd-current-type window
)))))
601 success action ret-action
)
603 (setq action
(if value
605 (x-dnd-drop-data event frame window value
606 (x-dnd-current-type window
))
608 (message "Error: %s" info
)
611 (setq success
(if action
1 0))
614 (or (car (rassoc action x-dnd-xdnd-to-action
))
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 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
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"
636 0 ; The Motif DND version.
637 5 ; We want drag dynamic.
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
)
644 (if (eq byteorder ?l
)
645 (+ (ash (aref data
(1+ offset
)) 8)
647 (+ (ash (aref data offset
) 8)
648 (aref data
(1+ offset
)))))
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)
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)))
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
)
681 (defvar x-dnd-motif-message-types
682 '((0 . XmTOP_LEVEL_ENTER
)
683 (1 . XmTOP_LEVEL_LEAVE
)
685 (3 . XmDROP_SITE_ENTER
)
686 (4 . XmDROP_SITE_LEAVE
)
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
696 (3 . link
) ; Both 3 and 4 has been seen as 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
)
718 (x-dnd-forget-drop frame
)
719 (when types
(x-dnd-save-state window nil nil
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
)
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
734 (x (x-dnd-motif-value-to-list
735 (x-dnd-get-motif-value data
8 2 source-byteorder
)
737 (y (x-dnd-motif-value-to-list
738 (x-dnd-get-motif-value data
10 2 source-byteorder
)
740 (dnd-source (aref state
6))
741 (first-move (not (aref state
3)))
742 (action-type (x-dnd-maybe-call-test-function
745 (reply-action (car (rassoc (car action-type
)
746 x-dnd-motif-to-action
)))
748 (x-dnd-motif-value-to-list
751 ?
\x30 ; 30: valid drop site
752 ?
\x700
) ; 700: can do copy, move or link
753 ?
\x30) ; 30: drop site, but noop.
757 (+ ?
\x80 ; 0x80 indicates a reply.
759 3 ; First time, reply is SITE_ENTER.
760 2)) ; Not first time, reply is DRAG_MOTION.
766 (x-send-client-message frame
769 "_MOTIF_DRAG_AND_DROP_MESSAGE"
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
)
778 (dnd-source (aref state
6))
779 (action-type (x-dnd-maybe-call-test-function
782 (reply-action (car (rassoc (car action-type
)
783 x-dnd-motif-to-action
)))
785 (x-dnd-motif-value-to-list
788 ?
\x30 ; 30: valid drop site
789 ?
\x700
) ; 700: can do copy, move or link
790 ?
\x30) ; 30: drop site, but noop
794 (+ ?
\x80 ; 0x80 indicates a reply.
795 8) ; 8 is OPERATION_CHANGED
799 (x-send-client-message frame
802 "_MOTIF_DRAG_AND_DROP_MESSAGE"
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
)
810 (y (x-dnd-motif-value-to-list
811 (x-dnd-get-motif-value data
10 2 source-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
821 (reply-action (car (rassoc (car action-type
)
822 x-dnd-motif-to-action
)))
824 (x-dnd-motif-value-to-list
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.
834 (+ ?
\x80 ; 0x80 indicates a reply.
840 (timestamp (x-dnd-get-motif-value
841 data
4 4 source-byteorder
))
844 (x-send-client-message frame
847 "_MOTIF_DRAG_AND_DROP_MESSAGE"
851 (when (and reply-action atom-name
)
852 (let* ((value (x-get-selection-internal
854 (intern (x-dnd-current-type window
)))))
857 (x-dnd-drop-data event frame window value
858 (x-dnd-current-type window
))
860 (message "Error: %s" info
)
862 (x-get-selection-internal
864 (if action
'XmTRANSFER_SUCCESS
'XmTRANSFER_FAILURE
)
866 (x-dnd-forget-drop frame
)))
868 (t (error "Unknown Motif DND message %s %s" message data
)))))
876 ;;; arch-tag: b621fb7e-50da-4323-850b-5fc71ae64621
877 ;;; x-dnd.el ends here