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
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
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"
|
|
|
|
|
|
|
|
#ifdef __BORDLANDC__
|
|
|
|
#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
|
|
|
|
2000-03-04 20:37:08 +00:00
|
|
|
#if wxUSE_GUI
|
2001-07-05 18:48:48 +00:00
|
|
|
#include "wx/image.h"
|
|
|
|
#include "wx/bitmap.h"
|
2000-03-04 20:37:08 +00:00
|
|
|
#endif
|
2000-02-17 23:13:41 +00:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
// wxMemoryFSHandler
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxMemoryFSHandler : public wxFileSystemHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxMemoryFSHandler();
|
|
|
|
~wxMemoryFSHandler();
|
|
|
|
|
|
|
|
// 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
|
2000-03-04 20:37:08 +00:00
|
|
|
#if wxUSE_GUI
|
2000-02-17 23:13:41 +00:00
|
|
|
static void AddFile(const wxString& filename, wxImage& image, long type);
|
|
|
|
static void AddFile(const wxString& filename, const wxBitmap& bitmap, long type);
|
2000-03-04 20:37:08 +00:00
|
|
|
#endif
|
2001-07-05 18:48:48 +00:00
|
|
|
static void AddFile(const wxString& filename, const wxString& textdata);
|
2000-02-17 23:13:41 +00:00
|
|
|
static void AddFile(const wxString& filename, const void *binarydata, size_t size);
|
2001-07-05 18:48:48 +00:00
|
|
|
|
2000-02-17 23:13:41 +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
|
|
|
|
2000-02-17 23:13:41 +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
|
|
|
|
2000-02-17 23:13:41 +00:00
|
|
|
private:
|
|
|
|
static wxHashTable *m_Hash;
|
2001-07-05 18:48:48 +00:00
|
|
|
|
2000-02-17 23:13:41 +00:00
|
|
|
static bool CheckHash(const wxString& filename);
|
|
|
|
};
|
|
|
|
|
2001-07-05 18:48:48 +00:00
|
|
|
#endif
|
2000-02-27 21:06:17 +00:00
|
|
|
// wxUSE_FILESYSTEM
|
2000-02-17 23:13:41 +00:00
|
|
|
|
|
|
|
|