Document XDS stuff
* doc/emacs/frames.texi (Drag and Drop): * doc/lispref/frames.texi (Drag and Drop): Add documentation about XDS features. * etc/NEWS: Tag entry.
This commit is contained in:
parent
45ba6a3104
commit
12e5171882
3 changed files with 22 additions and 0 deletions
|
@ -1249,6 +1249,13 @@ To drag text from Emacs to other programs, set the option
|
|||
@code{mouse-drag-and-drop-region-cross-program} to a non-@code{nil}
|
||||
value.
|
||||
|
||||
On the X window system, some programs can drop files on Emacs,
|
||||
expecting Emacs to save them. Normally, Emacs will prompt for a file
|
||||
name under which the file will be saved, and then open the file, but
|
||||
that behavior can be changed by changing the variable
|
||||
@code{x-dnd-direct-save-function}. @xref{Drag and Drop,,, elisp, The
|
||||
Emacs Lisp Reference Manual}.
|
||||
|
||||
@node Menu Bars
|
||||
@section Menu Bars
|
||||
@cindex menu bar mode
|
||||
|
|
|
@ -4090,6 +4090,20 @@ They can either be the same data types that are typically accepted by
|
|||
specific drag-n-drop protocol being used. Plain text may be
|
||||
@code{"STRING"} or @code{"text/plain"}, for example.
|
||||
|
||||
@vindex x-dnd-direct-save-function
|
||||
However, @code{x-dnd-types-alist} does not handle a special kind of
|
||||
drop sent by a program which wants Emacs to save a file in a location
|
||||
Emacs must determine by itself. These drops are handled via the
|
||||
variable @code{x-dnd-direct-save-function}, which should be a function
|
||||
that accepts two arguments. If the first argument is non-@code{nil},
|
||||
then the second argument is a string describing the name (with no
|
||||
leading directory) that the other program recommends the file be saved
|
||||
under, and the function should return the complete file name under
|
||||
which it will be saved. Otherwise, the file has already been saved,
|
||||
and the second argument is the complete name of the file. The
|
||||
function should then perform whatever action is appropriate (i.e.,
|
||||
open the file or refresh the directory listing.)
|
||||
|
||||
@cindex initiating drag-and-drop
|
||||
On capable window systems, Emacs also supports dragging contents
|
||||
from its frames to windows of other applications.
|
||||
|
|
1
etc/NEWS
1
etc/NEWS
|
@ -423,6 +423,7 @@ This inhibits putting empty strings onto the kill ring.
|
|||
These options allow adjusting point and scrolling a window when
|
||||
dragging items from another program.
|
||||
|
||||
+++
|
||||
** The X Direct Save (XDS) protocol is now supported.
|
||||
This means dropping an image or file link from programs such as
|
||||
Firefox will no longer create a temporary file in a random directory,
|
||||
|
|
Loading…
Add table
Reference in a new issue