summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/datatransfer
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/datatransfer')
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboard.idl2
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboardListener.idl2
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboardNotifier.idl4
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboardOwner.idl2
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XAutoscroll.idl2
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDragGestureListener.idl2
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDragGestureRecognizer.idl4
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDragSource.idl2
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDragSourceContext.idl6
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDragSourceListener.idl10
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDropTarget.idl6
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDropTargetDragContext.idl4
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDropTargetDropContext.idl6
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDropTargetListener.idl10
14 files changed, 31 insertions, 31 deletions
diff --git a/offapi/com/sun/star/datatransfer/clipboard/XClipboard.idl b/offapi/com/sun/star/datatransfer/clipboard/XClipboard.idl
index ea901ee9102d..a3236f717aaf 100644
--- a/offapi/com/sun/star/datatransfer/clipboard/XClipboard.idl
+++ b/offapi/com/sun/star/datatransfer/clipboard/XClipboard.idl
@@ -63,7 +63,7 @@ published interface XClipboard: com::sun::star::uno::XInterface
@see com::sun::star::datatransfer::XTransferable
@see com::sun::star::datatransfer::clipboard::XClipboardOwner
*/
- [oneway] void setContents( [in] com::sun::star::datatransfer::XTransferable xTrans, [in] XClipboardOwner xClipboardOwner );
+ void setContents( [in] com::sun::star::datatransfer::XTransferable xTrans, [in] XClipboardOwner xClipboardOwner );
/** To get the name of the clipboard instance.
diff --git a/offapi/com/sun/star/datatransfer/clipboard/XClipboardListener.idl b/offapi/com/sun/star/datatransfer/clipboard/XClipboardListener.idl
index 28cb5172839d..2977b6778c43 100644
--- a/offapi/com/sun/star/datatransfer/clipboard/XClipboardListener.idl
+++ b/offapi/com/sun/star/datatransfer/clipboard/XClipboardListener.idl
@@ -39,7 +39,7 @@ published interface XClipboardListener: com::sun::star::lang::XEventListener
@see com::sun::star::datatransfer::clipboard::ClipboardEvent
*/
- [oneway] void changedContents( [in] ClipboardEvent event );
+ void changedContents( [in] ClipboardEvent event );
};
diff --git a/offapi/com/sun/star/datatransfer/clipboard/XClipboardNotifier.idl b/offapi/com/sun/star/datatransfer/clipboard/XClipboardNotifier.idl
index 8d793b7149f5..f12ac9a618c7 100644
--- a/offapi/com/sun/star/datatransfer/clipboard/XClipboardNotifier.idl
+++ b/offapi/com/sun/star/datatransfer/clipboard/XClipboardNotifier.idl
@@ -39,14 +39,14 @@ published interface XClipboardNotifier: com::sun::star::uno::XInterface
@param listener
The object receiving the notifications.
*/
- [oneway] void addClipboardListener( [in] XClipboardListener listener );
+ void addClipboardListener( [in] XClipboardListener listener );
/** Removes listener from notification list.
@param listener
The object to remove from notification list.
*/
- [oneway] void removeClipboardListener( [in] XClipboardListener listener );
+ void removeClipboardListener( [in] XClipboardListener listener );
};
diff --git a/offapi/com/sun/star/datatransfer/clipboard/XClipboardOwner.idl b/offapi/com/sun/star/datatransfer/clipboard/XClipboardOwner.idl
index 1a03bfe6e381..9ece43c824b7 100644
--- a/offapi/com/sun/star/datatransfer/clipboard/XClipboardOwner.idl
+++ b/offapi/com/sun/star/datatransfer/clipboard/XClipboardOwner.idl
@@ -47,7 +47,7 @@ published interface XClipboardOwner: com::sun::star::uno::XInterface
@see com::sun::star::datatransfer::clipboard::XClipboard
@see com::sun::star::datatransfer::XTransferable
*/
- [oneway] void lostOwnership( [in] XClipboard xClipboard, [in] com::sun::star::datatransfer::XTransferable xTrans );
+ void lostOwnership( [in] XClipboard xClipboard, [in] com::sun::star::datatransfer::XTransferable xTrans );
};
diff --git a/offapi/com/sun/star/datatransfer/dnd/XAutoscroll.idl b/offapi/com/sun/star/datatransfer/dnd/XAutoscroll.idl
index 1533f69086d7..22f57420b1ae 100644
--- a/offapi/com/sun/star/datatransfer/dnd/XAutoscroll.idl
+++ b/offapi/com/sun/star/datatransfer/dnd/XAutoscroll.idl
@@ -57,7 +57,7 @@ published interface XAutoscroll: com::sun::star::uno::XInterface
Y location of the cursor in pixel.
*/
- [oneway] void autoscroll( [in] long cursorLocationX, [in] long cursorLocationY );
+ void autoscroll( [in] long cursorLocationX, [in] long cursorLocationY );
/** Returns the regions describing the autoscrolling region.
diff --git a/offapi/com/sun/star/datatransfer/dnd/XDragGestureListener.idl b/offapi/com/sun/star/datatransfer/dnd/XDragGestureListener.idl
index 4a2997ef5610..a1bd9e53581c 100644
--- a/offapi/com/sun/star/datatransfer/dnd/XDragGestureListener.idl
+++ b/offapi/com/sun/star/datatransfer/dnd/XDragGestureListener.idl
@@ -44,7 +44,7 @@ published interface XDragGestureListener: com::sun::star::lang::XEventListener
The DragGestureEvent describing the gesture that has just occurred.
*/
- [oneway] void dragGestureRecognized( [in] DragGestureEvent dge );
+ void dragGestureRecognized( [in] DragGestureEvent dge );
};
diff --git a/offapi/com/sun/star/datatransfer/dnd/XDragGestureRecognizer.idl b/offapi/com/sun/star/datatransfer/dnd/XDragGestureRecognizer.idl
index 582db492c7da..9e7560d7542f 100644
--- a/offapi/com/sun/star/datatransfer/dnd/XDragGestureRecognizer.idl
+++ b/offapi/com/sun/star/datatransfer/dnd/XDragGestureRecognizer.idl
@@ -45,7 +45,7 @@ published interface XDragGestureRecognizer: com::sun::star::uno::XInterface
<type>XDragGestureRecognizer</type>.
*/
- [oneway] void addDragGestureListener( [in] XDragGestureListener dgl );
+ void addDragGestureListener( [in] XDragGestureListener dgl );
/** Unregisters the specified <type>XDragGestureListener</type>.
@@ -54,7 +54,7 @@ published interface XDragGestureRecognizer: com::sun::star::uno::XInterface
<type>XDragGestureRecognizer</type>.
*/
- [oneway] void removeDragGestureListener( [in] XDragGestureListener dgl );
+ void removeDragGestureListener( [in] XDragGestureListener dgl );
/** Reset the recognizer. If it is currently recognizing a gesture, ignore it.
*/
diff --git a/offapi/com/sun/star/datatransfer/dnd/XDragSource.idl b/offapi/com/sun/star/datatransfer/dnd/XDragSource.idl
index 9e4903bc0081..84534b6ca845 100644
--- a/offapi/com/sun/star/datatransfer/dnd/XDragSource.idl
+++ b/offapi/com/sun/star/datatransfer/dnd/XDragSource.idl
@@ -99,7 +99,7 @@ published interface XDragSource: com::sun::star::uno::XInterface
@see com::sun::star::datatransfer::XTransferable
*/
- [oneway] void startDrag(
+ void startDrag(
[in] DragGestureEvent trigger,
[in] byte sourceActions,
[in] long cursor,
diff --git a/offapi/com/sun/star/datatransfer/dnd/XDragSourceContext.idl b/offapi/com/sun/star/datatransfer/dnd/XDragSourceContext.idl
index 5e21a7260129..0c55f8cde902 100644
--- a/offapi/com/sun/star/datatransfer/dnd/XDragSourceContext.idl
+++ b/offapi/com/sun/star/datatransfer/dnd/XDragSourceContext.idl
@@ -63,7 +63,7 @@ published interface XDragSourceContext: com::sun::star::uno::XInterface
The identifier the drag source returned when registering the cursor.
*/
- [oneway] void setCursor( [in] long cursorId );
+ void setCursor( [in] long cursorId );
/** This method sets the current drag image.
@@ -72,7 +72,7 @@ published interface XDragSourceContext: com::sun::star::uno::XInterface
Invalid identifier will be ignored.
*/
- [oneway] void setImage( [in] long imageId );
+ void setImage( [in] long imageId );
/** This method notifies the context that the
<type scope="com::sun::star::datatransfer">DataFlavor</type> types
@@ -81,7 +81,7 @@ published interface XDragSourceContext: com::sun::star::uno::XInterface
@see com::sun::star::datatransfer::XTransferable
*/
- [oneway] void transferablesFlavorsChanged();
+ void transferablesFlavorsChanged();
};
diff --git a/offapi/com/sun/star/datatransfer/dnd/XDragSourceListener.idl b/offapi/com/sun/star/datatransfer/dnd/XDragSourceListener.idl
index 23ac4cb4856b..e60c19ec0ac4 100644
--- a/offapi/com/sun/star/datatransfer/dnd/XDragSourceListener.idl
+++ b/offapi/com/sun/star/datatransfer/dnd/XDragSourceListener.idl
@@ -43,7 +43,7 @@ published interface XDragSourceListener: com::sun::star::lang::XEventListener
The <type>DragSourceDropEvent</type>
*/
- [oneway] void dragDropEnd( [in] DragSourceDropEvent dsde );
+ void dragDropEnd( [in] DragSourceDropEvent dsde );
/** Called as the hotspot enters a platform dependent drop site.
@@ -54,7 +54,7 @@ published interface XDragSourceListener: com::sun::star::lang::XEventListener
The <type>DragSourceDragEvent</type>.
*/
- [oneway] void dragEnter( [in] DragSourceDragEvent dsde );
+ void dragEnter( [in] DragSourceDragEvent dsde );
/** Called as the hotspot exits a platform dependent drop site.
@@ -65,7 +65,7 @@ published interface XDragSourceListener: com::sun::star::lang::XEventListener
The <type>DragSourceEvent</type>.
*/
- [oneway] void dragExit( [in] DragSourceEvent dse );
+ void dragExit( [in] DragSourceEvent dse );
/** Called as the hotspot moves over a platform dependent drop site.
@@ -73,7 +73,7 @@ published interface XDragSourceListener: com::sun::star::lang::XEventListener
The <type>DragSourceEvent</type>
*/
- [oneway] void dragOver( [in] DragSourceDragEvent dsde );
+ void dragOver( [in] DragSourceDragEvent dsde );
/** Called when the user has modified the drop gesture.
@@ -81,7 +81,7 @@ published interface XDragSourceListener: com::sun::star::lang::XEventListener
The <type>DragSourceEvent</type>.
*/
- [oneway] void dropActionChanged( [in] DragSourceDragEvent dsde );
+ void dropActionChanged( [in] DragSourceDragEvent dsde );
};
diff --git a/offapi/com/sun/star/datatransfer/dnd/XDropTarget.idl b/offapi/com/sun/star/datatransfer/dnd/XDropTarget.idl
index 8cbb8742be47..4d0fad33cd66 100644
--- a/offapi/com/sun/star/datatransfer/dnd/XDropTarget.idl
+++ b/offapi/com/sun/star/datatransfer/dnd/XDropTarget.idl
@@ -48,7 +48,7 @@ published interface XDropTarget: com::sun::star::uno::XInterface
The listener to add to the notification list.
*/
- [oneway] void addDropTargetListener( [in] XDropTargetListener dtl );
+ void addDropTargetListener( [in] XDropTargetListener dtl );
/** Remove a drop target listener.
@@ -56,7 +56,7 @@ published interface XDropTarget: com::sun::star::uno::XInterface
The listener to remove from notification list.
*/
- [oneway] void removeDropTargetListener( [in] XDropTargetListener dtl );
+ void removeDropTargetListener( [in] XDropTargetListener dtl );
/** Indicates either a drop target object is active or not.
@@ -99,7 +99,7 @@ published interface XDropTarget: com::sun::star::uno::XInterface
@see com::sun::star::datatransfer::dnd::DNDConstants
*/
- [oneway] void setDefaultActions( [in] byte actions );
+ void setDefaultActions( [in] byte actions );
};
diff --git a/offapi/com/sun/star/datatransfer/dnd/XDropTargetDragContext.idl b/offapi/com/sun/star/datatransfer/dnd/XDropTargetDragContext.idl
index baac017fb68b..06f0204ace5a 100644
--- a/offapi/com/sun/star/datatransfer/dnd/XDropTargetDragContext.idl
+++ b/offapi/com/sun/star/datatransfer/dnd/XDropTargetDragContext.idl
@@ -57,14 +57,14 @@ published interface XDropTargetDragContext: com::sun::star::uno::XInterface
@see DropTargetDragEvent
*/
- [oneway] void acceptDrag( [in] byte dragOperation );
+ void acceptDrag( [in] byte dragOperation );
/** Reject the drag as a result of examining the available
<type scope="com::sun::star::datatransfer">DataFlavor</type> types
received in the <member scope="com::sun::star::datatransfer::dnd">XDropTargetListener::dragEnter()</member> method.
*/
- [oneway] void rejectDrag();
+ void rejectDrag();
};
diff --git a/offapi/com/sun/star/datatransfer/dnd/XDropTargetDropContext.idl b/offapi/com/sun/star/datatransfer/dnd/XDropTargetDropContext.idl
index a940999e4678..5d958ff6f8ed 100644
--- a/offapi/com/sun/star/datatransfer/dnd/XDropTargetDropContext.idl
+++ b/offapi/com/sun/star/datatransfer/dnd/XDropTargetDropContext.idl
@@ -52,14 +52,14 @@ published interface XDropTargetDropContext : com::sun::star::uno::XInterface
@see DropTargetDragEvent
*/
- [oneway] void acceptDrop( [in] byte dragOperation );
+ void acceptDrop( [in] byte dragOperation );
/** Reject the drop as a result of examining the available
<type scope="com::sun::star::datatransfer">DataFlavor</type> types
received in the <member>XDropTargetListener::dragEnter()</member> method.
*/
- [oneway] void rejectDrop();
+ void rejectDrop();
/** Signals that the drop is completed and if it was successful or not.
@@ -68,7 +68,7 @@ published interface XDropTargetDropContext : com::sun::star::uno::XInterface
<p>A value of <FALSE/> means the drop completed unsuccessfully.</p>
*/
- [oneway] void dropComplete( [in] boolean success );
+ void dropComplete( [in] boolean success );
};
diff --git a/offapi/com/sun/star/datatransfer/dnd/XDropTargetListener.idl b/offapi/com/sun/star/datatransfer/dnd/XDropTargetListener.idl
index 2771597e0976..bd9dba037001 100644
--- a/offapi/com/sun/star/datatransfer/dnd/XDropTargetListener.idl
+++ b/offapi/com/sun/star/datatransfer/dnd/XDropTargetListener.idl
@@ -39,7 +39,7 @@ published interface XDropTargetListener: com::sun::star::lang::XEventListener
{
/** The drag operation has terminated with a drop on this drop target.
- <p><strong>NOTE:</strong> This method should not be oneway. The implementation
+ <p><strong>NOTE:</strong> The implementation
has to wait until the method <method>XDropTargetDropContext::dropComplete</method>
is called before releasing the data for the drop operation. This
should occur before returning from drop in a normal flow of operation.
@@ -59,7 +59,7 @@ published interface XDropTargetListener: com::sun::star::lang::XEventListener
The <type>DropTargetDragEvent</type>.
*/
- [oneway] void dragEnter( [in] DropTargetDragEnterEvent dtdee );
+ void dragEnter( [in] DropTargetDragEnterEvent dtdee );
/** The drag operation has departed the drop target without dropping.
@@ -67,7 +67,7 @@ published interface XDropTargetListener: com::sun::star::lang::XEventListener
The <type>DropTargetEvent</type>.
*/
- [oneway] void dragExit( [in] DropTargetEvent dte );
+ void dragExit( [in] DropTargetEvent dte );
/** Called when a drag operation is ongoing on the drop target.
@@ -75,7 +75,7 @@ published interface XDropTargetListener: com::sun::star::lang::XEventListener
The <type>DropTargetEvent</type>.
*/
- [oneway] void dragOver( [in] DropTargetDragEvent dtde );
+ void dragOver( [in] DropTargetDragEvent dtde );
/** Called when the user has modified the drop gesture.
@@ -83,7 +83,7 @@ published interface XDropTargetListener: com::sun::star::lang::XEventListener
The <type>DropTargetEvent</type>.
*/
- [oneway] void dropActionChanged( [in] DropTargetDragEvent dtde );
+ void dropActionChanged( [in] DropTargetDragEvent dtde );
};