interface XDataTransferProviderAccess in module com::sun::star::awt::

(Global Index)

Syntax

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

Description

This interface extends the XToolkit interface with clipboard and drag-and-drop support.

Method Summary

getDragGestureRecognizer

getDragSource

getDropTarget

getClipboard

Known Services Which Export this Interface

com::sun::star::awt::Toolkit

Method Details



getDragGestureRecognizer

Syntax

com::sun::star::datatransfer::dnd::XDragGestureRecognizer getDragGestureRecognizer (
com::sun::star::awt::XWindow window );

Returns

the drag gesture recognizer of the specified window.

Parameter window

a window created by the same toolkit instance.

getDragSource

Syntax

com::sun::star::datatransfer::dnd::XDragSource getDragSource (
com::sun::star::awt::XWindow window );

Returns

the drag source of the specified window.

Parameter window

a window created by the same toolkit instance.

getDropTarget

Syntax

com::sun::star::datatransfer::dnd::XDropTarget getDropTarget (
com::sun::star::awt::XWindow window );

Returns

the drop target of the specified window.

Parameter window

a window created by the same toolkit instance.

getClipboard

Syntax

com::sun::star::datatransfer::clipboard::XClipboard getClipboard (
string clipboardName );

Returns

the specified clipboard (if available).

Parameter clipboardName

the name of the clipboard to return. If an empty string is passed in, the default clipboard is returned.
Top of Page