2000-02-17 23:13:41 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: fs_mem.h
|
|
|
|
// Purpose: in-memory file system
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Copyright: (c) 2000 Vaclav Slavik
|
|
|
|
// Licence: wxWindows Licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2002-03-06 11:17:14 +00:00
|
|
|
#ifndef _WX_FS_MEM_H_
|
|
|
|
#define _WX_FS_MEM_H_
|
2000-02-17 23:13:41 +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_mem.h"
|
2000-02-17 23:13:41 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
2002-12-04 14:11:26 +00:00
|
|
|
#ifdef __BORLANDC__
|
2000-02-17 23:13:41 +00:00
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
2000-02-27 21:06:17 +00:00
|
|
|
#if wxUSE_FILESYSTEM
|
2000-02-17 23:13:41 +00:00
|
|
|
|
|
|
|
#include "wx/filesys.h"
|
2001-07-05 18:48:48 +00:00
|
|
|
|
2003-07-02 01:41:23 +00:00
|
|
|
#if wxUSE_GUI
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxBitmap;
|
|
|
|
class WXDLLIMPEXP_CORE wxImage;
|
2003-07-02 01:41:23 +00:00
|
|
|
#endif // wxUSE_GUI
|
2000-02-17 23:13:41 +00:00
|
|
|
|
2003-07-03 13:06:21 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxMemoryFSHandlerBase
|
|
|
|
// ----------------------------------------------------------------------------
|
2000-02-17 23:13:41 +00:00
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxMemoryFSHandlerBase : public wxFileSystemHandler
|
2000-02-17 23:13:41 +00:00
|
|
|
{
|
2003-06-24 00:56:19 +00:00
|
|
|
public:
|
|
|
|
wxMemoryFSHandlerBase();
|
|
|
|
~wxMemoryFSHandlerBase();
|
2000-02-17 23:13:41 +00:00
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
// Add file to list of files stored in memory. Stored data (bitmap, text or
|
|
|
|
// raw data) will be copied into private memory stream and available under
|
|
|
|
// name "memory:" + filename
|
|
|
|
static void AddFile(const wxString& filename, const wxString& textdata);
|
|
|
|
static void AddFile(const wxString& filename, const void *binarydata, size_t size);
|
2001-07-05 18:48:48 +00:00
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
// Remove file from memory FS and free occupied memory
|
|
|
|
static void RemoveFile(const wxString& filename);
|
2001-07-05 18:48:48 +00:00
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
virtual bool CanOpen(const wxString& location);
|
|
|
|
virtual wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
|
|
|
|
virtual wxString FindFirst(const wxString& spec, int flags = 0);
|
|
|
|
virtual wxString FindNext();
|
2001-07-05 18:48:48 +00:00
|
|
|
|
2003-06-25 15:09:05 +00:00
|
|
|
protected:
|
2003-06-24 00:56:19 +00:00
|
|
|
static bool CheckHash(const wxString& filename);
|
2003-06-25 15:09:05 +00:00
|
|
|
static wxHashTable *m_Hash;
|
2000-02-17 23:13:41 +00:00
|
|
|
};
|
|
|
|
|
2003-07-03 13:06:21 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxMemoryFSHandler
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#if wxUSE_GUI
|
|
|
|
|
|
|
|
// add GUI-only operations to the base class
|
|
|
|
class WXDLLIMPEXP_CORE wxMemoryFSHandler : public wxMemoryFSHandlerBase
|
2003-06-24 00:56:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2003-07-03 13:06:21 +00:00
|
|
|
// bring the base class versions into the scope, otherwise they would be
|
|
|
|
// inaccessible in wxMemoryFSHandler
|
2003-07-04 23:49:58 +00:00
|
|
|
// (unfortunately "using" can't be used as gcc 2.95 doesn't have it...)
|
|
|
|
static void AddFile(const wxString& filename, const wxString& textdata)
|
|
|
|
{
|
|
|
|
wxMemoryFSHandlerBase::AddFile(filename, textdata);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void AddFile(const wxString& filename,
|
|
|
|
const void *binarydata,
|
|
|
|
size_t size)
|
|
|
|
{
|
|
|
|
wxMemoryFSHandlerBase::AddFile(filename, binarydata, size);
|
|
|
|
}
|
2003-07-03 13:06:21 +00:00
|
|
|
|
2003-06-25 14:59:02 +00:00
|
|
|
#if wxUSE_IMAGE
|
|
|
|
static void AddFile(const wxString& filename, wxImage& image, long type);
|
|
|
|
#endif // wxUSE_IMAGE
|
2003-07-03 13:06:21 +00:00
|
|
|
|
2003-07-04 23:49:58 +00:00
|
|
|
static void AddFile(const wxString& filename,
|
|
|
|
const wxBitmap& bitmap,
|
|
|
|
long type);
|
2003-06-24 00:56:19 +00:00
|
|
|
};
|
2000-02-17 23:13:41 +00:00
|
|
|
|
2003-07-03 13:06:21 +00:00
|
|
|
#else // !wxUSE_GUI
|
|
|
|
|
|
|
|
// just the same thing as the base class in wxBase
|
|
|
|
class WXDLLIMPEXP_BASE wxMemoryFSHandler : public wxMemoryFSHandlerBase
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // wxUSE_GUI/!wxUSE_GUI
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
#endif // wxUSE_FILESYSTEM
|
2000-02-17 23:13:41 +00:00
|
|
|
|
2002-03-06 11:17:14 +00:00
|
|
|
#endif // _WX_FS_MEM_H_
|
|
|
|
|