X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0122b7e3fcfd78f879470053c91a60e3c66537a3..0d1dff0172e94487c4aa2d830c714f93be73c7ec:/wxPython/src/my_typemaps.i diff --git a/wxPython/src/my_typemaps.i b/wxPython/src/my_typemaps.i index 1ccbfe527c..f27dc7dc9a 100644 --- a/wxPython/src/my_typemaps.i +++ b/wxPython/src/my_typemaps.i @@ -12,12 +12,12 @@ //--------------------------------------------------------------------------- -// Tell SWIG to wrap all the wrappers with Python's thread macros +// Tell SWIG to wrap all the wrappers with our thread protection %except(python) { - wxPy_BEGIN_ALLOW_THREADS; + PyThreadState* __tstate = wxPyBeginAllowThreads(); $function - wxPy_END_ALLOW_THREADS; + wxPyEndAllowThreads(__tstate); if (PyErr_Occurred()) return NULL; } @@ -269,6 +269,54 @@ return NULL; } +//--------------------------------------------------------------------------- +// Typemap for wxArrayString from Python sequence objects + +%typemap(python,in) wxArrayString& { + if (! PySequence_Check($source)) { + PyErr_SetString(PyExc_TypeError, "Sequence of strings expected."); + return NULL; + } + $target = new wxArrayString; + int i, len=PySequence_Length($source); + for (i=0; iAdd(PyString_AsString(str)); + Py_DECREF(item); + Py_DECREF(str); + } +} + +%typemap(python, freearg) wxArrayString& { + if ($target) + delete $source; +} + +//--------------------------------------------------------------------------- +// Typemap for wxArrayInt from Python sequence objects + +%typemap(python,in) wxArrayInt& { + if (! PySequence_Check($source)) { + PyErr_SetString(PyExc_TypeError, "Sequence of integers expected."); + return NULL; + } + $target = new wxArrayInt; + int i, len=PySequence_Length($source); + for (i=0; iAdd(PyInt_AS_LONG(number)); + Py_DECREF(item); + Py_DECREF(number); + } +} + +%typemap(python, freearg) wxArrayInt& { + if ($target) + delete $source; +} + //--------------------------------------------------------------------------- // Map T_OUTPUTs for floats to return ints. @@ -289,6 +337,23 @@ $target = t_output_helper($target, o); } + +%typemap(python,ignore) bool *T_OUTPUT(int temp) +{ + $target = (bool*)&temp; +} + +%typemap(python,argout) bool *T_OUTPUT +{ + PyObject *o; + o = PyInt_FromLong((long) (*$source)); + $target = t_output_helper($target, o); +} + + +%typemap(python,ignore) bool *OUTPUT = bool *T_OUTPUT; +%typemap(python,argout) bool *OUTPUT = bool *T_OUTPUT; + //--------------------------------------------------------------------------- // Typemaps to convert return values that are base class pointers // to the real derived type, if possible. See wxPyMake_wxObject in @@ -308,7 +373,6 @@ %typemap(python, out) wxMouseEvent* { $target = wxPyMake_wxObject($source); } %typemap(python, out) wxObject* { $target = wxPyMake_wxObject($source); } %typemap(python, out) wxPyPrintout* { $target = wxPyMake_wxObject($source); } -%typemap(python, out) wxSizer* { $target = wxPyMake_wxObject($source); } %typemap(python, out) wxToolBarToolBase* { $target = wxPyMake_wxObject($source); } %typemap(python, out) wxToolTip* { $target = wxPyMake_wxObject($source); } @@ -327,6 +391,9 @@ %typemap(python, out) wxToolBar* { $target = wxPyMake_wxObject($source); } %typemap(python, out) wxToolBarBase* { $target = wxPyMake_wxObject($source); } %typemap(python, out) wxWindow* { $target = wxPyMake_wxObject($source); } +%typemap(python, out) wxHtmlWindow* { $target = wxPyMake_wxObject($source); } + +%typemap(python, out) wxSizer* { $target = wxPyMake_wxSizer($source); } //%typemap(python, out) wxHtmlCell* { $target = wxPyMake_wxObject($source); }