1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: ZIP file system
4 // Author: Vaclav Slavik
5 // Copyright: (c) 1999 Vaclav Slavik
7 // Licence: wxWindows Licence
8 /////////////////////////////////////////////////////////////////////////////
13 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
14 #pragma interface "fs_zip.h"
17 #include "wx/wxprec.h"
23 #if wxUSE_FILESYSTEM && wxUSE_FS_ZIP && wxUSE_STREAMS
25 #include "wx/filesys.h"
27 class WXDLLIMPEXP_BASE wxLongToLongHashMap
;
29 //--------------------------------------------------------------------------------
31 //--------------------------------------------------------------------------------
33 class WXDLLIMPEXP_BASE wxZipFSHandler
: public wxFileSystemHandler
37 virtual bool CanOpen(const wxString
& location
);
38 virtual wxFSFile
* OpenFile(wxFileSystem
& fs
, const wxString
& location
);
39 virtual wxString
FindFirst(const wxString
& spec
, int flags
= 0);
40 virtual wxString
FindNext();
44 // these vars are used by FindFirst/Next:
46 wxString m_Pattern
, m_BaseDir
, m_ZipFile
;
47 bool m_AllowDirs
, m_AllowFiles
;
48 wxLongToLongHashMap
*m_DirsFound
;
52 DECLARE_NO_COPY_CLASS(wxZipFSHandler
)
57 // wxUSE_FILESYSTEM && wxUSE_FS_ZIP && wxUSE_STREAMS
59 #endif // _WX_FS_ZIP_H_