X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8f0ff178513f59471bfce85cf6d7a78f4f4818ab..3c203a185145a1aa720faf53e7f6fbebb35bce7a:/include/wx/stream.h diff --git a/include/wx/stream.h b/include/wx/stream.h index 5799895fe0..8bfb43686d 100644 --- a/include/wx/stream.h +++ b/include/wx/stream.h @@ -85,12 +85,27 @@ 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 - wxStreamError LastError() const { return m_lasterror; } - size_t StreamSize() const { return GetSize(); } + wxDEPRECATED( wxStreamError LastError() const ); + wxDEPRECATED( size_t StreamSize() const ); #endif // WXWIN_COMPATIBILITY_2_2 + + // Reserved for future use + virtual void ReservedStreamFunc1() {} + virtual void ReservedStreamFunc2() {} + virtual void ReservedStreamFunc3() {} + virtual void ReservedStreamFunc4() {} + virtual void ReservedStreamFunc5() {} + virtual void ReservedStreamFunc6() {} + virtual void ReservedStreamFunc7() {} + virtual void ReservedStreamFunc8() {} + virtual void ReservedStreamFunc9() {} + protected: virtual wxFileOffset OnSysSeek(wxFileOffset seek, wxSeekMode mode); virtual wxFileOffset OnSysTell() const; @@ -479,6 +494,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 +530,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();