view tests/Dnd/dragtest.el @ 185:3d6bfa290dbd r20-3b19

Import from CVS: tag r20-3b19
author cvs
date Mon, 13 Aug 2007 09:55:28 +0200
parents e121b013d1f0
children acd284d43ca1
line wrap: on
line source

;; a simple test of the drag functions
;;
;; still to do: drag only after about 10 pix of movement

(defun text-drag (event)
  (interactive "@e")
  (offix-start-drag event "That's a test"))

(defun file-drag (event)
  (interactive "@e")
  (offix-start-drag event "/tmp/printcap" 2))

(defun url-drag (event)
  (interactive "@e")
  (offix-start-drag event "http://www.xemacs.org/" 8))

(define-key global-map [button1] 'text-drag)
(define-key global-map [button2] 'file-drag)
(define-key global-map [button3] 'url-drag)