X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9508a23a1ba41b9ff7928982dd48d53d21b12c4e..f2b6dd8c508ddc1ebfee5b7d6e68a44b4e05a50f:/interface/wx/filefn.h diff --git a/interface/wx/filefn.h b/interface/wx/filefn.h index 9659221bdb..f2c9551b4f 100644 --- a/interface/wx/filefn.h +++ b/interface/wx/filefn.h @@ -3,7 +3,7 @@ // Purpose: interface of wxPathList and file functions // Author: wxWidgets team // RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @@ -24,6 +24,9 @@ class wxPathList : public wxArrayString { public: + /** + Standard constructor. + */ wxPathList(); /** @@ -245,9 +248,10 @@ time_t wxFileModificationTime(const wxString& filename); /** Renames @a file1 to @e file2, returning @true if successful. - If @a overwrite parameter is @true (default), the destination file is - overwritten if it exists, but if @a overwrite is @false, the functions - fails in this case. + If @a file2 is a directory, @a file1 is moved into it (@a overwrite is + ignored in this case). Otherwise, if @a file2 is an existing file, it is + overwritten if @a overwrite is @true (default) and the function fails if @a + overwrite is @false. @header{wx/filefn.h} */ @@ -475,9 +479,25 @@ wxString wxFindNextFile(); */ wxString wxFindFirstFile(const wxString& spec, int flags = 0); +/** + Parameter indicating how file offset should be interpreted. + + This is used by wxFFile::Seek() and wxFile::Seek(). + + @header{wx/filefn.h} +*/ +enum wxSeekMode +{ + wxFromStart, ///< Seek from the file beginning. + wxFromCurrent, ///< Seek from the current position. + wxFromEnd ///< Seek from end of the file. +}; + /** File kind enumerations returned from wxGetFileKind(). + Also used by wxFFile::GetKind() and wxFile::GetKind(). + @header{wx/filefn.h} */ enum wxFileKind