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