2 * FILE : src/gtk/filesys.cpp
4 * This file was automatically generated by :
5 * Simplified Wrapper and Interface Generator (SWIG)
6 * Version 1.1 (Build 883)
8 * Portions Copyright (c) 1995-1998
9 * The University of Utah and The Regents of the University of California.
10 * Permission is granted to distribute this file in any manner provided
11 * this notice remains intact.
13 * Do not make changes to this file--changes will be lost!
19 /* Implementation : PYTHON */
24 /* Definitions for Windows/Unix exporting */
25 #if defined(__WIN32__)
26 # if defined(_MSC_VER)
27 # define SWIGEXPORT(a) __declspec(dllexport) a
29 # if defined(__BORLANDC__)
30 # define SWIGEXPORT(a) a _export
32 # define SWIGEXPORT(a) a
36 # define SWIGEXPORT(a) a
45 extern void SWIG_MakePtr(char *, void *, char *);
46 extern void SWIG_RegisterMapping(char *, char *, void *(*)(void *));
47 extern char *SWIG_GetPtr(char *, void **, char *);
48 extern char *SWIG_GetPtrObj(PyObject
*, void **, char *);
49 extern void SWIG_addvarlink(PyObject
*, char *, PyObject
*(*)(void), int (*)(PyObject
*));
50 extern PyObject
*SWIG_newvarlink(void);
54 #define SWIG_init initfilesysc
56 #define SWIG_name "filesysc"
59 #include "pyistream.h"
60 #include <wx/filesys.h>
61 #include <wx/fs_inet.h>
62 #include <wx/fs_mem.h>
63 #include <wx/fs_zip.h>
66 static PyObject
* t_output_helper(PyObject
* target
, PyObject
* o
) {
72 } else if (target
== Py_None
) {
76 if (!PyTuple_Check(target
)) {
78 target
= PyTuple_New(1);
79 PyTuple_SetItem(target
, 0, o2
);
82 PyTuple_SetItem(o3
, 0, o
);
85 target
= PySequence_Concat(o2
, o3
);
92 #if PYTHON_API_VERSION >= 1009
93 static char* wxStringErrorMsg
= "String or Unicode type required";
95 static char* wxStringErrorMsg
= "String type required";
98 // wxPyFileSystemHandler will be the Python class wxFileSystemHandler and handling
99 // the callback functions
100 class wxPyFileSystemHandler
: public wxFileSystemHandler
{
102 wxPyFileSystemHandler() : wxFileSystemHandler() {}
104 DEC_PYCALLBACK_BOOL_STRING_pure(CanOpen
);
105 DEC_PYCALLBACK_FSF_FSSTRING_pure(OpenFile
);
106 DEC_PYCALLBACK_STRING_STRINGINT_pure(FindFirst
);
107 DEC_PYCALLBACK_STRING__pure(FindNext
);
109 wxString
GetProtocol(const wxString
& location
) {
110 return wxFileSystemHandler::GetProtocol(location
);
113 wxString
GetLeftLocation(const wxString
& location
) {
114 return wxFileSystemHandler::GetLeftLocation(location
);
117 wxString
GetAnchor(const wxString
& location
) {
118 return wxFileSystemHandler::GetAnchor(location
);
121 wxString
GetRightLocation(const wxString
& location
) {
122 return wxFileSystemHandler::GetRightLocation(location
);
125 wxString
GetMimeTypeFromExt(const wxString
& location
){
126 return wxFileSystemHandler::GetMimeTypeFromExt(location
);
133 IMP_PYCALLBACK_BOOL_STRING_pure(wxPyFileSystemHandler
, wxFileSystemHandler
, CanOpen
);
134 IMP_PYCALLBACK_FSF_FSSTRING_pure(wxPyFileSystemHandler
, wxFileSystemHandler
, OpenFile
);
135 IMP_PYCALLBACK_STRING_STRINGINT_pure(wxPyFileSystemHandler
, wxFileSystemHandler
, FindFirst
);
136 IMP_PYCALLBACK_STRING__pure(wxPyFileSystemHandler
, wxFileSystemHandler
, FindNext
);
138 void __wxMemoryFSHandler_AddFile_wxImage(const wxString
& filename
,
141 wxMemoryFSHandler::AddFile(filename
, image
, type
);
144 void __wxMemoryFSHandler_AddFile_wxBitmap(const wxString
& filename
,
145 const wxBitmap
& bitmap
,
147 wxMemoryFSHandler::AddFile(filename
, bitmap
, type
);
150 // void __wxMemoryFSHandler_AddFile_wxString(const wxString& filename,
151 // const wxString& textdata) {
152 // wxMemoryFSHandler::AddFile(filename, textdata);
155 void __wxMemoryFSHandler_AddFile_Data(const wxString
& filename
,
158 wxMemoryFSHandler::AddFile(filename
,
159 (void*)PyString_AsString(data
),
160 (size_t)PyString_Size(data
));
165 static PyObject
*_wrap___wxMemoryFSHandler_AddFile_wxImage(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
166 PyObject
* _resultobj
;
170 PyObject
* _obj0
= 0;
171 PyObject
* _argo1
= 0;
172 char *_kwnames
[] = { "filename","image","type", NULL
};
175 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OOl:__wxMemoryFSHandler_AddFile_wxImage",_kwnames
,&_obj0
,&_argo1
,&_arg2
))
178 #if PYTHON_API_VERSION >= 1009
179 char* tmpPtr
; int tmpSize
;
180 if (!PyString_Check(_obj0
) && !PyUnicode_Check(_obj0
)) {
181 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
184 if (PyString_AsStringAndSize(_obj0
, &tmpPtr
, &tmpSize
) == -1)
186 _arg0
= new wxString(tmpPtr
, tmpSize
);
188 if (!PyString_Check(_obj0
)) {
189 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
192 _arg0
= new wxString(PyString_AS_STRING(_obj0
), PyString_GET_SIZE(_obj0
));
196 if (_argo1
== Py_None
) { _arg1
= NULL
; }
197 else if (SWIG_GetPtrObj(_argo1
,(void **) &_arg1
,"_wxImage_p")) {
198 PyErr_SetString(PyExc_TypeError
,"Type error in argument 2 of __wxMemoryFSHandler_AddFile_wxImage. Expected _wxImage_p.");
203 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
204 __wxMemoryFSHandler_AddFile_wxImage(*_arg0
,*_arg1
,_arg2
);
206 wxPyEndAllowThreads(__tstate
);
207 if (PyErr_Occurred()) return NULL
;
208 } Py_INCREF(Py_None
);
209 _resultobj
= Py_None
;
217 static PyObject
*_wrap___wxMemoryFSHandler_AddFile_wxBitmap(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
218 PyObject
* _resultobj
;
222 PyObject
* _obj0
= 0;
223 PyObject
* _argo1
= 0;
224 char *_kwnames
[] = { "filename","bitmap","type", NULL
};
227 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OOl:__wxMemoryFSHandler_AddFile_wxBitmap",_kwnames
,&_obj0
,&_argo1
,&_arg2
))
230 #if PYTHON_API_VERSION >= 1009
231 char* tmpPtr
; int tmpSize
;
232 if (!PyString_Check(_obj0
) && !PyUnicode_Check(_obj0
)) {
233 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
236 if (PyString_AsStringAndSize(_obj0
, &tmpPtr
, &tmpSize
) == -1)
238 _arg0
= new wxString(tmpPtr
, tmpSize
);
240 if (!PyString_Check(_obj0
)) {
241 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
244 _arg0
= new wxString(PyString_AS_STRING(_obj0
), PyString_GET_SIZE(_obj0
));
248 if (_argo1
== Py_None
) { _arg1
= NULL
; }
249 else if (SWIG_GetPtrObj(_argo1
,(void **) &_arg1
,"_wxBitmap_p")) {
250 PyErr_SetString(PyExc_TypeError
,"Type error in argument 2 of __wxMemoryFSHandler_AddFile_wxBitmap. Expected _wxBitmap_p.");
255 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
256 __wxMemoryFSHandler_AddFile_wxBitmap(*_arg0
,*_arg1
,_arg2
);
258 wxPyEndAllowThreads(__tstate
);
259 if (PyErr_Occurred()) return NULL
;
260 } Py_INCREF(Py_None
);
261 _resultobj
= Py_None
;
269 static PyObject
*_wrap___wxMemoryFSHandler_AddFile_Data(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
270 PyObject
* _resultobj
;
273 PyObject
* _obj0
= 0;
274 PyObject
* _obj1
= 0;
275 char *_kwnames
[] = { "filename","data", NULL
};
278 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:__wxMemoryFSHandler_AddFile_Data",_kwnames
,&_obj0
,&_obj1
))
281 #if PYTHON_API_VERSION >= 1009
282 char* tmpPtr
; int tmpSize
;
283 if (!PyString_Check(_obj0
) && !PyUnicode_Check(_obj0
)) {
284 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
287 if (PyString_AsStringAndSize(_obj0
, &tmpPtr
, &tmpSize
) == -1)
289 _arg0
= new wxString(tmpPtr
, tmpSize
);
291 if (!PyString_Check(_obj0
)) {
292 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
295 _arg0
= new wxString(PyString_AS_STRING(_obj0
), PyString_GET_SIZE(_obj0
));
302 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
303 __wxMemoryFSHandler_AddFile_Data(*_arg0
,_arg1
);
305 wxPyEndAllowThreads(__tstate
);
306 if (PyErr_Occurred()) return NULL
;
307 } Py_INCREF(Py_None
);
308 _resultobj
= Py_None
;
316 static void *SwigwxFSFileTowxObject(void *ptr
) {
319 src
= (wxFSFile
*) ptr
;
320 dest
= (wxObject
*) src
;
321 return (void *) dest
;
324 #define new_wxFSFile(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (new wxFSFile(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4))
325 static PyObject
*_wrap_new_wxFSFile(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
326 PyObject
* _resultobj
;
328 wxInputStream
* _arg0
;
333 wxPyInputStream
* temp
;
335 PyObject
* _obj0
= 0;
336 PyObject
* _obj1
= 0;
337 PyObject
* _obj2
= 0;
338 PyObject
* _obj3
= 0;
339 PyObject
* _argo4
= 0;
340 char *_kwnames
[] = { "stream","loc","mimetype","anchor","modif", NULL
};
344 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OOOOO:new_wxFSFile",_kwnames
,&_obj0
,&_obj1
,&_obj2
,&_obj3
,&_argo4
))
347 if (SWIG_GetPtrObj(_obj0
, (void **) &temp
, "_wxPyInputStream_p") == 0) {
348 _arg0
= temp
->m_wxis
;
351 _arg0
= wxPyCBInputStream::create(_obj0
, FALSE
);
353 PyErr_SetString(PyExc_TypeError
,"Expected _wxInputStream_p or Python file-like object.");
360 #if PYTHON_API_VERSION >= 1009
361 char* tmpPtr
; int tmpSize
;
362 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
363 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
366 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
368 _arg1
= new wxString(tmpPtr
, tmpSize
);
370 if (!PyString_Check(_obj1
)) {
371 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
374 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
378 #if PYTHON_API_VERSION >= 1009
379 char* tmpPtr
; int tmpSize
;
380 if (!PyString_Check(_obj2
) && !PyUnicode_Check(_obj2
)) {
381 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
384 if (PyString_AsStringAndSize(_obj2
, &tmpPtr
, &tmpSize
) == -1)
386 _arg2
= new wxString(tmpPtr
, tmpSize
);
388 if (!PyString_Check(_obj2
)) {
389 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
392 _arg2
= new wxString(PyString_AS_STRING(_obj2
), PyString_GET_SIZE(_obj2
));
396 #if PYTHON_API_VERSION >= 1009
397 char* tmpPtr
; int tmpSize
;
398 if (!PyString_Check(_obj3
) && !PyUnicode_Check(_obj3
)) {
399 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
402 if (PyString_AsStringAndSize(_obj3
, &tmpPtr
, &tmpSize
) == -1)
404 _arg3
= new wxString(tmpPtr
, tmpSize
);
406 if (!PyString_Check(_obj3
)) {
407 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
410 _arg3
= new wxString(PyString_AS_STRING(_obj3
), PyString_GET_SIZE(_obj3
));
414 if (_argo4
== Py_None
) { _arg4
= NULL
; }
415 else if (SWIG_GetPtrObj(_argo4
,(void **) &_arg4
,"_wxDateTime_p")) {
416 PyErr_SetString(PyExc_TypeError
,"Type error in argument 5 of new_wxFSFile. Expected _wxDateTime_p.");
421 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
422 _result
= (wxFSFile
*)new_wxFSFile(_arg0
,*_arg1
,*_arg2
,*_arg3
,*_arg4
);
424 wxPyEndAllowThreads(__tstate
);
425 if (PyErr_Occurred()) return NULL
;
427 SWIG_MakePtr(_ptemp
, (char *) _result
,"_wxFSFile_p");
428 _resultobj
= Py_BuildValue("s",_ptemp
);
431 _resultobj
= Py_None
;
452 #define wxFSFile_GetStream(_swigobj) (_swigobj->GetStream())
453 static PyObject
*_wrap_wxFSFile_GetStream(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
454 PyObject
* _resultobj
;
455 wxInputStream
* _result
;
457 PyObject
* _argo0
= 0;
458 char *_kwnames
[] = { "self", NULL
};
461 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxFSFile_GetStream",_kwnames
,&_argo0
))
464 if (_argo0
== Py_None
) { _arg0
= NULL
; }
465 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxFSFile_p")) {
466 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFSFile_GetStream. Expected _wxFSFile_p.");
471 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
472 _result
= (wxInputStream
*)wxFSFile_GetStream(_arg0
);
474 wxPyEndAllowThreads(__tstate
);
475 if (PyErr_Occurred()) return NULL
;
477 wxPyInputStream
* _ptr
= NULL
;
480 _ptr
= new wxPyInputStream(_result
);
482 _resultobj
= wxPyConstructObject(_ptr
, "wxInputStream", TRUE
);
487 #define wxFSFile_GetMimeType(_swigobj) (_swigobj->GetMimeType())
488 static PyObject
*_wrap_wxFSFile_GetMimeType(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
489 PyObject
* _resultobj
;
492 PyObject
* _argo0
= 0;
493 char *_kwnames
[] = { "self", NULL
};
496 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxFSFile_GetMimeType",_kwnames
,&_argo0
))
499 if (_argo0
== Py_None
) { _arg0
= NULL
; }
500 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxFSFile_p")) {
501 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFSFile_GetMimeType. Expected _wxFSFile_p.");
506 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
507 const wxString
& _result_ref
= wxFSFile_GetMimeType(_arg0
);
508 _result
= (wxString
*) &_result_ref
;
510 wxPyEndAllowThreads(__tstate
);
511 if (PyErr_Occurred()) return NULL
;
513 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
518 #define wxFSFile_GetLocation(_swigobj) (_swigobj->GetLocation())
519 static PyObject
*_wrap_wxFSFile_GetLocation(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
520 PyObject
* _resultobj
;
523 PyObject
* _argo0
= 0;
524 char *_kwnames
[] = { "self", NULL
};
527 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxFSFile_GetLocation",_kwnames
,&_argo0
))
530 if (_argo0
== Py_None
) { _arg0
= NULL
; }
531 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxFSFile_p")) {
532 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFSFile_GetLocation. Expected _wxFSFile_p.");
537 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
538 const wxString
& _result_ref
= wxFSFile_GetLocation(_arg0
);
539 _result
= (wxString
*) &_result_ref
;
541 wxPyEndAllowThreads(__tstate
);
542 if (PyErr_Occurred()) return NULL
;
544 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
549 #define wxFSFile_GetAnchor(_swigobj) (_swigobj->GetAnchor())
550 static PyObject
*_wrap_wxFSFile_GetAnchor(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
551 PyObject
* _resultobj
;
554 PyObject
* _argo0
= 0;
555 char *_kwnames
[] = { "self", NULL
};
558 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxFSFile_GetAnchor",_kwnames
,&_argo0
))
561 if (_argo0
== Py_None
) { _arg0
= NULL
; }
562 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxFSFile_p")) {
563 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFSFile_GetAnchor. Expected _wxFSFile_p.");
568 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
569 const wxString
& _result_ref
= wxFSFile_GetAnchor(_arg0
);
570 _result
= (wxString
*) &_result_ref
;
572 wxPyEndAllowThreads(__tstate
);
573 if (PyErr_Occurred()) return NULL
;
575 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
580 #define wxFSFile_GetModificationTime(_swigobj) (_swigobj->GetModificationTime())
581 static PyObject
*_wrap_wxFSFile_GetModificationTime(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
582 PyObject
* _resultobj
;
583 wxDateTime
* _result
;
585 PyObject
* _argo0
= 0;
586 char *_kwnames
[] = { "self", NULL
};
590 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxFSFile_GetModificationTime",_kwnames
,&_argo0
))
593 if (_argo0
== Py_None
) { _arg0
= NULL
; }
594 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxFSFile_p")) {
595 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFSFile_GetModificationTime. Expected _wxFSFile_p.");
600 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
601 _result
= new wxDateTime (wxFSFile_GetModificationTime(_arg0
));
603 wxPyEndAllowThreads(__tstate
);
604 if (PyErr_Occurred()) return NULL
;
605 } SWIG_MakePtr(_ptemp
, (void *) _result
,"_wxDateTime_p");
606 _resultobj
= Py_BuildValue("s",_ptemp
);
610 static void *SwigwxFileSystemHandlerTowxObject(void *ptr
) {
611 wxFileSystemHandler
*src
;
613 src
= (wxFileSystemHandler
*) ptr
;
614 dest
= (wxObject
*) src
;
615 return (void *) dest
;
618 static void *SwigwxPyFileSystemHandlerTowxFileSystemHandler(void *ptr
) {
619 wxPyFileSystemHandler
*src
;
620 wxFileSystemHandler
*dest
;
621 src
= (wxPyFileSystemHandler
*) ptr
;
622 dest
= (wxFileSystemHandler
*) src
;
623 return (void *) dest
;
626 static void *SwigwxPyFileSystemHandlerTowxObject(void *ptr
) {
627 wxPyFileSystemHandler
*src
;
629 src
= (wxPyFileSystemHandler
*) ptr
;
630 dest
= (wxObject
*) src
;
631 return (void *) dest
;
634 #define new_wxFileSystemHandler() (new wxPyFileSystemHandler())
635 static PyObject
*_wrap_new_wxFileSystemHandler(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
636 PyObject
* _resultobj
;
637 wxPyFileSystemHandler
* _result
;
638 char *_kwnames
[] = { NULL
};
642 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,":new_wxFileSystemHandler",_kwnames
))
645 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
646 _result
= (wxPyFileSystemHandler
*)new_wxFileSystemHandler();
648 wxPyEndAllowThreads(__tstate
);
649 if (PyErr_Occurred()) return NULL
;
651 SWIG_MakePtr(_ptemp
, (char *) _result
,"_wxPyFileSystemHandler_p");
652 _resultobj
= Py_BuildValue("s",_ptemp
);
655 _resultobj
= Py_None
;
660 #define wxFileSystemHandler__setCallbackInfo(_swigobj,_swigarg0,_swigarg1) (_swigobj->_setCallbackInfo(_swigarg0,_swigarg1))
661 static PyObject
*_wrap_wxFileSystemHandler__setCallbackInfo(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
662 PyObject
* _resultobj
;
663 wxPyFileSystemHandler
* _arg0
;
666 PyObject
* _argo0
= 0;
667 PyObject
* _obj1
= 0;
668 PyObject
* _obj2
= 0;
669 char *_kwnames
[] = { "self","self","_class", NULL
};
672 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OOO:wxFileSystemHandler__setCallbackInfo",_kwnames
,&_argo0
,&_obj1
,&_obj2
))
675 if (_argo0
== Py_None
) { _arg0
= NULL
; }
676 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyFileSystemHandler_p")) {
677 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFileSystemHandler__setCallbackInfo. Expected _wxPyFileSystemHandler_p.");
688 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
689 wxFileSystemHandler__setCallbackInfo(_arg0
,_arg1
,_arg2
);
691 wxPyEndAllowThreads(__tstate
);
692 if (PyErr_Occurred()) return NULL
;
693 } Py_INCREF(Py_None
);
694 _resultobj
= Py_None
;
698 #define wxFileSystemHandler_CanOpen(_swigobj,_swigarg0) (_swigobj->CanOpen(_swigarg0))
699 static PyObject
*_wrap_wxFileSystemHandler_CanOpen(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
700 PyObject
* _resultobj
;
702 wxPyFileSystemHandler
* _arg0
;
704 PyObject
* _argo0
= 0;
705 PyObject
* _obj1
= 0;
706 char *_kwnames
[] = { "self","location", NULL
};
709 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxFileSystemHandler_CanOpen",_kwnames
,&_argo0
,&_obj1
))
712 if (_argo0
== Py_None
) { _arg0
= NULL
; }
713 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyFileSystemHandler_p")) {
714 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFileSystemHandler_CanOpen. Expected _wxPyFileSystemHandler_p.");
719 #if PYTHON_API_VERSION >= 1009
720 char* tmpPtr
; int tmpSize
;
721 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
722 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
725 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
727 _arg1
= new wxString(tmpPtr
, tmpSize
);
729 if (!PyString_Check(_obj1
)) {
730 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
733 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
737 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
738 _result
= (bool )wxFileSystemHandler_CanOpen(_arg0
,*_arg1
);
740 wxPyEndAllowThreads(__tstate
);
741 if (PyErr_Occurred()) return NULL
;
742 } _resultobj
= Py_BuildValue("i",_result
);
750 #define wxFileSystemHandler_OpenFile(_swigobj,_swigarg0,_swigarg1) (_swigobj->OpenFile(_swigarg0,_swigarg1))
751 static PyObject
*_wrap_wxFileSystemHandler_OpenFile(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
752 PyObject
* _resultobj
;
754 wxPyFileSystemHandler
* _arg0
;
755 wxFileSystem
* _arg1
;
757 PyObject
* _argo0
= 0;
758 PyObject
* _argo1
= 0;
759 PyObject
* _obj2
= 0;
760 char *_kwnames
[] = { "self","fs","location", NULL
};
763 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OOO:wxFileSystemHandler_OpenFile",_kwnames
,&_argo0
,&_argo1
,&_obj2
))
766 if (_argo0
== Py_None
) { _arg0
= NULL
; }
767 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyFileSystemHandler_p")) {
768 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFileSystemHandler_OpenFile. Expected _wxPyFileSystemHandler_p.");
773 if (_argo1
== Py_None
) { _arg1
= NULL
; }
774 else if (SWIG_GetPtrObj(_argo1
,(void **) &_arg1
,"_wxFileSystem_p")) {
775 PyErr_SetString(PyExc_TypeError
,"Type error in argument 2 of wxFileSystemHandler_OpenFile. Expected _wxFileSystem_p.");
780 #if PYTHON_API_VERSION >= 1009
781 char* tmpPtr
; int tmpSize
;
782 if (!PyString_Check(_obj2
) && !PyUnicode_Check(_obj2
)) {
783 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
786 if (PyString_AsStringAndSize(_obj2
, &tmpPtr
, &tmpSize
) == -1)
788 _arg2
= new wxString(tmpPtr
, tmpSize
);
790 if (!PyString_Check(_obj2
)) {
791 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
794 _arg2
= new wxString(PyString_AS_STRING(_obj2
), PyString_GET_SIZE(_obj2
));
798 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
799 _result
= (wxFSFile
*)wxFileSystemHandler_OpenFile(_arg0
,*_arg1
,*_arg2
);
801 wxPyEndAllowThreads(__tstate
);
802 if (PyErr_Occurred()) return NULL
;
803 }{ _resultobj
= wxPyMake_wxObject(_result
); }
811 #define wxFileSystemHandler_FindFirst(_swigobj,_swigarg0,_swigarg1) (_swigobj->FindFirst(_swigarg0,_swigarg1))
812 static PyObject
*_wrap_wxFileSystemHandler_FindFirst(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
813 PyObject
* _resultobj
;
815 wxPyFileSystemHandler
* _arg0
;
817 int _arg2
= (int ) 0;
818 PyObject
* _argo0
= 0;
819 PyObject
* _obj1
= 0;
820 char *_kwnames
[] = { "self","spec","flags", NULL
};
823 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO|i:wxFileSystemHandler_FindFirst",_kwnames
,&_argo0
,&_obj1
,&_arg2
))
826 if (_argo0
== Py_None
) { _arg0
= NULL
; }
827 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyFileSystemHandler_p")) {
828 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFileSystemHandler_FindFirst. Expected _wxPyFileSystemHandler_p.");
833 #if PYTHON_API_VERSION >= 1009
834 char* tmpPtr
; int tmpSize
;
835 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
836 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
839 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
841 _arg1
= new wxString(tmpPtr
, tmpSize
);
843 if (!PyString_Check(_obj1
)) {
844 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
847 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
851 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
852 _result
= new wxString (wxFileSystemHandler_FindFirst(_arg0
,*_arg1
,_arg2
));
854 wxPyEndAllowThreads(__tstate
);
855 if (PyErr_Occurred()) return NULL
;
857 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
869 #define wxFileSystemHandler_FindNext(_swigobj) (_swigobj->FindNext())
870 static PyObject
*_wrap_wxFileSystemHandler_FindNext(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
871 PyObject
* _resultobj
;
873 wxPyFileSystemHandler
* _arg0
;
874 PyObject
* _argo0
= 0;
875 char *_kwnames
[] = { "self", NULL
};
878 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxFileSystemHandler_FindNext",_kwnames
,&_argo0
))
881 if (_argo0
== Py_None
) { _arg0
= NULL
; }
882 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyFileSystemHandler_p")) {
883 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFileSystemHandler_FindNext. Expected _wxPyFileSystemHandler_p.");
888 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
889 _result
= new wxString (wxFileSystemHandler_FindNext(_arg0
));
891 wxPyEndAllowThreads(__tstate
);
892 if (PyErr_Occurred()) return NULL
;
894 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
902 #define wxFileSystemHandler_GetProtocol(_swigobj,_swigarg0) (_swigobj->GetProtocol(_swigarg0))
903 static PyObject
*_wrap_wxFileSystemHandler_GetProtocol(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
904 PyObject
* _resultobj
;
906 wxPyFileSystemHandler
* _arg0
;
908 PyObject
* _argo0
= 0;
909 PyObject
* _obj1
= 0;
910 char *_kwnames
[] = { "self","location", NULL
};
913 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxFileSystemHandler_GetProtocol",_kwnames
,&_argo0
,&_obj1
))
916 if (_argo0
== Py_None
) { _arg0
= NULL
; }
917 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyFileSystemHandler_p")) {
918 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFileSystemHandler_GetProtocol. Expected _wxPyFileSystemHandler_p.");
923 #if PYTHON_API_VERSION >= 1009
924 char* tmpPtr
; int tmpSize
;
925 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
926 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
929 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
931 _arg1
= new wxString(tmpPtr
, tmpSize
);
933 if (!PyString_Check(_obj1
)) {
934 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
937 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
941 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
942 _result
= new wxString (wxFileSystemHandler_GetProtocol(_arg0
,*_arg1
));
944 wxPyEndAllowThreads(__tstate
);
945 if (PyErr_Occurred()) return NULL
;
947 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
959 #define wxFileSystemHandler_GetLeftLocation(_swigobj,_swigarg0) (_swigobj->GetLeftLocation(_swigarg0))
960 static PyObject
*_wrap_wxFileSystemHandler_GetLeftLocation(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
961 PyObject
* _resultobj
;
963 wxPyFileSystemHandler
* _arg0
;
965 PyObject
* _argo0
= 0;
966 PyObject
* _obj1
= 0;
967 char *_kwnames
[] = { "self","location", NULL
};
970 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxFileSystemHandler_GetLeftLocation",_kwnames
,&_argo0
,&_obj1
))
973 if (_argo0
== Py_None
) { _arg0
= NULL
; }
974 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyFileSystemHandler_p")) {
975 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFileSystemHandler_GetLeftLocation. Expected _wxPyFileSystemHandler_p.");
980 #if PYTHON_API_VERSION >= 1009
981 char* tmpPtr
; int tmpSize
;
982 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
983 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
986 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
988 _arg1
= new wxString(tmpPtr
, tmpSize
);
990 if (!PyString_Check(_obj1
)) {
991 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
994 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
998 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
999 _result
= new wxString (wxFileSystemHandler_GetLeftLocation(_arg0
,*_arg1
));
1001 wxPyEndAllowThreads(__tstate
);
1002 if (PyErr_Occurred()) return NULL
;
1004 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
1016 #define wxFileSystemHandler_GetAnchor(_swigobj,_swigarg0) (_swigobj->GetAnchor(_swigarg0))
1017 static PyObject
*_wrap_wxFileSystemHandler_GetAnchor(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1018 PyObject
* _resultobj
;
1020 wxPyFileSystemHandler
* _arg0
;
1022 PyObject
* _argo0
= 0;
1023 PyObject
* _obj1
= 0;
1024 char *_kwnames
[] = { "self","location", NULL
};
1027 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxFileSystemHandler_GetAnchor",_kwnames
,&_argo0
,&_obj1
))
1030 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1031 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyFileSystemHandler_p")) {
1032 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFileSystemHandler_GetAnchor. Expected _wxPyFileSystemHandler_p.");
1037 #if PYTHON_API_VERSION >= 1009
1038 char* tmpPtr
; int tmpSize
;
1039 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
1040 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1043 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
1045 _arg1
= new wxString(tmpPtr
, tmpSize
);
1047 if (!PyString_Check(_obj1
)) {
1048 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1051 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
1055 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1056 _result
= new wxString (wxFileSystemHandler_GetAnchor(_arg0
,*_arg1
));
1058 wxPyEndAllowThreads(__tstate
);
1059 if (PyErr_Occurred()) return NULL
;
1061 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
1073 #define wxFileSystemHandler_GetRightLocation(_swigobj,_swigarg0) (_swigobj->GetRightLocation(_swigarg0))
1074 static PyObject
*_wrap_wxFileSystemHandler_GetRightLocation(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1075 PyObject
* _resultobj
;
1077 wxPyFileSystemHandler
* _arg0
;
1079 PyObject
* _argo0
= 0;
1080 PyObject
* _obj1
= 0;
1081 char *_kwnames
[] = { "self","location", NULL
};
1084 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxFileSystemHandler_GetRightLocation",_kwnames
,&_argo0
,&_obj1
))
1087 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1088 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyFileSystemHandler_p")) {
1089 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFileSystemHandler_GetRightLocation. Expected _wxPyFileSystemHandler_p.");
1094 #if PYTHON_API_VERSION >= 1009
1095 char* tmpPtr
; int tmpSize
;
1096 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
1097 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1100 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
1102 _arg1
= new wxString(tmpPtr
, tmpSize
);
1104 if (!PyString_Check(_obj1
)) {
1105 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1108 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
1112 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1113 _result
= new wxString (wxFileSystemHandler_GetRightLocation(_arg0
,*_arg1
));
1115 wxPyEndAllowThreads(__tstate
);
1116 if (PyErr_Occurred()) return NULL
;
1118 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
1130 #define wxFileSystemHandler_GetMimeTypeFromExt(_swigobj,_swigarg0) (_swigobj->GetMimeTypeFromExt(_swigarg0))
1131 static PyObject
*_wrap_wxFileSystemHandler_GetMimeTypeFromExt(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1132 PyObject
* _resultobj
;
1134 wxPyFileSystemHandler
* _arg0
;
1136 PyObject
* _argo0
= 0;
1137 PyObject
* _obj1
= 0;
1138 char *_kwnames
[] = { "self","location", NULL
};
1141 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxFileSystemHandler_GetMimeTypeFromExt",_kwnames
,&_argo0
,&_obj1
))
1144 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1145 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyFileSystemHandler_p")) {
1146 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFileSystemHandler_GetMimeTypeFromExt. Expected _wxPyFileSystemHandler_p.");
1151 #if PYTHON_API_VERSION >= 1009
1152 char* tmpPtr
; int tmpSize
;
1153 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
1154 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1157 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
1159 _arg1
= new wxString(tmpPtr
, tmpSize
);
1161 if (!PyString_Check(_obj1
)) {
1162 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1165 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
1169 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1170 _result
= new wxString (wxFileSystemHandler_GetMimeTypeFromExt(_arg0
,*_arg1
));
1172 wxPyEndAllowThreads(__tstate
);
1173 if (PyErr_Occurred()) return NULL
;
1175 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
1187 static void *SwigwxFileSystemTowxObject(void *ptr
) {
1190 src
= (wxFileSystem
*) ptr
;
1191 dest
= (wxObject
*) src
;
1192 return (void *) dest
;
1195 #define new_wxFileSystem() (new wxFileSystem())
1196 static PyObject
*_wrap_new_wxFileSystem(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1197 PyObject
* _resultobj
;
1198 wxFileSystem
* _result
;
1199 char *_kwnames
[] = { NULL
};
1203 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,":new_wxFileSystem",_kwnames
))
1206 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1207 _result
= (wxFileSystem
*)new_wxFileSystem();
1209 wxPyEndAllowThreads(__tstate
);
1210 if (PyErr_Occurred()) return NULL
;
1212 SWIG_MakePtr(_ptemp
, (char *) _result
,"_wxFileSystem_p");
1213 _resultobj
= Py_BuildValue("s",_ptemp
);
1216 _resultobj
= Py_None
;
1221 #define wxFileSystem_ChangePathTo(_swigobj,_swigarg0,_swigarg1) (_swigobj->ChangePathTo(_swigarg0,_swigarg1))
1222 static PyObject
*_wrap_wxFileSystem_ChangePathTo(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1223 PyObject
* _resultobj
;
1224 wxFileSystem
* _arg0
;
1226 bool _arg2
= (bool ) FALSE
;
1227 PyObject
* _argo0
= 0;
1228 PyObject
* _obj1
= 0;
1229 int tempbool2
= (int) FALSE
;
1230 char *_kwnames
[] = { "self","location","is_dir", NULL
};
1233 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO|i:wxFileSystem_ChangePathTo",_kwnames
,&_argo0
,&_obj1
,&tempbool2
))
1236 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1237 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxFileSystem_p")) {
1238 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFileSystem_ChangePathTo. Expected _wxFileSystem_p.");
1243 #if PYTHON_API_VERSION >= 1009
1244 char* tmpPtr
; int tmpSize
;
1245 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
1246 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1249 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
1251 _arg1
= new wxString(tmpPtr
, tmpSize
);
1253 if (!PyString_Check(_obj1
)) {
1254 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1257 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
1260 _arg2
= (bool ) tempbool2
;
1262 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1263 wxFileSystem_ChangePathTo(_arg0
,*_arg1
,_arg2
);
1265 wxPyEndAllowThreads(__tstate
);
1266 if (PyErr_Occurred()) return NULL
;
1267 } Py_INCREF(Py_None
);
1268 _resultobj
= Py_None
;
1276 #define wxFileSystem_GetPath(_swigobj) (_swigobj->GetPath())
1277 static PyObject
*_wrap_wxFileSystem_GetPath(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1278 PyObject
* _resultobj
;
1280 wxFileSystem
* _arg0
;
1281 PyObject
* _argo0
= 0;
1282 char *_kwnames
[] = { "self", NULL
};
1285 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxFileSystem_GetPath",_kwnames
,&_argo0
))
1288 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1289 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxFileSystem_p")) {
1290 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFileSystem_GetPath. Expected _wxFileSystem_p.");
1295 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1296 _result
= new wxString (wxFileSystem_GetPath(_arg0
));
1298 wxPyEndAllowThreads(__tstate
);
1299 if (PyErr_Occurred()) return NULL
;
1301 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
1309 #define wxFileSystem_OpenFile(_swigobj,_swigarg0) (_swigobj->OpenFile(_swigarg0))
1310 static PyObject
*_wrap_wxFileSystem_OpenFile(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1311 PyObject
* _resultobj
;
1313 wxFileSystem
* _arg0
;
1315 PyObject
* _argo0
= 0;
1316 PyObject
* _obj1
= 0;
1317 char *_kwnames
[] = { "self","location", NULL
};
1320 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxFileSystem_OpenFile",_kwnames
,&_argo0
,&_obj1
))
1323 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1324 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxFileSystem_p")) {
1325 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFileSystem_OpenFile. Expected _wxFileSystem_p.");
1330 #if PYTHON_API_VERSION >= 1009
1331 char* tmpPtr
; int tmpSize
;
1332 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
1333 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1336 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
1338 _arg1
= new wxString(tmpPtr
, tmpSize
);
1340 if (!PyString_Check(_obj1
)) {
1341 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1344 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
1348 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1349 _result
= (wxFSFile
*)wxFileSystem_OpenFile(_arg0
,*_arg1
);
1351 wxPyEndAllowThreads(__tstate
);
1352 if (PyErr_Occurred()) return NULL
;
1353 }{ _resultobj
= wxPyMake_wxObject(_result
); }
1361 #define wxFileSystem_FindFirst(_swigobj,_swigarg0,_swigarg1) (_swigobj->FindFirst(_swigarg0,_swigarg1))
1362 static PyObject
*_wrap_wxFileSystem_FindFirst(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1363 PyObject
* _resultobj
;
1365 wxFileSystem
* _arg0
;
1367 int _arg2
= (int ) 0;
1368 PyObject
* _argo0
= 0;
1369 PyObject
* _obj1
= 0;
1370 char *_kwnames
[] = { "self","spec","flags", NULL
};
1373 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO|i:wxFileSystem_FindFirst",_kwnames
,&_argo0
,&_obj1
,&_arg2
))
1376 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1377 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxFileSystem_p")) {
1378 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFileSystem_FindFirst. Expected _wxFileSystem_p.");
1383 #if PYTHON_API_VERSION >= 1009
1384 char* tmpPtr
; int tmpSize
;
1385 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
1386 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1389 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
1391 _arg1
= new wxString(tmpPtr
, tmpSize
);
1393 if (!PyString_Check(_obj1
)) {
1394 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1397 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
1401 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1402 _result
= new wxString (wxFileSystem_FindFirst(_arg0
,*_arg1
,_arg2
));
1404 wxPyEndAllowThreads(__tstate
);
1405 if (PyErr_Occurred()) return NULL
;
1407 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
1419 #define wxFileSystem_FindNext(_swigobj) (_swigobj->FindNext())
1420 static PyObject
*_wrap_wxFileSystem_FindNext(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1421 PyObject
* _resultobj
;
1423 wxFileSystem
* _arg0
;
1424 PyObject
* _argo0
= 0;
1425 char *_kwnames
[] = { "self", NULL
};
1428 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxFileSystem_FindNext",_kwnames
,&_argo0
))
1431 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1432 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxFileSystem_p")) {
1433 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFileSystem_FindNext. Expected _wxFileSystem_p.");
1438 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1439 _result
= new wxString (wxFileSystem_FindNext(_arg0
));
1441 wxPyEndAllowThreads(__tstate
);
1442 if (PyErr_Occurred()) return NULL
;
1444 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
1452 static PyObject
*_wrap_wxFileSystem_AddHandler(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1453 PyObject
* _resultobj
;
1454 wxFileSystemHandler
* _arg0
;
1455 PyObject
* _argo0
= 0;
1456 char *_kwnames
[] = { "handler", NULL
};
1459 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxFileSystem_AddHandler",_kwnames
,&_argo0
))
1462 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1463 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxFileSystemHandler_p")) {
1464 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxFileSystem_AddHandler. Expected _wxFileSystemHandler_p.");
1469 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1470 wxFileSystem::AddHandler(_arg0
);
1472 wxPyEndAllowThreads(__tstate
);
1473 if (PyErr_Occurred()) return NULL
;
1474 } Py_INCREF(Py_None
);
1475 _resultobj
= Py_None
;
1479 static PyObject
*_wrap_wxFileSystem_CleanUpHandlers(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1480 PyObject
* _resultobj
;
1481 char *_kwnames
[] = { NULL
};
1484 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,":wxFileSystem_CleanUpHandlers",_kwnames
))
1487 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1488 wxFileSystem::CleanUpHandlers();
1490 wxPyEndAllowThreads(__tstate
);
1491 if (PyErr_Occurred()) return NULL
;
1492 } Py_INCREF(Py_None
);
1493 _resultobj
= Py_None
;
1497 static void *SwigwxInternetFSHandlerTowxFileSystemHandler(void *ptr
) {
1498 wxInternetFSHandler
*src
;
1499 wxFileSystemHandler
*dest
;
1500 src
= (wxInternetFSHandler
*) ptr
;
1501 dest
= (wxFileSystemHandler
*) src
;
1502 return (void *) dest
;
1505 static void *SwigwxInternetFSHandlerTowxObject(void *ptr
) {
1506 wxInternetFSHandler
*src
;
1508 src
= (wxInternetFSHandler
*) ptr
;
1509 dest
= (wxObject
*) src
;
1510 return (void *) dest
;
1513 #define new_wxInternetFSHandler() (new wxInternetFSHandler())
1514 static PyObject
*_wrap_new_wxInternetFSHandler(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1515 PyObject
* _resultobj
;
1516 wxInternetFSHandler
* _result
;
1517 char *_kwnames
[] = { NULL
};
1521 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,":new_wxInternetFSHandler",_kwnames
))
1524 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1525 _result
= (wxInternetFSHandler
*)new_wxInternetFSHandler();
1527 wxPyEndAllowThreads(__tstate
);
1528 if (PyErr_Occurred()) return NULL
;
1530 SWIG_MakePtr(_ptemp
, (char *) _result
,"_wxInternetFSHandler_p");
1531 _resultobj
= Py_BuildValue("s",_ptemp
);
1534 _resultobj
= Py_None
;
1539 #define wxInternetFSHandler_CanOpen(_swigobj,_swigarg0) (_swigobj->CanOpen(_swigarg0))
1540 static PyObject
*_wrap_wxInternetFSHandler_CanOpen(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1541 PyObject
* _resultobj
;
1543 wxInternetFSHandler
* _arg0
;
1545 PyObject
* _argo0
= 0;
1546 PyObject
* _obj1
= 0;
1547 char *_kwnames
[] = { "self","location", NULL
};
1550 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxInternetFSHandler_CanOpen",_kwnames
,&_argo0
,&_obj1
))
1553 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1554 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxInternetFSHandler_p")) {
1555 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxInternetFSHandler_CanOpen. Expected _wxInternetFSHandler_p.");
1560 #if PYTHON_API_VERSION >= 1009
1561 char* tmpPtr
; int tmpSize
;
1562 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
1563 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1566 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
1568 _arg1
= new wxString(tmpPtr
, tmpSize
);
1570 if (!PyString_Check(_obj1
)) {
1571 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1574 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
1578 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1579 _result
= (bool )wxInternetFSHandler_CanOpen(_arg0
,*_arg1
);
1581 wxPyEndAllowThreads(__tstate
);
1582 if (PyErr_Occurred()) return NULL
;
1583 } _resultobj
= Py_BuildValue("i",_result
);
1591 #define wxInternetFSHandler_OpenFile(_swigobj,_swigarg0,_swigarg1) (_swigobj->OpenFile(_swigarg0,_swigarg1))
1592 static PyObject
*_wrap_wxInternetFSHandler_OpenFile(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1593 PyObject
* _resultobj
;
1595 wxInternetFSHandler
* _arg0
;
1596 wxFileSystem
* _arg1
;
1598 PyObject
* _argo0
= 0;
1599 PyObject
* _argo1
= 0;
1600 PyObject
* _obj2
= 0;
1601 char *_kwnames
[] = { "self","fs","location", NULL
};
1604 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OOO:wxInternetFSHandler_OpenFile",_kwnames
,&_argo0
,&_argo1
,&_obj2
))
1607 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1608 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxInternetFSHandler_p")) {
1609 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxInternetFSHandler_OpenFile. Expected _wxInternetFSHandler_p.");
1614 if (_argo1
== Py_None
) { _arg1
= NULL
; }
1615 else if (SWIG_GetPtrObj(_argo1
,(void **) &_arg1
,"_wxFileSystem_p")) {
1616 PyErr_SetString(PyExc_TypeError
,"Type error in argument 2 of wxInternetFSHandler_OpenFile. Expected _wxFileSystem_p.");
1621 #if PYTHON_API_VERSION >= 1009
1622 char* tmpPtr
; int tmpSize
;
1623 if (!PyString_Check(_obj2
) && !PyUnicode_Check(_obj2
)) {
1624 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1627 if (PyString_AsStringAndSize(_obj2
, &tmpPtr
, &tmpSize
) == -1)
1629 _arg2
= new wxString(tmpPtr
, tmpSize
);
1631 if (!PyString_Check(_obj2
)) {
1632 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1635 _arg2
= new wxString(PyString_AS_STRING(_obj2
), PyString_GET_SIZE(_obj2
));
1639 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1640 _result
= (wxFSFile
*)wxInternetFSHandler_OpenFile(_arg0
,*_arg1
,*_arg2
);
1642 wxPyEndAllowThreads(__tstate
);
1643 if (PyErr_Occurred()) return NULL
;
1644 }{ _resultobj
= wxPyMake_wxObject(_result
); }
1652 static void *SwigwxZipFSHandlerTowxFileSystemHandler(void *ptr
) {
1653 wxZipFSHandler
*src
;
1654 wxFileSystemHandler
*dest
;
1655 src
= (wxZipFSHandler
*) ptr
;
1656 dest
= (wxFileSystemHandler
*) src
;
1657 return (void *) dest
;
1660 static void *SwigwxZipFSHandlerTowxObject(void *ptr
) {
1661 wxZipFSHandler
*src
;
1663 src
= (wxZipFSHandler
*) ptr
;
1664 dest
= (wxObject
*) src
;
1665 return (void *) dest
;
1668 #define new_wxZipFSHandler() (new wxZipFSHandler())
1669 static PyObject
*_wrap_new_wxZipFSHandler(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1670 PyObject
* _resultobj
;
1671 wxZipFSHandler
* _result
;
1672 char *_kwnames
[] = { NULL
};
1676 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,":new_wxZipFSHandler",_kwnames
))
1679 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1680 _result
= (wxZipFSHandler
*)new_wxZipFSHandler();
1682 wxPyEndAllowThreads(__tstate
);
1683 if (PyErr_Occurred()) return NULL
;
1685 SWIG_MakePtr(_ptemp
, (char *) _result
,"_wxZipFSHandler_p");
1686 _resultobj
= Py_BuildValue("s",_ptemp
);
1689 _resultobj
= Py_None
;
1694 #define wxZipFSHandler_CanOpen(_swigobj,_swigarg0) (_swigobj->CanOpen(_swigarg0))
1695 static PyObject
*_wrap_wxZipFSHandler_CanOpen(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1696 PyObject
* _resultobj
;
1698 wxZipFSHandler
* _arg0
;
1700 PyObject
* _argo0
= 0;
1701 PyObject
* _obj1
= 0;
1702 char *_kwnames
[] = { "self","location", NULL
};
1705 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxZipFSHandler_CanOpen",_kwnames
,&_argo0
,&_obj1
))
1708 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1709 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxZipFSHandler_p")) {
1710 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxZipFSHandler_CanOpen. Expected _wxZipFSHandler_p.");
1715 #if PYTHON_API_VERSION >= 1009
1716 char* tmpPtr
; int tmpSize
;
1717 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
1718 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1721 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
1723 _arg1
= new wxString(tmpPtr
, tmpSize
);
1725 if (!PyString_Check(_obj1
)) {
1726 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1729 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
1733 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1734 _result
= (bool )wxZipFSHandler_CanOpen(_arg0
,*_arg1
);
1736 wxPyEndAllowThreads(__tstate
);
1737 if (PyErr_Occurred()) return NULL
;
1738 } _resultobj
= Py_BuildValue("i",_result
);
1746 #define wxZipFSHandler_OpenFile(_swigobj,_swigarg0,_swigarg1) (_swigobj->OpenFile(_swigarg0,_swigarg1))
1747 static PyObject
*_wrap_wxZipFSHandler_OpenFile(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1748 PyObject
* _resultobj
;
1750 wxZipFSHandler
* _arg0
;
1751 wxFileSystem
* _arg1
;
1753 PyObject
* _argo0
= 0;
1754 PyObject
* _argo1
= 0;
1755 PyObject
* _obj2
= 0;
1756 char *_kwnames
[] = { "self","fs","location", NULL
};
1759 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OOO:wxZipFSHandler_OpenFile",_kwnames
,&_argo0
,&_argo1
,&_obj2
))
1762 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1763 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxZipFSHandler_p")) {
1764 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxZipFSHandler_OpenFile. Expected _wxZipFSHandler_p.");
1769 if (_argo1
== Py_None
) { _arg1
= NULL
; }
1770 else if (SWIG_GetPtrObj(_argo1
,(void **) &_arg1
,"_wxFileSystem_p")) {
1771 PyErr_SetString(PyExc_TypeError
,"Type error in argument 2 of wxZipFSHandler_OpenFile. Expected _wxFileSystem_p.");
1776 #if PYTHON_API_VERSION >= 1009
1777 char* tmpPtr
; int tmpSize
;
1778 if (!PyString_Check(_obj2
) && !PyUnicode_Check(_obj2
)) {
1779 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1782 if (PyString_AsStringAndSize(_obj2
, &tmpPtr
, &tmpSize
) == -1)
1784 _arg2
= new wxString(tmpPtr
, tmpSize
);
1786 if (!PyString_Check(_obj2
)) {
1787 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1790 _arg2
= new wxString(PyString_AS_STRING(_obj2
), PyString_GET_SIZE(_obj2
));
1794 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1795 _result
= (wxFSFile
*)wxZipFSHandler_OpenFile(_arg0
,*_arg1
,*_arg2
);
1797 wxPyEndAllowThreads(__tstate
);
1798 if (PyErr_Occurred()) return NULL
;
1799 }{ _resultobj
= wxPyMake_wxObject(_result
); }
1807 #define wxZipFSHandler_FindFirst(_swigobj,_swigarg0,_swigarg1) (_swigobj->FindFirst(_swigarg0,_swigarg1))
1808 static PyObject
*_wrap_wxZipFSHandler_FindFirst(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1809 PyObject
* _resultobj
;
1811 wxZipFSHandler
* _arg0
;
1813 int _arg2
= (int ) 0;
1814 PyObject
* _argo0
= 0;
1815 PyObject
* _obj1
= 0;
1816 char *_kwnames
[] = { "self","spec","flags", NULL
};
1819 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO|i:wxZipFSHandler_FindFirst",_kwnames
,&_argo0
,&_obj1
,&_arg2
))
1822 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1823 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxZipFSHandler_p")) {
1824 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxZipFSHandler_FindFirst. Expected _wxZipFSHandler_p.");
1829 #if PYTHON_API_VERSION >= 1009
1830 char* tmpPtr
; int tmpSize
;
1831 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
1832 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1835 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
1837 _arg1
= new wxString(tmpPtr
, tmpSize
);
1839 if (!PyString_Check(_obj1
)) {
1840 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1843 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
1847 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1848 _result
= new wxString (wxZipFSHandler_FindFirst(_arg0
,*_arg1
,_arg2
));
1850 wxPyEndAllowThreads(__tstate
);
1851 if (PyErr_Occurred()) return NULL
;
1853 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
1865 #define wxZipFSHandler_FindNext(_swigobj) (_swigobj->FindNext())
1866 static PyObject
*_wrap_wxZipFSHandler_FindNext(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1867 PyObject
* _resultobj
;
1869 wxZipFSHandler
* _arg0
;
1870 PyObject
* _argo0
= 0;
1871 char *_kwnames
[] = { "self", NULL
};
1874 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxZipFSHandler_FindNext",_kwnames
,&_argo0
))
1877 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1878 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxZipFSHandler_p")) {
1879 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxZipFSHandler_FindNext. Expected _wxZipFSHandler_p.");
1884 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1885 _result
= new wxString (wxZipFSHandler_FindNext(_arg0
));
1887 wxPyEndAllowThreads(__tstate
);
1888 if (PyErr_Occurred()) return NULL
;
1890 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
1898 static void *SwigwxMemoryFSHandlerTowxFileSystemHandler(void *ptr
) {
1899 wxMemoryFSHandler
*src
;
1900 wxFileSystemHandler
*dest
;
1901 src
= (wxMemoryFSHandler
*) ptr
;
1902 dest
= (wxFileSystemHandler
*) src
;
1903 return (void *) dest
;
1906 static void *SwigwxMemoryFSHandlerTowxObject(void *ptr
) {
1907 wxMemoryFSHandler
*src
;
1909 src
= (wxMemoryFSHandler
*) ptr
;
1910 dest
= (wxObject
*) src
;
1911 return (void *) dest
;
1914 #define new_wxMemoryFSHandler() (new wxMemoryFSHandler())
1915 static PyObject
*_wrap_new_wxMemoryFSHandler(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1916 PyObject
* _resultobj
;
1917 wxMemoryFSHandler
* _result
;
1918 char *_kwnames
[] = { NULL
};
1922 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,":new_wxMemoryFSHandler",_kwnames
))
1925 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1926 _result
= (wxMemoryFSHandler
*)new_wxMemoryFSHandler();
1928 wxPyEndAllowThreads(__tstate
);
1929 if (PyErr_Occurred()) return NULL
;
1931 SWIG_MakePtr(_ptemp
, (char *) _result
,"_wxMemoryFSHandler_p");
1932 _resultobj
= Py_BuildValue("s",_ptemp
);
1935 _resultobj
= Py_None
;
1940 static PyObject
*_wrap_wxMemoryFSHandler_RemoveFile(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1941 PyObject
* _resultobj
;
1943 PyObject
* _obj0
= 0;
1944 char *_kwnames
[] = { "filename", NULL
};
1947 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxMemoryFSHandler_RemoveFile",_kwnames
,&_obj0
))
1950 #if PYTHON_API_VERSION >= 1009
1951 char* tmpPtr
; int tmpSize
;
1952 if (!PyString_Check(_obj0
) && !PyUnicode_Check(_obj0
)) {
1953 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1956 if (PyString_AsStringAndSize(_obj0
, &tmpPtr
, &tmpSize
) == -1)
1958 _arg0
= new wxString(tmpPtr
, tmpSize
);
1960 if (!PyString_Check(_obj0
)) {
1961 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1964 _arg0
= new wxString(PyString_AS_STRING(_obj0
), PyString_GET_SIZE(_obj0
));
1968 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
1969 wxMemoryFSHandler::RemoveFile(*_arg0
);
1971 wxPyEndAllowThreads(__tstate
);
1972 if (PyErr_Occurred()) return NULL
;
1973 } Py_INCREF(Py_None
);
1974 _resultobj
= Py_None
;
1982 #define wxMemoryFSHandler_CanOpen(_swigobj,_swigarg0) (_swigobj->CanOpen(_swigarg0))
1983 static PyObject
*_wrap_wxMemoryFSHandler_CanOpen(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1984 PyObject
* _resultobj
;
1986 wxMemoryFSHandler
* _arg0
;
1988 PyObject
* _argo0
= 0;
1989 PyObject
* _obj1
= 0;
1990 char *_kwnames
[] = { "self","location", NULL
};
1993 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxMemoryFSHandler_CanOpen",_kwnames
,&_argo0
,&_obj1
))
1996 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1997 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxMemoryFSHandler_p")) {
1998 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxMemoryFSHandler_CanOpen. Expected _wxMemoryFSHandler_p.");
2003 #if PYTHON_API_VERSION >= 1009
2004 char* tmpPtr
; int tmpSize
;
2005 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
2006 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
2009 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
2011 _arg1
= new wxString(tmpPtr
, tmpSize
);
2013 if (!PyString_Check(_obj1
)) {
2014 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
2017 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
2021 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2022 _result
= (bool )wxMemoryFSHandler_CanOpen(_arg0
,*_arg1
);
2024 wxPyEndAllowThreads(__tstate
);
2025 if (PyErr_Occurred()) return NULL
;
2026 } _resultobj
= Py_BuildValue("i",_result
);
2034 #define wxMemoryFSHandler_OpenFile(_swigobj,_swigarg0,_swigarg1) (_swigobj->OpenFile(_swigarg0,_swigarg1))
2035 static PyObject
*_wrap_wxMemoryFSHandler_OpenFile(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2036 PyObject
* _resultobj
;
2038 wxMemoryFSHandler
* _arg0
;
2039 wxFileSystem
* _arg1
;
2041 PyObject
* _argo0
= 0;
2042 PyObject
* _argo1
= 0;
2043 PyObject
* _obj2
= 0;
2044 char *_kwnames
[] = { "self","fs","location", NULL
};
2047 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OOO:wxMemoryFSHandler_OpenFile",_kwnames
,&_argo0
,&_argo1
,&_obj2
))
2050 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2051 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxMemoryFSHandler_p")) {
2052 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxMemoryFSHandler_OpenFile. Expected _wxMemoryFSHandler_p.");
2057 if (_argo1
== Py_None
) { _arg1
= NULL
; }
2058 else if (SWIG_GetPtrObj(_argo1
,(void **) &_arg1
,"_wxFileSystem_p")) {
2059 PyErr_SetString(PyExc_TypeError
,"Type error in argument 2 of wxMemoryFSHandler_OpenFile. Expected _wxFileSystem_p.");
2064 #if PYTHON_API_VERSION >= 1009
2065 char* tmpPtr
; int tmpSize
;
2066 if (!PyString_Check(_obj2
) && !PyUnicode_Check(_obj2
)) {
2067 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
2070 if (PyString_AsStringAndSize(_obj2
, &tmpPtr
, &tmpSize
) == -1)
2072 _arg2
= new wxString(tmpPtr
, tmpSize
);
2074 if (!PyString_Check(_obj2
)) {
2075 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
2078 _arg2
= new wxString(PyString_AS_STRING(_obj2
), PyString_GET_SIZE(_obj2
));
2082 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2083 _result
= (wxFSFile
*)wxMemoryFSHandler_OpenFile(_arg0
,*_arg1
,*_arg2
);
2085 wxPyEndAllowThreads(__tstate
);
2086 if (PyErr_Occurred()) return NULL
;
2087 }{ _resultobj
= wxPyMake_wxObject(_result
); }
2095 #define wxMemoryFSHandler_FindFirst(_swigobj,_swigarg0,_swigarg1) (_swigobj->FindFirst(_swigarg0,_swigarg1))
2096 static PyObject
*_wrap_wxMemoryFSHandler_FindFirst(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2097 PyObject
* _resultobj
;
2099 wxMemoryFSHandler
* _arg0
;
2101 int _arg2
= (int ) 0;
2102 PyObject
* _argo0
= 0;
2103 PyObject
* _obj1
= 0;
2104 char *_kwnames
[] = { "self","spec","flags", NULL
};
2107 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO|i:wxMemoryFSHandler_FindFirst",_kwnames
,&_argo0
,&_obj1
,&_arg2
))
2110 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2111 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxMemoryFSHandler_p")) {
2112 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxMemoryFSHandler_FindFirst. Expected _wxMemoryFSHandler_p.");
2117 #if PYTHON_API_VERSION >= 1009
2118 char* tmpPtr
; int tmpSize
;
2119 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
2120 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
2123 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
2125 _arg1
= new wxString(tmpPtr
, tmpSize
);
2127 if (!PyString_Check(_obj1
)) {
2128 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
2131 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
2135 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2136 _result
= new wxString (wxMemoryFSHandler_FindFirst(_arg0
,*_arg1
,_arg2
));
2138 wxPyEndAllowThreads(__tstate
);
2139 if (PyErr_Occurred()) return NULL
;
2141 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
2153 #define wxMemoryFSHandler_FindNext(_swigobj) (_swigobj->FindNext())
2154 static PyObject
*_wrap_wxMemoryFSHandler_FindNext(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2155 PyObject
* _resultobj
;
2157 wxMemoryFSHandler
* _arg0
;
2158 PyObject
* _argo0
= 0;
2159 char *_kwnames
[] = { "self", NULL
};
2162 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxMemoryFSHandler_FindNext",_kwnames
,&_argo0
))
2165 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2166 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxMemoryFSHandler_p")) {
2167 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxMemoryFSHandler_FindNext. Expected _wxMemoryFSHandler_p.");
2172 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2173 _result
= new wxString (wxMemoryFSHandler_FindNext(_arg0
));
2175 wxPyEndAllowThreads(__tstate
);
2176 if (PyErr_Occurred()) return NULL
;
2178 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
2186 static PyMethodDef filesyscMethods
[] = {
2187 { "wxMemoryFSHandler_FindNext", (PyCFunction
) _wrap_wxMemoryFSHandler_FindNext
, METH_VARARGS
| METH_KEYWORDS
},
2188 { "wxMemoryFSHandler_FindFirst", (PyCFunction
) _wrap_wxMemoryFSHandler_FindFirst
, METH_VARARGS
| METH_KEYWORDS
},
2189 { "wxMemoryFSHandler_OpenFile", (PyCFunction
) _wrap_wxMemoryFSHandler_OpenFile
, METH_VARARGS
| METH_KEYWORDS
},
2190 { "wxMemoryFSHandler_CanOpen", (PyCFunction
) _wrap_wxMemoryFSHandler_CanOpen
, METH_VARARGS
| METH_KEYWORDS
},
2191 { "wxMemoryFSHandler_RemoveFile", (PyCFunction
) _wrap_wxMemoryFSHandler_RemoveFile
, METH_VARARGS
| METH_KEYWORDS
},
2192 { "new_wxMemoryFSHandler", (PyCFunction
) _wrap_new_wxMemoryFSHandler
, METH_VARARGS
| METH_KEYWORDS
},
2193 { "wxZipFSHandler_FindNext", (PyCFunction
) _wrap_wxZipFSHandler_FindNext
, METH_VARARGS
| METH_KEYWORDS
},
2194 { "wxZipFSHandler_FindFirst", (PyCFunction
) _wrap_wxZipFSHandler_FindFirst
, METH_VARARGS
| METH_KEYWORDS
},
2195 { "wxZipFSHandler_OpenFile", (PyCFunction
) _wrap_wxZipFSHandler_OpenFile
, METH_VARARGS
| METH_KEYWORDS
},
2196 { "wxZipFSHandler_CanOpen", (PyCFunction
) _wrap_wxZipFSHandler_CanOpen
, METH_VARARGS
| METH_KEYWORDS
},
2197 { "new_wxZipFSHandler", (PyCFunction
) _wrap_new_wxZipFSHandler
, METH_VARARGS
| METH_KEYWORDS
},
2198 { "wxInternetFSHandler_OpenFile", (PyCFunction
) _wrap_wxInternetFSHandler_OpenFile
, METH_VARARGS
| METH_KEYWORDS
},
2199 { "wxInternetFSHandler_CanOpen", (PyCFunction
) _wrap_wxInternetFSHandler_CanOpen
, METH_VARARGS
| METH_KEYWORDS
},
2200 { "new_wxInternetFSHandler", (PyCFunction
) _wrap_new_wxInternetFSHandler
, METH_VARARGS
| METH_KEYWORDS
},
2201 { "wxFileSystem_CleanUpHandlers", (PyCFunction
) _wrap_wxFileSystem_CleanUpHandlers
, METH_VARARGS
| METH_KEYWORDS
},
2202 { "wxFileSystem_AddHandler", (PyCFunction
) _wrap_wxFileSystem_AddHandler
, METH_VARARGS
| METH_KEYWORDS
},
2203 { "wxFileSystem_FindNext", (PyCFunction
) _wrap_wxFileSystem_FindNext
, METH_VARARGS
| METH_KEYWORDS
},
2204 { "wxFileSystem_FindFirst", (PyCFunction
) _wrap_wxFileSystem_FindFirst
, METH_VARARGS
| METH_KEYWORDS
},
2205 { "wxFileSystem_OpenFile", (PyCFunction
) _wrap_wxFileSystem_OpenFile
, METH_VARARGS
| METH_KEYWORDS
},
2206 { "wxFileSystem_GetPath", (PyCFunction
) _wrap_wxFileSystem_GetPath
, METH_VARARGS
| METH_KEYWORDS
},
2207 { "wxFileSystem_ChangePathTo", (PyCFunction
) _wrap_wxFileSystem_ChangePathTo
, METH_VARARGS
| METH_KEYWORDS
},
2208 { "new_wxFileSystem", (PyCFunction
) _wrap_new_wxFileSystem
, METH_VARARGS
| METH_KEYWORDS
},
2209 { "wxFileSystemHandler_GetMimeTypeFromExt", (PyCFunction
) _wrap_wxFileSystemHandler_GetMimeTypeFromExt
, METH_VARARGS
| METH_KEYWORDS
},
2210 { "wxFileSystemHandler_GetRightLocation", (PyCFunction
) _wrap_wxFileSystemHandler_GetRightLocation
, METH_VARARGS
| METH_KEYWORDS
},
2211 { "wxFileSystemHandler_GetAnchor", (PyCFunction
) _wrap_wxFileSystemHandler_GetAnchor
, METH_VARARGS
| METH_KEYWORDS
},
2212 { "wxFileSystemHandler_GetLeftLocation", (PyCFunction
) _wrap_wxFileSystemHandler_GetLeftLocation
, METH_VARARGS
| METH_KEYWORDS
},
2213 { "wxFileSystemHandler_GetProtocol", (PyCFunction
) _wrap_wxFileSystemHandler_GetProtocol
, METH_VARARGS
| METH_KEYWORDS
},
2214 { "wxFileSystemHandler_FindNext", (PyCFunction
) _wrap_wxFileSystemHandler_FindNext
, METH_VARARGS
| METH_KEYWORDS
},
2215 { "wxFileSystemHandler_FindFirst", (PyCFunction
) _wrap_wxFileSystemHandler_FindFirst
, METH_VARARGS
| METH_KEYWORDS
},
2216 { "wxFileSystemHandler_OpenFile", (PyCFunction
) _wrap_wxFileSystemHandler_OpenFile
, METH_VARARGS
| METH_KEYWORDS
},
2217 { "wxFileSystemHandler_CanOpen", (PyCFunction
) _wrap_wxFileSystemHandler_CanOpen
, METH_VARARGS
| METH_KEYWORDS
},
2218 { "wxFileSystemHandler__setCallbackInfo", (PyCFunction
) _wrap_wxFileSystemHandler__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
},
2219 { "new_wxFileSystemHandler", (PyCFunction
) _wrap_new_wxFileSystemHandler
, METH_VARARGS
| METH_KEYWORDS
},
2220 { "wxFSFile_GetModificationTime", (PyCFunction
) _wrap_wxFSFile_GetModificationTime
, METH_VARARGS
| METH_KEYWORDS
},
2221 { "wxFSFile_GetAnchor", (PyCFunction
) _wrap_wxFSFile_GetAnchor
, METH_VARARGS
| METH_KEYWORDS
},
2222 { "wxFSFile_GetLocation", (PyCFunction
) _wrap_wxFSFile_GetLocation
, METH_VARARGS
| METH_KEYWORDS
},
2223 { "wxFSFile_GetMimeType", (PyCFunction
) _wrap_wxFSFile_GetMimeType
, METH_VARARGS
| METH_KEYWORDS
},
2224 { "wxFSFile_GetStream", (PyCFunction
) _wrap_wxFSFile_GetStream
, METH_VARARGS
| METH_KEYWORDS
},
2225 { "new_wxFSFile", (PyCFunction
) _wrap_new_wxFSFile
, METH_VARARGS
| METH_KEYWORDS
},
2226 { "__wxMemoryFSHandler_AddFile_Data", (PyCFunction
) _wrap___wxMemoryFSHandler_AddFile_Data
, METH_VARARGS
| METH_KEYWORDS
},
2227 { "__wxMemoryFSHandler_AddFile_wxBitmap", (PyCFunction
) _wrap___wxMemoryFSHandler_AddFile_wxBitmap
, METH_VARARGS
| METH_KEYWORDS
},
2228 { "__wxMemoryFSHandler_AddFile_wxImage", (PyCFunction
) _wrap___wxMemoryFSHandler_AddFile_wxImage
, METH_VARARGS
| METH_KEYWORDS
},
2235 * This table is used by the pointer type-checker
2237 static struct { char *n1
; char *n2
; void *(*pcnv
)(void *); } _swig_mapping
[] = {
2238 { "_signed_long","_long",0},
2239 { "_wxPrintQuality","_wxCoord",0},
2240 { "_wxPrintQuality","_int",0},
2241 { "_wxPrintQuality","_signed_int",0},
2242 { "_wxPrintQuality","_unsigned_int",0},
2243 { "_wxPrintQuality","_wxWindowID",0},
2244 { "_wxPrintQuality","_uint",0},
2245 { "_wxPrintQuality","_EBool",0},
2246 { "_wxPrintQuality","_size_t",0},
2247 { "_wxPrintQuality","_time_t",0},
2248 { "_byte","_unsigned_char",0},
2249 { "_long","_unsigned_long",0},
2250 { "_long","_signed_long",0},
2251 { "_size_t","_wxCoord",0},
2252 { "_size_t","_wxPrintQuality",0},
2253 { "_size_t","_time_t",0},
2254 { "_size_t","_unsigned_int",0},
2255 { "_size_t","_int",0},
2256 { "_size_t","_wxWindowID",0},
2257 { "_size_t","_uint",0},
2258 { "_uint","_wxCoord",0},
2259 { "_uint","_wxPrintQuality",0},
2260 { "_uint","_time_t",0},
2261 { "_uint","_size_t",0},
2262 { "_uint","_unsigned_int",0},
2263 { "_uint","_int",0},
2264 { "_uint","_wxWindowID",0},
2265 { "_wxChar","_char",0},
2266 { "_char","_wxChar",0},
2267 { "_struct_wxNativeFontInfo","_wxNativeFontInfo",0},
2268 { "_EBool","_wxCoord",0},
2269 { "_EBool","_wxPrintQuality",0},
2270 { "_EBool","_signed_int",0},
2271 { "_EBool","_int",0},
2272 { "_EBool","_wxWindowID",0},
2273 { "_unsigned_long","_long",0},
2274 { "_wxNativeFontInfo","_struct_wxNativeFontInfo",0},
2275 { "_signed_int","_wxCoord",0},
2276 { "_signed_int","_wxPrintQuality",0},
2277 { "_signed_int","_EBool",0},
2278 { "_signed_int","_wxWindowID",0},
2279 { "_signed_int","_int",0},
2280 { "_WXTYPE","_wxDateTime_t",0},
2281 { "_WXTYPE","_short",0},
2282 { "_WXTYPE","_signed_short",0},
2283 { "_WXTYPE","_unsigned_short",0},
2284 { "_unsigned_short","_wxDateTime_t",0},
2285 { "_unsigned_short","_WXTYPE",0},
2286 { "_unsigned_short","_short",0},
2287 { "_wxObject","_wxMemoryFSHandler",SwigwxMemoryFSHandlerTowxObject
},
2288 { "_wxObject","_wxZipFSHandler",SwigwxZipFSHandlerTowxObject
},
2289 { "_wxObject","_wxInternetFSHandler",SwigwxInternetFSHandlerTowxObject
},
2290 { "_wxObject","_wxFileSystem",SwigwxFileSystemTowxObject
},
2291 { "_wxObject","_wxPyFileSystemHandler",SwigwxPyFileSystemHandlerTowxObject
},
2292 { "_wxObject","_wxFileSystemHandler",SwigwxFileSystemHandlerTowxObject
},
2293 { "_wxObject","_wxFSFile",SwigwxFSFileTowxObject
},
2294 { "_signed_short","_WXTYPE",0},
2295 { "_signed_short","_short",0},
2296 { "_unsigned_char","_byte",0},
2297 { "_unsigned_int","_wxCoord",0},
2298 { "_unsigned_int","_wxPrintQuality",0},
2299 { "_unsigned_int","_time_t",0},
2300 { "_unsigned_int","_size_t",0},
2301 { "_unsigned_int","_uint",0},
2302 { "_unsigned_int","_wxWindowID",0},
2303 { "_unsigned_int","_int",0},
2304 { "_short","_wxDateTime_t",0},
2305 { "_short","_WXTYPE",0},
2306 { "_short","_unsigned_short",0},
2307 { "_short","_signed_short",0},
2308 { "_wxFileSystemHandler","_wxMemoryFSHandler",SwigwxMemoryFSHandlerTowxFileSystemHandler
},
2309 { "_wxFileSystemHandler","_wxZipFSHandler",SwigwxZipFSHandlerTowxFileSystemHandler
},
2310 { "_wxFileSystemHandler","_wxInternetFSHandler",SwigwxInternetFSHandlerTowxFileSystemHandler
},
2311 { "_wxFileSystemHandler","_wxPyFileSystemHandler",SwigwxPyFileSystemHandlerTowxFileSystemHandler
},
2312 { "_wxWindowID","_wxCoord",0},
2313 { "_wxWindowID","_wxPrintQuality",0},
2314 { "_wxWindowID","_time_t",0},
2315 { "_wxWindowID","_size_t",0},
2316 { "_wxWindowID","_EBool",0},
2317 { "_wxWindowID","_uint",0},
2318 { "_wxWindowID","_int",0},
2319 { "_wxWindowID","_signed_int",0},
2320 { "_wxWindowID","_unsigned_int",0},
2321 { "_int","_wxCoord",0},
2322 { "_int","_wxPrintQuality",0},
2323 { "_int","_time_t",0},
2324 { "_int","_size_t",0},
2325 { "_int","_EBool",0},
2326 { "_int","_uint",0},
2327 { "_int","_wxWindowID",0},
2328 { "_int","_unsigned_int",0},
2329 { "_int","_signed_int",0},
2330 { "_wxDateTime_t","_unsigned_short",0},
2331 { "_wxDateTime_t","_short",0},
2332 { "_wxDateTime_t","_WXTYPE",0},
2333 { "_time_t","_wxCoord",0},
2334 { "_time_t","_wxPrintQuality",0},
2335 { "_time_t","_unsigned_int",0},
2336 { "_time_t","_int",0},
2337 { "_time_t","_wxWindowID",0},
2338 { "_time_t","_uint",0},
2339 { "_time_t","_size_t",0},
2340 { "_wxCoord","_int",0},
2341 { "_wxCoord","_signed_int",0},
2342 { "_wxCoord","_unsigned_int",0},
2343 { "_wxCoord","_wxWindowID",0},
2344 { "_wxCoord","_uint",0},
2345 { "_wxCoord","_EBool",0},
2346 { "_wxCoord","_size_t",0},
2347 { "_wxCoord","_time_t",0},
2348 { "_wxCoord","_wxPrintQuality",0},
2351 static PyObject
*SWIG_globals
;
2355 SWIGEXPORT(void) initfilesysc() {
2357 SWIG_globals
= SWIG_newvarlink();
2358 m
= Py_InitModule("filesysc", filesyscMethods
);
2359 d
= PyModule_GetDict(m
);
2361 wxPyPtrTypeMap_Add("wxFileSystemHandler", "wxPyFileSystemHandler");
2364 for (i
= 0; _swig_mapping
[i
].n1
; i
++)
2365 SWIG_RegisterMapping(_swig_mapping
[i
].n1
,_swig_mapping
[i
].n2
,_swig_mapping
[i
].pcnv
);