X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7c379a20cf2c4dfe8c0d4eecd4c7610a6ae6d99d..7ea515abfb0211078d9ffcd4420ef0b53f3fcabe:/wxPython/src/my_typemaps.i diff --git a/wxPython/src/my_typemaps.i b/wxPython/src/my_typemaps.i index 91fb0ada96..e20d37cba3 100644 --- a/wxPython/src/my_typemaps.i +++ b/wxPython/src/my_typemaps.i @@ -168,7 +168,7 @@ $function %typemap(python, out) wxString { #if wxUSE_UNICODE - $target = PyUnicode_FromUnicode($source->c_str(), $source->Len()); + $target = PyUnicode_FromWideChar($source->c_str(), $source->Len()); #else $target = PyString_FromStringAndSize($source->c_str(), $source->Len()); #endif @@ -180,7 +180,7 @@ $function %typemap(python, out) wxString* { #if wxUSE_UNICODE - $target = PyUnicode_FromUnicode($source->c_str(), $source->Len()); + $target = PyUnicode_FromWideChar($source->c_str(), $source->Len()); #else $target = PyString_FromStringAndSize($source->c_str(), $source->Len()); #endif @@ -244,6 +244,12 @@ $function return NULL; } +%typemap(python,in) wxPoint2DDouble& (wxPoint2DDouble temp) { + $target = &temp; + if (! wxPoint2DDouble_helper($source, &$target)) + return NULL; +} + //--------------------------------------------------------------------------- // Typemap to convert strings to wxColour. Two string formats are accepted, // either a colour name, or a hex colour spec like "#RRGGBB" @@ -268,11 +274,10 @@ $function PyObject* item = PySequence_GetItem($source, i); #if wxUSE_UNICODE PyObject* str = PyObject_Unicode(item); - $target->Add(PyUnicode_AsUnicode(str)); #else PyObject* str = PyObject_Str(item); - $target->Add(PyString_AsString(str)); #endif + $target->Add(Py2wxString(str)); Py_DECREF(item); Py_DECREF(str); } @@ -308,6 +313,29 @@ $function } +// Typemaps to convert an array of ints to a list +%typemap(python, out) wxArrayInt& { + $target = PyList_New(0); + size_t idx; + for (idx = 0; idx < $source->GetCount(); idx += 1) { + PyObject* val = PyInt_FromLong($source->Item(idx)); + PyList_Append($target, val); + Py_DECREF(val); + } +} + +%typemap(python, out) wxArrayInt { + $target = PyList_New(0); + size_t idx; + for (idx = 0; idx < $source->GetCount(); idx += 1) { + PyObject* val = PyInt_FromLong($source->Item(idx)); + PyList_Append($target, val); + Py_DECREF(val); + } + delete $source; +} + + //--------------------------------------------------------------------------- // Map T_OUTPUTs for floats to return ints. @@ -360,6 +388,11 @@ $function %typemap(python,ignore) byte *OUTPUT = byte *T_OUTPUT; %typemap(python,argout) byte *OUTPUT = byte *T_OUTPUT; + +%typemap(python,ignore) wxCoord *OUTPUT = int *OUTPUT; +%typemap(python,argout) wxCoord *OUTPUT = int *OUTPUT; + + //--------------------------------------------------------------------------- // Typemaps to convert return values that are base class pointers // to the real derived type, if possible. See wxPyMake_wxObject in @@ -369,6 +402,8 @@ $function %typemap(python, out) wxMenu* { $target = wxPyMake_wxObject($source); } %typemap(python, out) wxValidator* { $target = wxPyMake_wxObject($source); } +%typemap(python, out) wxApp* { $target = wxPyMake_wxObject($source); } +%typemap(python, out) wxPyApp* { $target = wxPyMake_wxObject($source); } %typemap(python, out) wxDC* { $target = wxPyMake_wxObject($source); } %typemap(python, out) wxFSFile* { $target = wxPyMake_wxObject($source); } %typemap(python, out) wxFileSystem* { $target = wxPyMake_wxObject($source); } @@ -401,6 +436,8 @@ $function %typemap(python, out) wxTreeCtrl* { $target = wxPyMake_wxObject($source); } %typemap(python, out) wxWindow* { $target = wxPyMake_wxObject($source); } %typemap(python, out) wxHtmlWindow* { $target = wxPyMake_wxObject($source); } +%typemap(python, out) wxPyHtmlWindow* { $target = wxPyMake_wxObject($source); } +%typemap(python, out) wxWizardPage* { $target = wxPyMake_wxObject($source); } %typemap(python, out) wxSizer* { $target = wxPyMake_wxSizer($source); }