2000-02-17 18:13:41 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: fs_mem.h
|
|
|
|
// Purpose: in-memory file system
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Copyright: (c) 2000 Vaclav Slavik
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
2000-02-17 18:13:41 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2002-03-06 06:17:14 -05:00
|
|
|
#ifndef _WX_FS_MEM_H_
|
|
|
|
#define _WX_FS_MEM_H_
|
2000-02-17 18:13:41 -05:00
|
|
|
|
2004-07-25 12:44:47 -04:00
|
|
|
#include "wx/defs.h"
|
2000-02-17 18:13:41 -05:00
|
|
|
|
2000-02-27 16:06:17 -05:00
|
|
|
#if wxUSE_FILESYSTEM
|
2000-02-17 18:13:41 -05:00
|
|
|
|
|
|
|
#include "wx/filesys.h"
|
2001-07-05 14:48:48 -04:00
|
|
|
|
2003-07-01 21:41:23 -04:00
|
|
|
#if wxUSE_GUI
|
2003-07-01 21:59:24 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxBitmap;
|
|
|
|
class WXDLLIMPEXP_CORE wxImage;
|
2003-07-01 21:41:23 -04:00
|
|
|
#endif // wxUSE_GUI
|
2000-02-17 18:13:41 -05:00
|
|
|
|
2003-07-03 09:06:21 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxMemoryFSHandlerBase
|
|
|
|
// ----------------------------------------------------------------------------
|
2000-02-17 18:13:41 -05:00
|
|
|
|
2003-07-01 21:59:24 -04:00
|
|
|
class WXDLLIMPEXP_BASE wxMemoryFSHandlerBase : public wxFileSystemHandler
|
2000-02-17 18:13:41 -05:00
|
|
|
{
|
2003-06-23 20:56:19 -04:00
|
|
|
public:
|
|
|
|
wxMemoryFSHandlerBase();
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxMemoryFSHandlerBase();
|
2000-02-17 18:13:41 -05:00
|
|
|
|
2003-06-23 20:56:19 -04: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 14:48:48 -04:00
|
|
|
|
2003-06-23 20:56:19 -04:00
|
|
|
// Remove file from memory FS and free occupied memory
|
|
|
|
static void RemoveFile(const wxString& filename);
|
2001-07-05 14:48:48 -04:00
|
|
|
|
2003-06-23 20:56:19 -04: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 14:48:48 -04:00
|
|
|
|
2003-06-25 11:09:05 -04:00
|
|
|
protected:
|
2003-06-23 20:56:19 -04:00
|
|
|
static bool CheckHash(const wxString& filename);
|
2003-06-25 11:09:05 -04:00
|
|
|
static wxHashTable *m_Hash;
|
2000-02-17 18:13:41 -05:00
|
|
|
};
|
|
|
|
|
2003-07-03 09:06:21 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxMemoryFSHandler
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#if wxUSE_GUI
|
|
|
|
|
|
|
|
// add GUI-only operations to the base class
|
|
|
|
class WXDLLIMPEXP_CORE wxMemoryFSHandler : public wxMemoryFSHandlerBase
|
2003-06-23 20:56:19 -04:00
|
|
|
{
|
|
|
|
public:
|
2003-07-03 09:06:21 -04:00
|
|
|
// bring the base class versions into the scope, otherwise they would be
|
|
|
|
// inaccessible in wxMemoryFSHandler
|
2003-07-04 19:49:58 -04: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 09:06:21 -04:00
|
|
|
|
2003-06-25 10:59:02 -04:00
|
|
|
#if wxUSE_IMAGE
|
2004-07-20 17:59:43 -04:00
|
|
|
static void AddFile(const wxString& filename,
|
|
|
|
const wxImage& image,
|
|
|
|
long type);
|
2003-07-03 09:06:21 -04:00
|
|
|
|
2003-07-04 19:49:58 -04:00
|
|
|
static void AddFile(const wxString& filename,
|
|
|
|
const wxBitmap& bitmap,
|
|
|
|
long type);
|
2004-02-16 18:27:54 -05:00
|
|
|
#endif // wxUSE_IMAGE
|
|
|
|
|
2003-06-23 20:56:19 -04:00
|
|
|
};
|
2000-02-17 18:13:41 -05:00
|
|
|
|
2003-07-03 09:06:21 -04: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-23 20:56:19 -04:00
|
|
|
#endif // wxUSE_FILESYSTEM
|
2000-02-17 18:13:41 -05:00
|
|
|
|
2002-03-06 06:17:14 -05:00
|
|
|
#endif // _WX_FS_MEM_H_
|
|
|
|
|