+%{
+//---------------------------------------------------------------------------
+
+// Convert from a Python list to a list of className objects. This one will
+// work for any class for the VERY generic cases, but beyond that the helper
+// needs to know more about the type.
+wxList* wxPy_wxListHelper(PyObject* pyList, const wxChar* className) {
+ bool blocked = wxPyBeginBlockThreads();
+ if (!PyList_Check(pyList)) {
+ PyErr_SetString(PyExc_TypeError, "Expected a list object.");
+ wxPyEndBlockThreads(blocked);
+ return NULL;
+ }
+ int count = PyList_Size(pyList);
+ wxList* list = new wxList;
+ if (! list) {
+ PyErr_SetString(PyExc_MemoryError, "Unable to allocate wxList object");
+ wxPyEndBlockThreads(blocked);
+ return NULL;
+ }
+ for (int x=0; x<count; x++) {
+ PyObject* pyo = PyList_GetItem(pyList, x);
+ wxObject* wxo = NULL;
+
+ if ( !wxPyConvertSwigPtr(pyo, (void **)&wxo, className) ) {
+ wxString errmsg;
+ errmsg.Printf(wxT("Type error, expected list of %s objects"), className);
+ PyErr_SetString(PyExc_TypeError, errmsg.mb_str());
+ wxPyEndBlockThreads(blocked);
+ return NULL;
+ }
+ list->Append(wxo);
+ }
+ wxPyEndBlockThreads(blocked);
+ return list;
+}
+
+//---------------------------------------------------------------------------
+
+wxList* wxPy_wxRealPoint_ListHelper(PyObject* pyList) {
+ bool blocked = wxPyBeginBlockThreads();
+ if (!PyList_Check(pyList)) {
+ PyErr_SetString(PyExc_TypeError, "Expected a list object.");
+ wxPyEndBlockThreads(blocked);
+ return NULL;
+ }
+ int count = PyList_Size(pyList);
+ wxList* list = new wxList;
+ if (! list) {
+ PyErr_SetString(PyExc_MemoryError, "Unable to allocate wxList object");
+ wxPyEndBlockThreads(blocked);
+ return NULL;
+ }
+ for (int x=0; x<count; x++) {
+ PyObject* pyo = PyList_GetItem(pyList, x);
+
+ if (PyTuple_Check(pyo)) {
+ PyObject* o1 = PyNumber_Float(PyTuple_GetItem(pyo, 0));
+ PyObject* o2 = PyNumber_Float(PyTuple_GetItem(pyo, 1));
+
+ double val1 = (o1 ? PyFloat_AsDouble(o1) : 0.0);
+ double val2 = (o2 ? PyFloat_AsDouble(o2) : 0.0);
+
+ list->Append((wxObject*) new wxRealPoint(val1, val2));
+
+ } else {
+ wxRealPoint* wxo = NULL;
+ if (wxPyConvertSwigPtr(pyo, (void **)&wxo, wxT("wxRealPoint"))) {
+ PyErr_SetString(PyExc_TypeError, "Type error, expected list of wxRealPoint objects or 2-tuples");
+ wxPyEndBlockThreads(blocked);
+ return NULL;
+ }
+ list->Append((wxObject*) new wxRealPoint(*wxo));
+ }
+ }
+ wxPyEndBlockThreads(blocked);
+ return list;
+}
+
+//---------------------------------------------------------------------------
+
+PyObject* wxPyMake_wxShapeEvtHandler(wxShapeEvtHandler* source) {
+ PyObject* target = NULL;
+
+ if (source && wxIsKindOf(source, wxShapeEvtHandler)) {
+ // If it's derived from wxShapeEvtHandler then there may
+ // already be a pointer to a Python object that we can use
+ // in the OOR data.
+ wxShapeEvtHandler* seh = (wxShapeEvtHandler*)source;
+ wxPyOORClientData* data = (wxPyOORClientData*)seh->GetClientObject();
+ if (data) {
+ target = data->m_obj;
+ Py_INCREF(target);
+ }
+ }
+ if (! target) {
+ target = wxPyMake_wxObject2(source, FALSE);
+ if (target != Py_None)
+ ((wxShapeEvtHandler*)source)->SetClientObject(new wxPyOORClientData(target));
+ }
+ return target;
+}
+