interface XDragGestureRecognizer in module com::sun::star::datatransfer::dnd::

(Global Index)

Syntax

interface XDragGestureRecognizer : com::sun::star::uno::XInterface ;

Description

This interface is implemented by a view or window that supports drag operations.

Different to Java, the association between view and interface is fixed and cannot be changed. Otherwise, the AWT messaging would have to be implemented for any window supporting Drag and Drop operations, which would be a performance issue.

Method Summary

addDragGestureListener Registers a new XDragGestureListener .

removeDragGestureListener Unregisters the specified XDragGestureListener .

resetRecognizer Reset the recognizer. If it is currently recognizing a gesture, ignore it.

Method Details



addDragGestureListener

Syntax

oneway void addDragGestureListener (
com::sun::star::datatransfer::dnd::XDragGestureListener dgl );

Description

Registers a new XDragGestureListener .

Parameter dgl

The XDragGestureListener to register with this XDragGestureRecognizer .

removeDragGestureListener

Syntax

oneway void removeDragGestureListener (
com::sun::star::datatransfer::dnd::XDragGestureListener dgl );

Description

Unregisters the specified XDragGestureListener .

Parameter dgl

The XDragGestureListener to register with this XDragGestureRecognizer .

resetRecognizer

Syntax

void resetRecognizer ();

Description

Reset the recognizer. If it is currently recognizing a gesture, ignore it.

Top of Page