]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/txtdrptg.tex
Added EVT_MOVE_START, EVT_MOVE_END (wxMSW only for now)
[wxWidgets.git] / docs / latex / wx / txtdrptg.tex
index 14157895fbe7dfe33e8e7ea087a0c86a69e0d539..7039b5808ab706a9930a25336ec8348b2209c6c8 100644 (file)
@@ -10,6 +10,10 @@ A predefined drop target for dealing with text data.
 
 <wx/dnd.h>
 
+\wxheading{Library}
+
+\helpref{wxCore}{librarieslist}
+
 \wxheading{See also}
 
 \helpref{Drag and drop overview}{wxdndoverview}, \helpref{wxDropSource}{wxdropsource}, 
@@ -32,7 +36,7 @@ appropriately for text, and calls \helpref{wxTextDropTarget::OnDropText}{wxtextd
 
 \membersection{wxTextDropTarget::OnDropText}\label{wxtextdroptargetondroptext}
 
-\func{virtual bool}{OnDropText}{\param{long }{x}, \param{long }{y}, \param{const char }{*data}}
+\func{virtual bool}{OnDropText}{\param{wxCoord }{x}, \param{wxCoord }{y}, \param{const wxString\&}{ data}}
 
 Override this function to receive dropped text.
 
@@ -42,9 +46,9 @@ Override this function to receive dropped text.
 
 \docparam{y}{The y coordinate of the mouse.}
 
-\docparam{data}{The data being dropped: a NULL-terminated string.}
+\docparam{data}{The data being dropped: a wxString.}
 
 \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.