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

interface XDataTransferProviderAccess
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XDataTransferProviderAccess
Description
This interface extends the XToolkit interface with clipboard and drag-and-drop support.

Methods' Summary
getDragGestureRecognizer
getDragSource
getDropTarget
getClipboard
Methods' Details
getDragGestureRecognizer
::com::sun::star::datatransfer::dnd::XDragGestureRecognizer
getDragGestureRecognizer(
 
[in] XWindow
 
window );

Returns
the drag gesture recognizer of the specified window.
Parameter window
a window created by the same toolkit instance.
getDragSource
::com::sun::star::datatransfer::dnd::XDragSource
getDragSource(
 
[in] XWindow
 
window );

Returns
the drag source of the specified window.
Parameter window
a window created by the same toolkit instance.
getDropTarget
::com::sun::star::datatransfer::dnd::XDropTarget
getDropTarget(
 
[in] XWindow
 
window );

Returns
the drop target of the specified window.
Parameter window
a window created by the same toolkit instance.
getClipboard
::com::sun::star::datatransfer::clipboard::XClipboard
getClipboard(
 
[in] 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