diff options
author | Po Lu <luangruo@yahoo.com> | 2022-06-23 13:38:30 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2022-06-23 13:58:38 +0800 |
commit | 0b4db66a9deae682dc7d444f4ab8d0e49f15c3b9 (patch) | |
tree | 6f08101c3b9697085153e3babe29dc379d031b9c /lisp/loadup.el | |
parent | 00034ad2e635adc93cd1d6dcb1b500c10d990c74 (diff) | |
download | emacs-0b4db66a9deae682dc7d444f4ab8d0e49f15c3b9.tar.gz emacs-0b4db66a9deae682dc7d444f4ab8d0e49f15c3b9.tar.bz2 emacs-0b4db66a9deae682dc7d444f4ab8d0e49f15c3b9.zip |
Allow dropping more data types on PGTK
* lisp/loadup.el (featurep): Load `pgtk-dnd'.
* lisp/pgtk-dnd.el: New file.
(pgtk-dnd-test-function, pgtk-dnd-types-alist)
(pgtk-dnd-known-types, pgtk-dnd-use-offix-drop)
(pgtk-dnd-current-state, pgtk-get-selection-internal)
(pgtk-register-dnd-targets, pgtk-dnd-empty-state)
(pgtk-dnd-init-frame, pgtk-dnd-get-state-cons-for-frame)
(pgtk-dnd-get-state-for-frame, pgtk-dnd-default-test-function)
(pgtk-dnd-current-type, pgtk-dnd-forget-drop)
(pgtk-dnd-maybe-call-test-function, pgtk-dnd-save-state)
(pgtk-dnd-handle-moz-url, pgtk-dnd-insert-utf8-text)
(pgtk-dnd-insert-utf16-text, pgtk-dnd-insert-ctext)
(pgtk-dnd-handle-uri-list, pgtk-dnd-handle-file-name)
(pgtk-dnd-choose-type, pgtk-dnd-drop-data)
(pgtk-dnd-handle-drag-n-drop-event, pgtk-update-drop-status)
(pgtk-drop-finish, pgtk-dnd-handle-gdk, pgtk-dnd): New variables
and functions and library.
* lisp/term/pgtk-win.el (special-event-map): Load
`drag-n-drop-event'.
(after-make-frame-functions): Register DND after make frame
functions.
* src/emacs.c (main): Stop calling empty init_pgtkterm function.
* src/pgtkselect.c (Fpgtk_register_dnd_targets, Fpgtk_drop_finish)
(Fpgtk_update_drop_status): New functions.
(syms_of_pgtkselect): Register new functions.
* src/pgtkterm.c (struct event_queue_t): Fix coding style of
definition.
(symbol_to_drag_action, drag_action_to_symbol)
(pgtk_update_drop_status, pgtk_finish_drop): New functions.
(drag_data_received): Delete function.
(pgtk_set_event_handler): Register for DND correctly.
(syms_of_pgtkterm): New defsyms for DND types.
(init_pgtkterm): Delete function.
* src/pgtkterm.h: Update prototypes, fix prototype coding style.
Diffstat (limited to 'lisp/loadup.el')
-rw-r--r-- | lisp/loadup.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el index aa15a3bbe8f..f076b8b2897 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -346,10 +346,8 @@ (load "term/ns-win")))) (if (featurep 'pgtk) (progn + (load "pgtk-dnd") (load "term/common-win") - ;; Don't load ucs-normalize.el unless uni-*.el files were - ;; already produced, because it needs uni-*.el files that might - ;; not be built early enough during bootstrap. (load "term/pgtk-win"))) (if (fboundp 'x-create-frame) ;; Do it after loading term/foo-win.el since the value of the |