X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2d67974d248156678a45aded725f5b92c69f502a..0bb0e26c0c82778a50e901acbc5e00f739435eef:/include/wx/stream.h diff --git a/include/wx/stream.h b/include/wx/stream.h index 41d8b5372f..0a6f16e545 100644 --- a/include/wx/stream.h +++ b/include/wx/stream.h @@ -85,6 +85,9 @@ public: virtual size_t GetSize() const; virtual wxFileOffset GetLength() const { return wxInvalidOffset; } + // returns true if the streams supports seeking to arbitrary offsets + virtual bool IsSeekable() const { return false; } + #if WXWIN_COMPATIBILITY_2_2 // deprecated, for compatibility only wxDEPRECATED( wxStreamError LastError() const ); @@ -479,6 +482,7 @@ public: // Position functions wxFileOffset SeekI(wxFileOffset pos, wxSeekMode mode = wxFromStart); wxFileOffset TellI() const; + bool IsSeekable() const { return m_parent_i_stream->IsSeekable(); } // the buffer given to the stream will be deleted by it void SetInputStreamBuffer(wxStreamBuffer *buffer); @@ -514,6 +518,7 @@ public: // Position functions wxFileOffset SeekO(wxFileOffset pos, wxSeekMode mode = wxFromStart); wxFileOffset TellO() const; + bool IsSeekable() const { return m_parent_o_stream->IsSeekable(); } void Sync(); bool Close();