]>
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 | |
bdcade0a | 24 | //--------------------------------------------------------------------------- |
5526e819 | 25 | // wxZipFSHandler |
bdcade0a | 26 | //--------------------------------------------------------------------------- |
5526e819 | 27 | |
bddd7a8d | 28 | class WXDLLIMPEXP_BASE wxZipFSHandler : public wxFileSystemHandler |
5526e819 VS |
29 | { |
30 | public: | |
aaa66113 | 31 | wxZipFSHandler(); |
5526e819 VS |
32 | virtual bool CanOpen(const wxString& location); |
33 | virtual wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location); | |
aaa66113 VS |
34 | virtual wxString FindFirst(const wxString& spec, int flags = 0); |
35 | virtual wxString FindNext(); | |
5526e819 | 36 | ~wxZipFSHandler(); |
04dbb646 | 37 | |
aaa66113 VS |
38 | private: |
39 | // these vars are used by FindFirst/Next: | |
00375592 | 40 | class wxZipInputStream *m_Archive; |
aaa66113 VS |
41 | wxString m_Pattern, m_BaseDir, m_ZipFile; |
42 | bool m_AllowDirs, m_AllowFiles; | |
ba8c1601 | 43 | wxLongToLongHashMap *m_DirsFound; |
04dbb646 | 44 | |
aaa66113 | 45 | wxString DoFind(); |
00375592 | 46 | void CloseArchive(class wxZipInputStream *archive); |
22f3361e VZ |
47 | |
48 | DECLARE_NO_COPY_CLASS(wxZipFSHandler) | |
5526e819 VS |
49 | }; |
50 | ||
51 | ||
8a4df159 | 52 | #endif |
24528b0c | 53 | // wxUSE_FILESYSTEM && wxUSE_FS_ZIP && wxUSE_STREAMS |
5526e819 | 54 | |
4e8e18e2 VZ |
55 | #endif // _WX_FS_ZIP_H_ |
56 |