]>
Commit | Line | Data |
---|---|---|
5526e819 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: fs_zip.h | |
3 | // Purpose: ZIP file system | |
4 | // Author: Vaclav Slavik | |
5 | // Copyright: (c) 1999 Vaclav Slavik | |
de0702d0 | 6 | // CVS-ID: $Id$ |
65571936 | 7 | // Licence: wxWindows licence |
5526e819 VS |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
4e8e18e2 VZ |
10 | #ifndef _WX_FS_ZIP_H_ |
11 | #define _WX_FS_ZIP_H_ | |
5526e819 | 12 | |
12028905 | 13 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
c3f4609e | 14 | #pragma interface "fs_zip.h" |
5526e819 VS |
15 | #endif |
16 | ||
372c511b | 17 | #include "wx/defs.h" |
5526e819 | 18 | |
24528b0c | 19 | #if wxUSE_FILESYSTEM && wxUSE_FS_ZIP && wxUSE_STREAMS |
8a4df159 | 20 | |
ed58dbea | 21 | #include "wx/filesys.h" |
bdcade0a | 22 | #include "wx/hashmap.h" |
5526e819 | 23 | |
62d9eab6 VZ |
24 | |
25 | WX_DECLARE_STRING_HASH_MAP(int, wxZipFilenameHashMap); | |
26 | ||
27 | ||
bdcade0a | 28 | //--------------------------------------------------------------------------- |
5526e819 | 29 | // wxZipFSHandler |
bdcade0a | 30 | //--------------------------------------------------------------------------- |
5526e819 | 31 | |
bddd7a8d | 32 | class WXDLLIMPEXP_BASE wxZipFSHandler : public wxFileSystemHandler |
5526e819 VS |
33 | { |
34 | public: | |
aaa66113 | 35 | wxZipFSHandler(); |
5526e819 VS |
36 | virtual bool CanOpen(const wxString& location); |
37 | virtual wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location); | |
aaa66113 VS |
38 | virtual wxString FindFirst(const wxString& spec, int flags = 0); |
39 | virtual wxString FindNext(); | |
5526e819 | 40 | ~wxZipFSHandler(); |
04dbb646 | 41 | |
aaa66113 VS |
42 | private: |
43 | // these vars are used by FindFirst/Next: | |
00375592 | 44 | class wxZipInputStream *m_Archive; |
aaa66113 VS |
45 | wxString m_Pattern, m_BaseDir, m_ZipFile; |
46 | bool m_AllowDirs, m_AllowFiles; | |
62d9eab6 | 47 | wxZipFilenameHashMap *m_DirsFound; |
04dbb646 | 48 | |
aaa66113 | 49 | wxString DoFind(); |
00375592 | 50 | void CloseArchive(class wxZipInputStream *archive); |
22f3361e VZ |
51 | |
52 | DECLARE_NO_COPY_CLASS(wxZipFSHandler) | |
5526e819 VS |
53 | }; |
54 | ||
55 | ||
8a4df159 | 56 | #endif |
24528b0c | 57 | // wxUSE_FILESYSTEM && wxUSE_FS_ZIP && wxUSE_STREAMS |
5526e819 | 58 | |
4e8e18e2 VZ |
59 | #endif // _WX_FS_ZIP_H_ |
60 |