]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/fildrptg.tex
Updated some scripts
[wxWidgets.git] / docs / latex / wx / fildrptg.tex
index 5e413f4f94e2dd54670f559438f7672fd036330e..b24dbd8adfd85cdad670d90fce1e497d92b6fa16 100644 (file)
@@ -1,11 +1,16 @@
 \section{\class{wxFileDropTarget}}\label{wxfiledroptarget}
 
- A drop target which accepts files (dragged from File Manager or Explorer).
+This is a \helpref{drop target}{wxdroptarget} which accepts files (dragged
+from File Manager or Explorer).
 
 \wxheading{Derived from}
 
 \helpref{wxDropTarget}{wxdroptarget}
 
+\wxheading{Include files}
+
+<wx/dnd.h>
+
 \wxheading{See also}
 
 \helpref{Drag and drop overview}{wxdndoverview}, \helpref{wxDropSource}{wxdropsource}, 
 
 Constructor.
 
-\membersection{wxFileDropTarget::GetFormatCount}\label{wxfiledroptargetgetformatcount}
-
-\func{virtual size\_t}{GetFormatCount}{\void}
-
-See \helpref{wxDropTarget::GetFormatCount}{wxdroptargetgetformatcount}. This function is implemented
-appropriately for files.
-
-\membersection{wxFileDropTarget::GetFormat}\label{wxfiledroptargetgetformat}
-
-\constfunc{virtual wxDataFormat}{GetFormat}{\param{size\_t }{n}}
-
-See \helpref{wxDropTarget::GetFormat}{wxdroptargetgetformat}. This function is implemented
-appropriately for files.
-
 \membersection{wxFileDropTarget::OnDrop}\label{wxfiledroptargetondrop}
 
 \func{virtual bool}{OnDrop}{\param{long }{x}, \param{long }{y}, \param{const void }{*data}, \param{size\_t }{size}}
@@ -42,7 +33,7 @@ appropriately for files, and calls \helpref{wxFileDropTarget::OnDropFiles}{wxfil
 
 \membersection{wxFileDropTarget::OnDropFiles}\label{wxfiledroptargetondropfiles}
 
-\func{virtual bool}{OnDropFiles}{\param{long }{x}, \param{long }{y}, \param{size\_t }{nFiles}, \param{const char * const}{files[]}}
+\func{virtual bool}{OnDropFiles}{\param{wxCoord }{x}, \param{wxCoord }{y}, \param{const wxArrayString\& }{filenames}}
 
 Override this function to receive dropped files.
 
@@ -52,11 +43,13 @@ Override this function to receive dropped files.
 
 \docparam{y}{The y coordinate of the mouse.}
 
-\docparam{nFiles}{The number of files being dropped.}
-
-\docparam{files}{An array of filenames.}
+\docparam{filenames}{An array of filenames.}
 
 \wxheading{Return value}
 
 Return TRUE to accept the data, FALSE to veto the operation.
 
+% VZ: this clarification is probably not needed any longer?
+%\perlnote{In wxPerl there is just an array reference in place of {\tt nFiles} 
+%and {\tt files}.}
+