wxBase/GUI separation: 1st step, wxMSW should build, all the rest is broken
[wxWidgets.git] / include / wx / fs_mem.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: fs_mem.h
3 // Purpose: in-memory file system
4 // Author: Vaclav Slavik
5 // Copyright: (c) 2000 Vaclav Slavik
6 // Licence: wxWindows Licence
7 /////////////////////////////////////////////////////////////////////////////
8
9 #ifndef _WX_FS_MEM_H_
10 #define _WX_FS_MEM_H_
11
12 #if defined(__GNUG__) && !defined(__APPLE__)
13 #pragma interface "fs_mem.h"
14 #endif
15
16 #include "wx/wxprec.h"
17
18 #ifdef __BORLANDC__
19 #pragma hdrstop
20 #endif
21
22 #if wxUSE_FILESYSTEM
23
24 #include "wx/filesys.h"
25
26 class WXDLLEXPORT wxBitmap;
27 class WXDLLEXPORT wxImage;
28
29 //--------------------------------------------------------------------------------
30 // wxMemoryFSHandler
31 //--------------------------------------------------------------------------------
32
33 class WXDLLEXPORT wxMemoryFSHandlerBase : public wxFileSystemHandler
34 {
35 public:
36 wxMemoryFSHandlerBase();
37 ~wxMemoryFSHandlerBase();
38
39 // Add file to list of files stored in memory. Stored data (bitmap, text or
40 // raw data) will be copied into private memory stream and available under
41 // name "memory:" + filename
42 static void AddFile(const wxString& filename, wxImage& image, long type);
43 static void AddFile(const wxString& filename, const wxString& textdata);
44 static void AddFile(const wxString& filename, const void *binarydata, size_t size);
45
46 // Remove file from memory FS and free occupied memory
47 static void RemoveFile(const wxString& filename);
48
49 virtual bool CanOpen(const wxString& location);
50 virtual wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
51 virtual wxString FindFirst(const wxString& spec, int flags = 0);
52 virtual wxString FindNext();
53
54 private:
55 static wxHashTable *m_Hash;
56
57 static bool CheckHash(const wxString& filename);
58 };
59
60 class wxMemoryFSHandler : public wxMemoryFSHandlerBase
61 {
62 public:
63 #if wxUSE_GUI
64 static void AddFile(const wxString& filename, const wxBitmap& bitmap, long type);
65 #endif // wxUSE_GUI
66 };
67
68 #endif // wxUSE_FILESYSTEM
69
70 #endif // _WX_FS_MEM_H_
71