X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/43c48e1e53d74cef62d15f08f015d9efeb45a0c1..92c0fc34c104c8d7c12d6a3b78ea232690fc23f4:/interface/wx/ffile.h diff --git a/interface/wx/ffile.h b/interface/wx/ffile.h index 33de5504c4..ada146d343 100644 --- a/interface/wx/ffile.h +++ b/interface/wx/ffile.h @@ -2,36 +2,10 @@ // Name: ffile.h // Purpose: interface of wxFFile // Author: wxWidgets team -// RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - -/** - Values used for both wxFile and wxFFile. - - @todo make the value names uppercase -*/ -enum wxSeekMode -{ - wxFromStart, - wxFromCurrent, - wxFromEnd -}; - -/** - See wxFFile::GetKind(). -*/ -enum wxFileKind -{ - wxFILE_KIND_UNKNOWN, - wxFILE_KIND_DISK, /**< A file supporting seeking to arbitrary offsets. */ - wxFILE_KIND_TERMINAL, /**< A terminal. */ - wxFILE_KIND_PIPE /**< A pipe. */ -}; - - /** @class wxFFile @@ -102,11 +76,14 @@ public: closing the file if this descriptor is opened. IsOpened() will return @false after call to Detach(). + + @return The FILE pointer (this is new since wxWidgets 3.0.0, in the + previous versions this method didn't return anything). */ - void Detach(); + FILE* Detach(); /** - Returns @true if the an attempt has been made to read @e past + Returns @true if an attempt has been made to read @e past the end of the file. Note that the behaviour of the file descriptor based class wxFile is different as @@ -146,6 +123,15 @@ public: */ wxFileKind GetKind() const; + /** + Returns the file name. + + This is the name that was specified when the object was constructed or + to the last call to Open(). Notice that it may be empty if Attach() was + called without specifying the name. + */ + const wxString& GetName() const; + /** Returns @true if the file is opened.