]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/_filesys.i
Adding wxWebKitCtrl wrappers.
[wxWidgets.git] / wxPython / src / _filesys.i
CommitLineData
c368d904 1/////////////////////////////////////////////////////////////////////////////
d14a1e28 2// Name: _filesys.i
c368d904
RD
3// Purpose: SWIG definitions of the wxFileSystem family of classes
4//
d14a1e28 5// Author: Robin Dunn
c368d904
RD
6//
7// Created: 25-Sept-2000
8// RCS-ID: $Id$
d14a1e28 9// Copyright: (c) 2003 by Total Control Software
c368d904
RD
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
d14a1e28 13// Not a %module
c368d904 14
c368d904 15
d14a1e28 16//---------------------------------------------------------------------------
c368d904 17
d14a1e28
RD
18%{
19#include "wx/wxPython/pyistream.h"
20%}
c368d904
RD
21
22//---------------------------------------------------------------------------
d14a1e28 23%newgroup
c368d904 24
c368d904 25
d14a1e28
RD
26class wxFSFile : public wxObject
27{
c368d904 28public:
b87bfdb7
RD
29 %pythonAppend wxFSFile
30 "self.thisown = 0 # It will normally be deleted by the user of the wxFileSystem";
31
c368d904
RD
32 wxFSFile(wxInputStream *stream, const wxString& loc,
33 const wxString& mimetype, const wxString& anchor,
34 wxDateTime modif);
b87bfdb7
RD
35
36 ~wxFSFile();
c368d904
RD
37
38 wxInputStream *GetStream();
39 const wxString& GetMimeType();
40 const wxString& GetLocation();
41 const wxString& GetAnchor();
42 wxDateTime GetModificationTime();
43};
44
45
c368d904
RD
46//---------------------------------------------------------------------------
47
48%{
d14a1e28
RD
49class wxPyFileSystemHandler : public wxFileSystemHandler
50{
c368d904
RD
51public:
52 wxPyFileSystemHandler() : wxFileSystemHandler() {}
53
54 DEC_PYCALLBACK_BOOL_STRING_pure(CanOpen);
55 DEC_PYCALLBACK_FSF_FSSTRING_pure(OpenFile);
56 DEC_PYCALLBACK_STRING_STRINGINT_pure(FindFirst);
57 DEC_PYCALLBACK_STRING__pure(FindNext);
58
59 wxString GetProtocol(const wxString& location) {
60 return wxFileSystemHandler::GetProtocol(location);
61 }
62
63 wxString GetLeftLocation(const wxString& location) {
64 return wxFileSystemHandler::GetLeftLocation(location);
65 }
66
67 wxString GetAnchor(const wxString& location) {
68 return wxFileSystemHandler::GetAnchor(location);
69 }
70
71 wxString GetRightLocation(const wxString& location) {
72 return wxFileSystemHandler::GetRightLocation(location);
73 }
74
e9159fe8 75 wxString GetMimeTypeFromExt(const wxString& location) {
c368d904
RD
76 return wxFileSystemHandler::GetMimeTypeFromExt(location);
77 }
78
79 PYPRIVATE;
80};
81
82
83IMP_PYCALLBACK_BOOL_STRING_pure(wxPyFileSystemHandler, wxFileSystemHandler, CanOpen);
84IMP_PYCALLBACK_FSF_FSSTRING_pure(wxPyFileSystemHandler, wxFileSystemHandler, OpenFile);
85IMP_PYCALLBACK_STRING_STRINGINT_pure(wxPyFileSystemHandler, wxFileSystemHandler, FindFirst);
86IMP_PYCALLBACK_STRING__pure(wxPyFileSystemHandler, wxFileSystemHandler, FindNext);
87%}
88
89
c368d904 90
d14a1e28
RD
91%name(CPPFileSystemHandler) class wxFileSystemHandler //: public wxObject
92{
93public:
94 //wxFileSystemHandler();
95};
96
97
98
99%name(FileSystemHandler) class wxPyFileSystemHandler : public wxFileSystemHandler
100{
c368d904 101public:
2b9048c5 102 %pythonAppend wxPyFileSystemHandler "self._setCallbackInfo(self, FileSystemHandler)";
d14a1e28 103
c368d904
RD
104 wxPyFileSystemHandler();
105
0122b7e3 106 void _setCallbackInfo(PyObject* self, PyObject* _class);
c368d904
RD
107
108 bool CanOpen(const wxString& location);
b87bfdb7 109 %newobject OpenFile;
c368d904
RD
110 wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
111 wxString FindFirst(const wxString& spec, int flags = 0);
112 wxString FindNext();
113
114 wxString GetProtocol(const wxString& location);
115 wxString GetLeftLocation(const wxString& location);
116 wxString GetAnchor(const wxString& location);
d14a1e28 117 wxString GetRightLocation(const wxString& location);
c368d904
RD
118 wxString GetMimeTypeFromExt(const wxString& location);
119};
120
d14a1e28
RD
121
122// //---------------------------------------------------------------------------
123
c368d904 124
9416aa89 125class wxFileSystem : public wxObject {
c368d904
RD
126public:
127 wxFileSystem();
d14a1e28 128 ~wxFileSystem();
c368d904 129
a72f4631 130 void ChangePathTo(const wxString& location, bool is_dir = false);
c368d904
RD
131 wxString GetPath();
132
b87bfdb7 133 %newobject OpenFile;
c368d904
RD
134 wxFSFile* OpenFile(const wxString& location);
135
136 wxString FindFirst(const wxString& spec, int flags = 0);
137 wxString FindNext();
138
139 static void AddHandler(wxFileSystemHandler *handler);
140 static void CleanUpHandlers();
1e4a197e 141
dd116e73
RD
142 // Returns the file URL for a native path
143 static wxString FileNameToURL(const wxString& filename);
1e4a197e 144
dd116e73 145 // Returns the native path for a file URL
7e6581d4
RD
146 //static wxFileName URLToFileName(const wxString& url);
147 %extend {
148 static wxString URLToFileName(const wxString& url) {
149 wxFileName fname = wxFileSystem::URLToFileName(url);
150 return fname.GetFullPath();
151 }
152 }
c368d904
RD
153};
154
dd116e73 155
d14a1e28 156
c368d904
RD
157//---------------------------------------------------------------------------
158
159class wxInternetFSHandler : public wxFileSystemHandler {
160public:
161 wxInternetFSHandler();
162 bool CanOpen(const wxString& location);
b87bfdb7 163 %newobject OpenFile;
c368d904
RD
164 wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
165};
166
167
168//---------------------------------------------------------------------------
d14a1e28 169
c368d904
RD
170class wxZipFSHandler : public wxFileSystemHandler {
171public:
172 wxZipFSHandler();
173
174 bool CanOpen(const wxString& location);
b87bfdb7 175 %newobject OpenFile;
c368d904
RD
176 wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
177 wxString FindFirst(const wxString& spec, int flags = 0);
178 wxString FindNext();
179};
180
181//---------------------------------------------------------------------------
182
d14a1e28 183// TODO: Use SWIG's overloading feature to fix this mess?
c368d904
RD
184
185// getting the overloaded static AddFile method right
186%inline %{
d14a1e28
RD
187 void __wxMemoryFSHandler_AddFile_wxImage(const wxString& filename,
188 wxImage& image,
189 long type) {
190 wxMemoryFSHandler::AddFile(filename, image, type);
191 }
c368d904 192
d14a1e28
RD
193 void __wxMemoryFSHandler_AddFile_wxBitmap(const wxString& filename,
194 const wxBitmap& bitmap,
195 long type) {
196 wxMemoryFSHandler::AddFile(filename, bitmap, type);
197 }
c368d904 198
d14a1e28
RD
199 void __wxMemoryFSHandler_AddFile_Data(const wxString& filename,
200 PyObject* data) {
7e6581d4
RD
201 if (! PyString_Check(data)) {
202 wxPyBLOCK_THREADS(PyErr_SetString(PyExc_TypeError,
203 "Expected string object"));
204 return;
205 }
206
207 bool blocked = wxPyBeginBlockThreads();
208 void* ptr = (void*)PyString_AsString(data);
209 size_t size = PyString_Size(data);
210 wxPyEndBlockThreads(blocked);
211
212 wxMemoryFSHandler::AddFile(filename, ptr, size);
d14a1e28 213 }
c368d904
RD
214%}
215
216
217// case switch for overloading
d14a1e28 218%pythoncode {
7e6581d4
RD
219def MemoryFSHandler_AddFile(filename, dataItem, imgType=-1):
220 """
221 Add 'file' to the memory filesystem. The dataItem parameter can
222 either be a `wx.Bitmap`, `wx.Image` or a string that can contain
223 arbitrary data. If a bitmap or image is used then the imgType
224 parameter should specify what kind of image file it should be
225 written as, wx.BITMAP_TYPE_PNG, etc.
226 """
227 if isinstance(dataItem, wx.Image):
228 __wxMemoryFSHandler_AddFile_wxImage(filename, dataItem, imgType)
229 elif isinstance(dataItem, wx.Bitmap):
230 __wxMemoryFSHandler_AddFile_wxBitmap(filename, dataItem, imgType)
231 elif type(dataItem) == str:
232 __wxMemoryFSHandler_AddFile_Data(filename, dataItem)
233 else:
234 raise TypeError, 'wx.Image, wx.Bitmap or string expected'
d14a1e28 235}
c368d904
RD
236
237
d14a1e28
RD
238class wxMemoryFSHandler : public wxFileSystemHandler {
239public:
240 wxMemoryFSHandler();
241
242 // Remove file from memory FS and free occupied memory
243 static void RemoveFile(const wxString& filename);
244
245 // Add a file to the memory FS
246 %pythoncode { AddFile = staticmethod(MemoryFSHandler_AddFile) }
247
248 bool CanOpen(const wxString& location);
b87bfdb7 249 %newobject OpenFile;
d14a1e28
RD
250 wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
251 wxString FindFirst(const wxString& spec, int flags = 0);
252 virtual wxString FindNext();
253};
9416aa89 254
d14a1e28
RD
255
256//---------------------------------------------------------------------------
9416aa89
RD
257%init %{
258 wxPyPtrTypeMap_Add("wxFileSystemHandler", "wxPyFileSystemHandler");
259%}
c368d904 260//---------------------------------------------------------------------------