]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/include/wx/wxPython/twoitem.h
1 ////////////////////////////////////////////////////////////////////////////
3 // Purpose: A template function to help with converting a python object
4 // to some wx class that takes two integer value parameters.
5 // Factored out of wxPython_int.h
9 // Created: 25-April-2006
11 // Copyright: (c) 2006 by Total Control Software
12 // Licence: wxWindows license
13 /////////////////////////////////////////////////////////////////////////////
19 bool wxPyTwoIntItem_helper(PyObject
* source
, T
** obj
, const wxChar
* name
)
21 // If source is an object instance then it may already be the right type
22 if (wxPySwigInstance_Check(source
)) {
24 if (! wxPyConvertSwigPtr(source
, (void **)&ptr
, name
))
29 // otherwise a 2-tuple of integers is expected
30 else if (PySequence_Check(source
) && PyObject_Length(source
) == 2) {
31 PyObject
* o1
= PySequence_GetItem(source
, 0);
32 PyObject
* o2
= PySequence_GetItem(source
, 1);
33 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
)) {
38 **obj
= T(PyInt_AsLong(o1
), PyInt_AsLong(o2
));
46 msg
.Printf(wxT("Expected a 2-tuple of integers or a %s object."), name
);
47 PyErr_SetString(PyExc_TypeError
, msg
.mb_str());