]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/droptrgt.tex
added vendor display name (for consistency with app display name &c) (patch 1831303)
[wxWidgets.git] / docs / latex / wx / droptrgt.tex
index eb9ca1eed657218f3b14b0031057fd358ba3c1f1..f9ab7fc6c497af90da3be455cf6f94f09b06d066 100644 (file)
@@ -22,6 +22,10 @@ None
 
 <wx/dnd.h>
 
+\wxheading{Library}
+
+\helpref{wxCore}{librarieslist}
+
 \wxheading{Types}
 
 \index{wxDragResult}wxDragResult is defined as follows:
@@ -32,7 +36,8 @@ enum wxDragResult
     wxDragError,    // error prevented the d&d operation from completing
     wxDragNone,     // drag target didn't accept the data
     wxDragCopy,     // the data was successfully copied
-    wxDragMove,     // the data was successfully moved
+    wxDragMove,     // the data was successfully moved (MSW only)
+    wxDragLink,     // operation is a drag-link
     wxDragCancel    // the operation was cancelled by user (not an error)
 };
 \end{verbatim}
@@ -70,7 +75,7 @@ calling its \helpref{wxDataObject::SetData}{wxdataobjectsetdata} method.
 
 \func{virtual wxDragResult}{OnData}{\param{wxCoord}{ x}, \param{wxCoord}{ y}, \param{wxDragResult}{ def}}
 
-Called after \helpref{OnDrop}{wxdroptargetondrop} returns TRUE. By default this
+Called after \helpref{OnDrop}{wxdroptargetondrop} returns true. By default this
 will usually \helpref{GetData}{wxdroptargetgetdata} and will return the suggested
 default value {\it def}.
 
@@ -78,7 +83,7 @@ default value {\it def}.
 
 \func{virtual bool}{OnDrop}{\param{wxCoord }{x}, \param{wxCoord }{y}}
 
-Called when the user drops a data object on the target. Return FALSE to veto the operation.
+Called when the user drops a data object on the target. Return false to veto the operation.
 
 \wxheading{Parameters}
 
@@ -88,7 +93,7 @@ Called when the user drops a data object on the target. Return FALSE to veto the
 
 \wxheading{Return value}
 
-Return TRUE to accept the data, FALSE to veto the operation.
+Return true to accept the data, false to veto the operation.
 
 \membersection{wxDropTarget::OnEnter}\label{wxdroptargetonenter}