]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/txtdrptg.tex
Introduced the ability to size a book control based on the currently selected page
[wxWidgets.git] / docs / latex / wx / txtdrptg.tex
index 18c4f5342124dc93f5ced94b869946a8b0c95300..58b3e6091ceb1698f0daf8d3b18e286cfd4c1604 100644 (file)
@@ -6,6 +6,10 @@ A predefined drop target for dealing with text data.
 
 \helpref{wxDropTarget}{wxdroptarget}
 
+\wxheading{Include files}
+
+<wx/dnd.h>
+
 \wxheading{See also}
 
 \helpref{Drag and drop overview}{wxdndoverview}, \helpref{wxDropSource}{wxdropsource}, 
@@ -19,20 +23,6 @@ A predefined drop target for dealing with text data.
 
 Constructor.
 
-\membersection{wxTextDropTarget::GetFormatCount}\label{wxtextdroptargetgetformatcount}
-
-\constfunc{virtual size\_t}{GetFormatCount}{\void}
-
-See \helpref{wxDropTarget::GetFormatCount}{wxdroptargetgetformatcount}. This function is implemented
-appropriately for text.
-
-\membersection{wxTextDropTarget::GetFormat}\label{wxtextdroptargetgetformat}
-
-\constfunc{virtual wxDataFormat}{GetFormat}{\param{size\_t }{n}}
-
-See \helpref{wxDropTarget::GetFormat}{wxdroptargetgetformat}. This function is implemented
-appropriately for text.
-
 \membersection{wxTextDropTarget::OnDrop}\label{wxtextdroptargetondrop}
 
 \func{virtual bool}{OnDrop}{\param{long }{x}, \param{long }{y}, \param{const void }{*data}, \param{size\_t }{size}}
@@ -42,7 +32,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.
 
@@ -52,8 +42,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.
+