class wxFSFile : public wxObject
{
public:
- %pythonAppend wxFSFile
- "self.thisown = 0 # It will normally be deleted by the user of the wx.FileSystem";
+ %typemap(out) wxFSFile*; // turn off this typemap
wxFSFile(wxInputStream *stream, const wxString& loc,
const wxString& mimetype, const wxString& anchor,
wxDateTime modif);
-
- ~wxFSFile();
+
+ // Turn it back on.
+ %typemap(out) wxFSFile* { $result = wxPyMake_wxObject($1, $owner); }
+
+ ~wxFSFile();
wxInputStream *GetStream();
const wxString& GetMimeType();
{
public:
//wxFileSystemHandler();
+ ~wxFileSystemHandler();
};
{
public:
%pythonAppend wxPyFileSystemHandler "self._setCallbackInfo(self, FileSystemHandler)";
-
+
wxPyFileSystemHandler();
void _setCallbackInfo(PyObject* self, PyObject* _class);
wxString FindFirst(const wxString& spec, int flags = 0);
wxString FindNext();
+ %disownarg(wxFileSystemHandler *handler);
static void AddHandler(wxFileSystemHandler *handler);
+ %cleardisown(wxFileSystemHandler *handler);
+
static void CleanUpHandlers();
// Returns the file URL for a native path
wxFileName fname = wxFileSystem::URLToFileName(url);
return fname.GetFullPath();
}
- }
+ }
};
// Add a file to the memory FS
%pythoncode { AddFile = staticmethod(MemoryFSHandler_AddFile) }
-
+
bool CanOpen(const wxString& location);
%newobject OpenFile;
wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);