1999-07-07 18:04:58 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: fs_zip.h
|
|
|
|
// Purpose: ZIP file system
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Copyright: (c) 1999 Vaclav Slavik
|
2001-02-22 18:43:45 -05:00
|
|
|
// CVS-ID: $Id$
|
1999-07-07 18:04:58 -04:00
|
|
|
// Licence: wxWindows Licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2002-03-06 06:17:14 -05:00
|
|
|
#ifndef _WX_FS_ZIP_H_
|
|
|
|
#define _WX_FS_ZIP_H_
|
1999-07-07 18:04:58 -04:00
|
|
|
|
2003-08-09 08:38:21 -04:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2001-04-28 19:31:03 -04:00
|
|
|
#pragma interface "fs_zip.h"
|
1999-07-07 18:04:58 -04:00
|
|
|
#endif
|
|
|
|
|
1999-08-20 18:52:21 -04:00
|
|
|
#include "wx/wxprec.h"
|
1999-07-07 18:04:58 -04:00
|
|
|
|
2002-12-04 09:11:26 -05:00
|
|
|
#ifdef __BORLANDC__
|
1999-07-07 18:04:58 -04:00
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
2000-02-27 16:06:17 -05:00
|
|
|
#if wxUSE_FILESYSTEM && wxUSE_FS_ZIP && wxUSE_STREAMS
|
1999-07-29 15:52:37 -04:00
|
|
|
|
1999-08-20 18:52:21 -04:00
|
|
|
#include "wx/filesys.h"
|
1999-07-07 18:04:58 -04:00
|
|
|
|
2003-07-03 17:59:55 -04:00
|
|
|
class WXDLLIMPEXP_BASE wxLongToLongHashMap;
|
2001-02-22 18:43:45 -05:00
|
|
|
|
1999-07-07 18:04:58 -04:00
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
// wxZipFSHandler
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
|
2003-07-01 21:59:24 -04:00
|
|
|
class WXDLLIMPEXP_BASE wxZipFSHandler : public wxFileSystemHandler
|
1999-07-07 18:04:58 -04:00
|
|
|
{
|
|
|
|
public:
|
1999-10-31 17:05:10 -05:00
|
|
|
wxZipFSHandler();
|
1999-07-07 18:04:58 -04:00
|
|
|
virtual bool CanOpen(const wxString& location);
|
|
|
|
virtual wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
|
1999-10-31 17:05:10 -05:00
|
|
|
virtual wxString FindFirst(const wxString& spec, int flags = 0);
|
|
|
|
virtual wxString FindNext();
|
1999-07-07 18:04:58 -04:00
|
|
|
~wxZipFSHandler();
|
2001-07-05 14:48:48 -04:00
|
|
|
|
1999-10-31 17:05:10 -05:00
|
|
|
private:
|
|
|
|
// these vars are used by FindFirst/Next:
|
|
|
|
void *m_Archive;
|
|
|
|
wxString m_Pattern, m_BaseDir, m_ZipFile;
|
|
|
|
bool m_AllowDirs, m_AllowFiles;
|
2003-07-03 17:59:55 -04:00
|
|
|
wxLongToLongHashMap *m_DirsFound;
|
2001-07-05 14:48:48 -04:00
|
|
|
|
1999-10-31 17:05:10 -05:00
|
|
|
wxString DoFind();
|
2003-01-02 18:38:11 -05:00
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxZipFSHandler)
|
1999-07-07 18:04:58 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-07-29 15:52:37 -04:00
|
|
|
#endif
|
2000-02-27 16:06:17 -05:00
|
|
|
// wxUSE_FILESYSTEM && wxUSE_FS_ZIP && wxUSE_STREAMS
|
1999-07-07 18:04:58 -04:00
|
|
|
|
2002-03-06 06:17:14 -05:00
|
|
|
#endif // _WX_FS_ZIP_H_
|
|
|
|
|