summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorarellano <arellano@openoffice.org>2001-07-27 17:13:34 +0000
committerarellano <arellano@openoffice.org>2001-07-27 17:13:34 +0000
commitd054809970b773496934016b7a7c62dd49c1f585 (patch)
tree8d80ffb86bf34342604d1db026a80742b46e72c8 /offapi
parenta10886aa241080794c3b88f5e91c635bc201af8e (diff)
Comments added for developer, punctuation
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDragSource.idl34
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDropTargetDropContext.idl15
2 files changed, 31 insertions, 18 deletions
diff --git a/offapi/com/sun/star/datatransfer/dnd/XDragSource.idl b/offapi/com/sun/star/datatransfer/dnd/XDragSource.idl
index a9d25e79cf61..66662f994466 100644
--- a/offapi/com/sun/star/datatransfer/dnd/XDragSource.idl
+++ b/offapi/com/sun/star/datatransfer/dnd/XDragSource.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XDragSource.idl,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: jsc $ $Date: 2001-03-16 16:41:19 $
+ * last change: $Author: arellano $ $Date: 2001-07-27 18:13:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -90,26 +90,32 @@ interface XDragSourceListener;
when imlpementing <type>XDragGestureListener</type>.
<p>Different to Java, the association between view and interface is fixed
- and can not be changed. Otherwise the awt messaging would have to be
+ and can not be changed. Otherwise, the awt messaging would have to be
implemented for any window supporting Drag and Drop operations, what would
be a real performance issue.</p>
+
+ <!-- Editor: Do you mean Java does it differently? -->
+
+ <!-- Editor: Can the last phrase read: which would be a performance issue. -->
*/
interface XDragSource: com::sun::star::uno::XInterface
{
//-------------------------------------------------------------------------
- /** @returns a boolean indicating whether or not drag Image support is
+ /** @returns
+ a boolean indicating whether or not drag Image support is
available on the underlying platform.
*/
boolean isDragImageSupported();
//-------------------------------------------------------------------------
- /** @returns the default drag cursor for the specified drag action.
+ /** @returns
+ the default drag cursor for the specified drag action.
@param dragAction
- a drag action
+ a drag action.
*/
long getDefaultCursor( [in] byte dragAction )
@@ -119,27 +125,29 @@ interface XDragSource: com::sun::star::uno::XInterface
/** starts the drag operation.
<p>Note: this call does <em>not</em> block until the drag and drop
- operation ends. if the Drag and Drop system is unable to initiate
+ operation ends. If the Drag and Drop system is unable to initiate
a drag operation or if the user attempts to start a drag while an
- existing drag operation is still executing the action fails immediately
- indicated by calling endDragDrop on the listener parameter with
+ existing drag operation is still executing, the action fails immediately.
+ This is indicated by calling endDragDrop on the listener parameter with
a DragSourceDragEvent showing failure.
</p>
+ <!-- Editor: Is "block" the right word in the previous paragraph? -->
+
@param trigger
the <type>DragGestureEvent</type> that initiated the drag.
@param sourceActions
- the action(s) supported for this transferable.
+ the action or actions supported for this transferable.
@param cursor
- the initial drag cursor id or 0 for defaults
+ the initial drag cursor id or 0 for defaults.
@param image
- the initial drag image id or 0 for defaults
+ the initial drag image id or 0 for defaults.
@param trans
- the transferable object dragged
+ the transferable object dragged.
@param listener
the <type>XDragSourceListener</type>.
diff --git a/offapi/com/sun/star/datatransfer/dnd/XDropTargetDropContext.idl b/offapi/com/sun/star/datatransfer/dnd/XDropTargetDropContext.idl
index 326158d8240d..35f7acf50bdf 100644
--- a/offapi/com/sun/star/datatransfer/dnd/XDropTargetDropContext.idl
+++ b/offapi/com/sun/star/datatransfer/dnd/XDropTargetDropContext.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XDropTargetDropContext.idl,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: jsc $ $Date: 2001-03-16 16:41:19 $
+ * last change: $Author: arellano $ $Date: 2001-07-27 18:11:14 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -81,10 +81,11 @@ module com { module sun { module star { module datatransfer { module dnd {
with a Drag and Drop operation moves with the visible geometry of a
window associated with a DropTarget. </p>
+ <!-- Editor: Should the word be "within" instead of "with"? -->
+
<p>The DropTargetContext provides the mechanism for a potential receiver
- of a drop operation to both provide the end user with the appropriate drag
- under feedback, but also to effect the subsequent data transfer if
- appropriate. </p>
+ of a drop operation to provide the end user with the appropriate drag
+ under feedback and to effect the subsequent data transfer, if appropriate. </p>
*/
@@ -112,6 +113,8 @@ interface XDropTargetDropContext : com::sun::star::uno::XInterface
<p>Reject the drop as a result of examining either or the available
<type scope="com::sun::star::datatransfer">DataFlavor</type> types
received in the <member>XDropTargetListener::dragEnter</member>.
+
+ <!-- Editor: "either" and "or" should have some text between them -->
*/
[oneway] void rejectDrop();
@@ -121,6 +124,8 @@ interface XDropTargetDropContext : com::sun::star::uno::XInterface
@param success
<TRUE/> if drop completed successful, <FALSE/> otherwise.
+
+ <!-- Editor: Should this be @return ? -->
*/
[oneway] void dropComplete( [in] boolean success );