]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/dir.tex
added wxLongLong::ToString()
[wxWidgets.git] / docs / latex / wx / dir.tex
index 4c06f3bce3ff735b633e1bb78f0e4d4d33e91b7b..6a3dbe6a83634b2d615299983427762c62235398 100644 (file)
@@ -126,7 +126,23 @@ empty) and flags, return TRUE on success.
 Continue enumerating files satisfying the criteria specified by the last call
 to \helpref{GetFirst}{wxdirgetfirst}.
 
-\membersection{wxDir::Traverse}{wxdirtraverse}
+\membersection{wxDir::HasFiles}\label{wxdirhasfiles}
+
+\func{bool}{HasFiles}{\param{const wxString& }{filespec = wxEmptyString}}
+
+Returns {\tt TRUE} if the directory contains any files matching the given 
+{\it filespec}. If {\it filespec} is empty, look for any files at all. In any
+case, even hidden files are taken into account.
+
+\membersection{wxDir::HasSubDirs}\label{wxdirhassubdirs}
+
+\func{bool}{HasSubDirs}{\param{const wxString& }{dirspec = wxEmptyString}}
+
+Returns {\tt TRUE} if the directory contains any subdirectories (if a non
+empty {\it filespec} is given, only check for directories matching it).
+The hidden subdirectories are taken into account as well.
+
+\membersection{wxDir::Traverse}\label{wxdirtraverse}
 
 \func{size\_t}{Traverse}{\param{wxDirTraverser& }{sink}, \param{const wxString& }{filespec = wxEmptyString}, \param{int }{flags = wxDIR\_DEFAULT}}
 
@@ -148,7 +164,7 @@ error.
 
 See also: \helpref{GetAllFiles}{wxdirgetallfiles}
 
-\membersection{wxDirTraverser::GetAllFiles}{wxdirtraversergetallfiles}
+\membersection{wxDir::GetAllFiles}\label{wxdirgetallfiles}
 
 \func{static size\_t}{GetAllFiles}{\param{const wxString& }{dirname}, \param{wxArrayString *}{files}, \param{const wxString& }{filespec = wxEmptyString}, \param{int }{flags = wxDIR\_DEFAULT}}
 
@@ -216,6 +232,7 @@ enum wxDirTraverseResult
     wxDIR_CONTINUE          // continue into this directory
 };
 \end{verbatim}
+}
 
 \wxheading{Include files}
 
@@ -223,7 +240,7 @@ enum wxDirTraverseResult
 
 \latexignore{\rtfignore{\wxheading{Members}}}
 
-\membersection{wxDirTraverser::OnFile}{wxdirtraverseronfile}
+\membersection{wxDirTraverser::OnFile}\label{wxdirtraverseronfile}
 
 \func{virtual wxDirTraverseResult}{OnFile}{\param{const wxString& }{filename}}
 
@@ -231,7 +248,7 @@ This function is called for each file. It may return {\tt wxDIR\_STOP} to abort
 traversing (for example, if the file being searched is found) or 
 {\tt wxDIR\_CONTINUE} to proceed.
 
-\membersection{wxDirTraverser::OnDir}{wxdirtraverserondir}
+\membersection{wxDirTraverser::OnDir}\label{wxdirtraverserondir}
 
 \func{virtual wxDirTraverseResult}{OnDir}{\param{const wxString& }{dirname}}