Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

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

interface XDataTransferProviderAccess

Base Interface
com::sun::star::uno::XInterface

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


Known Services which Export this Interface

com::sun::star::awt::Toolkit describes a toolkit that creates windows on a screen.

Methods' Summary

getDragGestureRecognizer
getDragSource
getDropTarget
getClipboard

Methods' Details

getDragGestureRecognizer
 
com::sun::star::datatransfer::dnd::XDragGestureRecognizer
getDragGestureRecognizer(
[ in ] 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
 
com::sun::star::datatransfer::dnd::XDragSource
getDragSource(
[ in ] 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
 
com::sun::star::datatransfer::dnd::XDropTarget
getDropTarget(
[ in ] 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
 
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