]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/zstream.h
final (?) changes to the generic tree ctrl -- seems to work ok
[wxWidgets.git] / include / wx / zstream.h
index addbcf06b99314d77511867ea0d532c338d63af2..1accc85d3c3d82dcf8a4f1e51c32c24edeb71067 100644 (file)
@@ -8,34 +8,27 @@
 // Copyright:   (c) Guilhem Lavaux
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
-#ifndef __WXZSTREAM_H__
-#define __WXZSTREAM_H__
+#ifndef _WX_WXZSTREAM_H__
+#define _WX_WXZSTREAM_H__
 
 #ifdef __GNUG__
 #pragma interface
 #endif
 
 #include <wx/stream.h>
-#include "../../src/zlib/zlib.h"
 
 class wxZlibInputStream: public wxFilterInputStream {
  public:
   wxZlibInputStream(wxInputStream& stream);
   virtual ~wxZlibInputStream();
 
-  wxInputStream& Read(void *buffer, size_t size);
-  off_t SeekI(off_t pos, wxSeekMode mode = wxFromStart);
-  off_t TellI() const;
-
-  size_t LastRead() const { return m_lastread; }
-  bool Eof() const;
+ protected:
+  size_t OnSysRead(void *buffer, size_t size);
 
  protected:
-  size_t m_lastread;
   size_t m_z_size;
   unsigned char *m_z_buffer;
-  bool m_eof;
-  struct z_stream_s m_inflate;
+  struct z_stream_s *m_inflate;
 };
 
 class wxZlibOutputStream: public wxFilterOutputStream {
@@ -43,19 +36,15 @@ class wxZlibOutputStream: public wxFilterOutputStream {
   wxZlibOutputStream(wxOutputStream& stream);
   virtual ~wxZlibOutputStream();
 
-  wxOutputStream& Write(const void *buffer, size_t size);
-  off_t SeekO(off_t pos, wxSeekMode mode = wxFromStart);
-  off_t TellO() const;
+  void Sync();
 
-  size_t LastWrite() const { return m_lastwrite; }
-  bool Bad() const;
+ protected:
+  size_t OnSysWrite(const void *buffer, size_t size);
 
  protected:
-  size_t m_lastwrite;
   size_t m_z_size;
   unsigned char *m_z_buffer;
-  bool m_bad;
-  struct z_stream_s m_deflate;
+  struct z_stream_s *m_deflate;
 };
 
 #endif