]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/src/helpers.cpp
483442eb46d42bbfe74014e77973457520381ef7
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Helper functions/classes for the wxPython extension module
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
13 #include <stdio.h> // get the correct definition of NULL
20 #include <wx/msw/private.h>
21 #include <wx/msw/winundef.h>
26 #include <gdk/gdkprivate.h>
27 #include <wx/gtk/win_gtk.h>
33 #ifdef __WXMSW__ // If building for win32...
34 //----------------------------------------------------------------------
35 // This gets run when the DLL is loaded. We just need to save a handle.
36 //----------------------------------------------------------------------
39 HINSTANCE hinstDLL
, // handle to DLL module
40 DWORD fdwReason
, // reason for calling function
41 LPVOID lpvReserved
// reserved
44 wxSetInstance(hinstDLL
);
49 //----------------------------------------------------------------------
50 // Class for implementing the wxp main application shell.
51 //----------------------------------------------------------------------
53 wxPyApp
*wxPythonApp
= NULL
; // Global instance of application object
57 // printf("**** ctor\n");
61 // printf("**** dtor\n");
65 // This one isn't acutally called... See __wxStart()
66 bool wxPyApp::OnInit(void) {
70 int wxPyApp::MainLoop(void) {
73 DeletePendingObjects();
75 m_initialized
= wxTopLevelWindows
.GetCount() != 0;
79 retval
= wxApp::MainLoop();
80 wxPythonApp
->OnExit();
86 //---------------------------------------------------------------------
87 //----------------------------------------------------------------------
90 #include "wx/msw/msvcrt.h"
94 int WXDLLEXPORT
wxEntryStart( int argc
, char** argv
);
95 int WXDLLEXPORT
wxEntryInitGui();
96 void WXDLLEXPORT
wxEntryCleanup();
99 #ifdef WXP_WITH_THREAD
100 PyInterpreterState
* wxPyInterpreter
= NULL
;
104 // This is where we pick up the first part of the wxEntry functionality...
105 // The rest is in __wxStart and __wxCleanup. This function is called when
106 // wxcmodule is imported. (Before there is a wxApp object.)
111 // wxCrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF);
114 #ifdef WXP_WITH_THREAD
115 PyEval_InitThreads();
116 wxPyInterpreter
= PyThreadState_Get()->interp
;
119 // Bail out if there is already windows created. This means that the
120 // toolkit has already been initialized, as in embedding wxPython in
121 // a C++ wxWindows app.
122 if (wxTopLevelWindows
.Number() > 0)
128 PyObject
* sysargv
= PySys_GetObject("argv");
129 if (sysargv
!= NULL
) {
130 argc
= PyList_Size(sysargv
);
131 argv
= new char*[argc
+1];
133 for(x
=0; x
<argc
; x
++)
134 argv
[x
] = copystring(PyString_AsString(PyList_GetItem(sysargv
, x
)));
138 wxEntryStart(argc
, argv
);
144 // Start the user application, user App's OnInit method is a parameter here
145 PyObject
* __wxStart(PyObject
* /* self */, PyObject
* args
)
147 PyObject
* onInitFunc
= NULL
;
152 if (!PyArg_ParseTuple(args
, "O", &onInitFunc
))
155 #if 0 // Try it out without this check, see how it does...
156 if (wxTopLevelWindows
.Number() > 0) {
157 PyErr_SetString(PyExc_TypeError
, "Only 1 wxApp per process!");
162 // This is the next part of the wxEntry functionality...
165 PyObject
* sysargv
= PySys_GetObject("argv");
166 if (sysargv
!= NULL
) {
167 argc
= PyList_Size(sysargv
);
168 argv
= new char*[argc
+1];
170 for(x
=0; x
<argc
; x
++)
171 argv
[x
] = copystring(PyString_AsString(PyList_GetItem(sysargv
, x
)));
174 wxPythonApp
->argc
= argc
;
175 wxPythonApp
->argv
= argv
;
179 // Call the Python App's OnInit function
180 arglist
= PyTuple_New(0);
181 result
= PyEval_CallObject(onInitFunc
, arglist
);
182 if (!result
) { // an exception was raised.
186 if (! PyInt_Check(result
)) {
187 PyErr_SetString(PyExc_TypeError
, "OnInit should return a boolean value");
190 bResult
= PyInt_AS_LONG(result
);
192 PyErr_SetString(PyExc_SystemExit
, "OnInit returned FALSE, exiting...");
197 wxTheApp
->m_initialized
= (wxTopLevelWindows
.GetCount() > 0);
210 static PyObject
* wxPython_dict
= NULL
;
211 static PyObject
* wxPyPtrTypeMap
= NULL
;
213 PyObject
* __wxSetDictionary(PyObject
* /* self */, PyObject
* args
)
216 if (!PyArg_ParseTuple(args
, "O", &wxPython_dict
))
219 if (!PyDict_Check(wxPython_dict
)) {
220 PyErr_SetString(PyExc_TypeError
, "_wxSetDictionary must have dictionary object!");
224 if (! wxPyPtrTypeMap
)
225 wxPyPtrTypeMap
= PyDict_New();
226 PyDict_SetItemString(wxPython_dict
, "__wxPyPtrTypeMap", wxPyPtrTypeMap
);
230 #define wxPlatform "__WXMOTIF__"
233 #define wxPlatform "__WXQT__"
236 #define wxPlatform "__WXGTK__"
238 #if defined(__WIN32__) || defined(__WXMSW__)
239 #define wxPlatform "__WXMSW__"
242 #define wxPlatform "__WXMAC__"
245 PyDict_SetItemString(wxPython_dict
, "wxPlatform", PyString_FromString(wxPlatform
));
252 //---------------------------------------------------------------------------
253 // Stuff used by OOR to find the right wxPython class type to return and to
257 // The pointer type map is used when the "pointer" type name generated by SWIG
258 // is not the same as the shadow class name, for example wxPyTreeCtrl
259 // vs. wxTreeCtrl. It needs to be referenced in Python as well as from C++,
260 // so we'll just make it a Python dictionary in the wx module's namespace.
261 void wxPyPtrTypeMap_Add(const char* commonName
, const char* ptrName
) {
262 if (! wxPyPtrTypeMap
)
263 wxPyPtrTypeMap
= PyDict_New();
265 PyDict_SetItemString(wxPyPtrTypeMap
,
267 PyString_FromString((char*)ptrName
));
272 PyObject
* wxPyClassExists(const char* className
) {
277 char buff
[64]; // should always be big enough...
279 sprintf(buff
, "%sPtr", className
);
280 PyObject
* classobj
= PyDict_GetItemString(wxPython_dict
, buff
);
282 return classobj
; // returns NULL if not found
286 PyObject
* wxPyMake_wxObject(wxObject
* source
, bool checkEvtHandler
) {
287 PyObject
* target
= NULL
;
288 bool isEvtHandler
= FALSE
;
291 // If it's derived from wxEvtHandler then there may
292 // already be a pointer to a Python object that we can use
294 if (checkEvtHandler
&& wxIsKindOf(source
, wxEvtHandler
)) {
296 wxEvtHandler
* eh
= (wxEvtHandler
*)source
;
297 wxPyClientData
* data
= (wxPyClientData
*)eh
->GetClientObject();
299 target
= data
->m_obj
;
305 // Otherwise make it the old fashioned way by making a
306 // new shadow object and putting this pointer in it.
307 wxClassInfo
* info
= source
->GetClassInfo();
308 wxChar
* name
= (wxChar
*)info
->GetClassName();
309 PyObject
* klass
= wxPyClassExists(name
);
310 while (info
&& !klass
) {
311 name
= (wxChar
*)info
->GetBaseClassName1();
312 info
= wxClassInfo::FindClass(name
);
313 klass
= wxPyClassExists(name
);
316 target
= wxPyConstructObject(source
, name
, klass
, FALSE
);
317 if (target
&& isEvtHandler
)
318 ((wxEvtHandler
*)source
)->SetClientObject(new wxPyClientData(target
));
320 wxString
msg("wxPython class not found for ");
321 msg
+= source
->GetClassInfo()->GetClassName();
322 PyErr_SetString(PyExc_NameError
, msg
.c_str());
326 } else { // source was NULL so return None.
327 Py_INCREF(Py_None
); target
= Py_None
;
333 PyObject
* wxPyMake_wxSizer(wxSizer
* source
) {
334 PyObject
* target
= NULL
;
336 if (source
&& wxIsKindOf(source
, wxSizer
)) {
337 // If it's derived from wxSizer then there may
338 // already be a pointer to a Python object that we can use
340 wxSizer
* sz
= (wxSizer
*)source
;
341 wxPyClientData
* data
= (wxPyClientData
*)sz
->GetClientObject();
343 target
= data
->m_obj
;
348 target
= wxPyMake_wxObject(source
, FALSE
);
349 if (target
!= Py_None
)
350 ((wxSizer
*)source
)->SetClientObject(new wxPyClientData(target
));
357 //---------------------------------------------------------------------------
359 PyObject
* wxPyConstructObject(void* ptr
,
360 const char* className
,
367 char swigptr
[64]; // should always be big enough...
370 if ((item
= PyDict_GetItemString(wxPyPtrTypeMap
, (char*)className
)) != NULL
) {
371 className
= PyString_AsString(item
);
373 sprintf(buff
, "_%s_p", className
);
374 SWIG_MakePtr(swigptr
, ptr
, buff
);
376 arg
= Py_BuildValue("(s)", swigptr
);
377 obj
= PyInstance_New(klass
, arg
, NULL
);
381 PyObject
* one
= PyInt_FromLong(1);
382 PyObject_SetAttrString(obj
, "thisown", one
);
390 PyObject
* wxPyConstructObject(void* ptr
,
391 const char* className
,
400 char buff
[64]; // should always be big enough...
401 sprintf(buff
, "%sPtr", className
);
403 wxASSERT_MSG(wxPython_dict
, "wxPython_dict is not set yet!!");
405 PyObject
* classobj
= PyDict_GetItemString(wxPython_dict
, buff
);
409 "*** Unknown class name %s, tell Robin about it please ***",
411 obj
= PyString_FromString(temp
);
415 return wxPyConstructObject(ptr
, className
, classobj
, setThisOwn
);
418 //---------------------------------------------------------------------------
421 wxPyTState
* wxPyBeginBlockThreads() {
422 wxPyTState
* state
= NULL
;
423 #ifdef WXP_WITH_THREAD
424 if (1) { // Can I check if I've already got the lock?
425 state
= new wxPyTState
;
426 PyEval_AcquireLock();
427 state
->newState
= PyThreadState_New(wxPyInterpreter
);
428 state
->prevState
= PyThreadState_Swap(state
->newState
);
435 void wxPyEndBlockThreads(wxPyTState
* state
) {
436 #ifdef WXP_WITH_THREAD
438 PyThreadState_Swap(state
->prevState
);
439 PyThreadState_Clear(state
->newState
);
440 PyEval_ReleaseLock();
441 PyThreadState_Delete(state
->newState
);
448 //---------------------------------------------------------------------------
450 IMPLEMENT_ABSTRACT_CLASS(wxPyCallback
, wxObject
);
452 wxPyCallback::wxPyCallback(PyObject
* func
) {
457 wxPyCallback::wxPyCallback(const wxPyCallback
& other
) {
458 m_func
= other
.m_func
;
462 wxPyCallback::~wxPyCallback() {
463 wxPyTState
* state
= wxPyBeginBlockThreads();
465 wxPyEndBlockThreads(state
);
470 // This function is used for all events destined for Python event handlers.
471 void wxPyCallback::EventThunker(wxEvent
& event
) {
472 wxPyCallback
* cb
= (wxPyCallback
*)event
.m_callbackUserData
;
473 PyObject
* func
= cb
->m_func
;
479 wxPyTState
* state
= wxPyBeginBlockThreads();
480 wxString className
= event
.GetClassInfo()->GetClassName();
482 if (className
== "wxPyEvent")
483 arg
= ((wxPyEvent
*)&event
)->GetSelf();
484 else if (className
== "wxPyCommandEvent")
485 arg
= ((wxPyCommandEvent
*)&event
)->GetSelf();
487 arg
= wxPyConstructObject((void*)&event
, className
);
489 tuple
= PyTuple_New(1);
490 PyTuple_SET_ITEM(tuple
, 0, arg
);
491 result
= PyEval_CallObject(func
, tuple
);
495 PyErr_Clear(); // Just in case...
499 wxPyEndBlockThreads(state
);
503 //----------------------------------------------------------------------
505 wxPyCallbackHelper::wxPyCallbackHelper(const wxPyCallbackHelper
& other
) {
507 m_self
= other
.m_self
;
508 m_class
= other
.m_class
;
516 void wxPyCallbackHelper::setSelf(PyObject
* self
, PyObject
* klass
, int incref
) {
527 #if PYTHON_API_VERSION >= 1011
529 // Prior to Python 2.2 PyMethod_GetClass returned the class object
530 // in which the method was defined. Starting with 2.2 it returns
531 // "class that asked for the method" which seems totally bogus to me
532 // but apprently if fixes some obscure problem waiting to happen in
533 // Python. Since the API was not documented Guido and the gang felt
534 // safe in changing it. Needless to say that totally screwed up the
535 // logic below in wxPyCallbackHelper::findCallback, hence this icky
536 // code to find the class where the method is actuallt defined...
539 PyObject
* PyFindClassWithAttr(PyObject
*klass
, PyObject
*name
)
543 if (PyType_Check(klass
)) { // new style classes
544 // This code is borrowed/adapted from _PyType_Lookup in typeobject.c
545 PyTypeObject
* type
= (PyTypeObject
*)klass
;
546 PyObject
*mro
, *res
, *base
, *dict
;
547 /* Look in tp_dict of types in MRO */
549 assert(PyTuple_Check(mro
));
550 n
= PyTuple_GET_SIZE(mro
);
551 for (i
= 0; i
< n
; i
++) {
552 base
= PyTuple_GET_ITEM(mro
, i
);
553 if (PyClass_Check(base
))
554 dict
= ((PyClassObject
*)base
)->cl_dict
;
556 assert(PyType_Check(base
));
557 dict
= ((PyTypeObject
*)base
)->tp_dict
;
559 assert(dict
&& PyDict_Check(dict
));
560 res
= PyDict_GetItem(dict
, name
);
567 else if (PyClass_Check(klass
)) { // old style classes
568 // This code is borrowed/adapted from class_lookup in classobject.c
569 PyClassObject
* cp
= (PyClassObject
*)klass
;
570 PyObject
*value
= PyDict_GetItem(cp
->cl_dict
, name
);
572 return (PyObject
*)cp
;
574 n
= PyTuple_Size(cp
->cl_bases
);
575 for (i
= 0; i
< n
; i
++) {
576 PyObject
* base
= PyTuple_GetItem(cp
->cl_bases
, i
);
577 PyObject
*v
= PyFindClassWithAttr(base
, name
);
588 PyObject
* PyMethod_GetDefiningClass(PyObject
* method
, const char* name
)
590 PyObject
* mgc
= PyMethod_GET_CLASS(method
);
592 #if PYTHON_API_VERSION <= 1010 // prior to Python 2.2, the easy way
594 #else // 2.2 and after, the hard way...
596 PyObject
* nameo
= PyString_FromString(name
);
597 PyObject
* klass
= PyFindClassWithAttr(mgc
, nameo
);
605 bool wxPyCallbackHelper::findCallback(const char* name
) const {
606 wxPyCallbackHelper
* self
= (wxPyCallbackHelper
*)this; // cast away const
607 self
->m_lastFound
= NULL
;
609 // If the object (m_self) has an attibute of the given name...
610 if (m_self
&& PyObject_HasAttrString(m_self
, (char*)name
)) {
611 PyObject
*method
, *klass
;
612 method
= PyObject_GetAttrString(m_self
, (char*)name
);
614 // ...and if that attribute is a method, and if that method's class is
615 // not from a base class...
616 if (PyMethod_Check(method
) &&
617 (klass
= PyMethod_GetDefiningClass(method
, (char*)name
)) != NULL
&&
618 ((klass
== m_class
) || PyClass_IsSubclass(klass
, m_class
))) {
620 // ...then we'll save a pointer to the method so callCallback can call it.
621 self
->m_lastFound
= method
;
627 return m_lastFound
!= NULL
;
631 int wxPyCallbackHelper::callCallback(PyObject
* argTuple
) const {
635 result
= callCallbackObj(argTuple
);
636 if (result
) { // Assumes an integer return type...
637 retval
= PyInt_AsLong(result
);
639 PyErr_Clear(); // forget about it if it's not...
644 // Invoke the Python callable object, returning the raw PyObject return
645 // value. Caller should DECREF the return value and also call PyEval_SaveThread.
646 PyObject
* wxPyCallbackHelper::callCallbackObj(PyObject
* argTuple
) const {
649 // Save a copy of the pointer in case the callback generates another
650 // callback. In that case m_lastFound will have a different value when
651 // it gets back here...
652 PyObject
* method
= m_lastFound
;
654 result
= PyEval_CallObject(method
, argTuple
);
664 void wxPyCBH_setCallbackInfo(wxPyCallbackHelper
& cbh
, PyObject
* self
, PyObject
* klass
, int incref
) {
665 cbh
.setSelf(self
, klass
, incref
);
668 bool wxPyCBH_findCallback(const wxPyCallbackHelper
& cbh
, const char* name
) {
669 return cbh
.findCallback(name
);
672 int wxPyCBH_callCallback(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
) {
673 return cbh
.callCallback(argTuple
);
676 PyObject
* wxPyCBH_callCallbackObj(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
) {
677 return cbh
.callCallbackObj(argTuple
);
681 void wxPyCBH_delete(wxPyCallbackHelper
* cbh
) {
683 wxPyTState
* state
= wxPyBeginBlockThreads();
684 Py_XDECREF(cbh
->m_self
);
685 Py_XDECREF(cbh
->m_class
);
686 wxPyEndBlockThreads(state
);
690 //---------------------------------------------------------------------------
691 //---------------------------------------------------------------------------
692 // These event classes can be derived from in Python and passed through the event
693 // system without losing anything. They do this by keeping a reference to
694 // themselves and some special case handling in wxPyCallback::EventThunker.
697 wxPyEvtSelfRef::wxPyEvtSelfRef() {
698 //m_self = Py_None; // **** We don't do normal ref counting to prevent
699 //Py_INCREF(m_self); // circular loops...
703 wxPyEvtSelfRef::~wxPyEvtSelfRef() {
704 wxPyTState
* state
= wxPyBeginBlockThreads();
707 wxPyEndBlockThreads(state
);
710 void wxPyEvtSelfRef::SetSelf(PyObject
* self
, bool clone
) {
711 wxPyTState
* state
= wxPyBeginBlockThreads();
719 wxPyEndBlockThreads(state
);
722 PyObject
* wxPyEvtSelfRef::GetSelf() const {
728 IMPLEMENT_ABSTRACT_CLASS(wxPyEvent
, wxEvent
);
729 IMPLEMENT_ABSTRACT_CLASS(wxPyCommandEvent
, wxCommandEvent
);
732 wxPyEvent::wxPyEvent(int id
)
737 wxPyEvent::wxPyEvent(const wxPyEvent
& evt
)
740 SetSelf(evt
.m_self
, TRUE
);
744 wxPyEvent::~wxPyEvent() {
748 wxPyCommandEvent::wxPyCommandEvent(wxEventType commandType
, int id
)
749 : wxCommandEvent(commandType
, id
) {
753 wxPyCommandEvent::wxPyCommandEvent(const wxPyCommandEvent
& evt
)
754 : wxCommandEvent(evt
)
756 SetSelf(evt
.m_self
, TRUE
);
760 wxPyCommandEvent::~wxPyCommandEvent() {
766 //---------------------------------------------------------------------------
767 //---------------------------------------------------------------------------
770 wxPyTimer::wxPyTimer(PyObject
* callback
) {
775 wxPyTimer::~wxPyTimer() {
776 wxPyTState
* state
= wxPyBeginBlockThreads();
778 wxPyEndBlockThreads(state
);
781 void wxPyTimer::Notify() {
782 if (!func
|| func
== Py_None
) {
786 wxPyTState
* state
= wxPyBeginBlockThreads();
789 PyObject
* args
= Py_BuildValue("()");
791 result
= PyEval_CallObject(func
, args
);
800 wxPyEndBlockThreads(state
);
806 //---------------------------------------------------------------------------
807 //---------------------------------------------------------------------------
808 // Convert a wxList to a Python List
810 PyObject
* wxPy_ConvertList(wxListBase
* list
, const char* className
) {
814 wxNode
* node
= list
->First();
816 wxPyTState
* state
= wxPyBeginBlockThreads();
817 pyList
= PyList_New(0);
819 wxObj
= node
->Data();
820 pyObj
= wxPyMake_wxObject(wxObj
); //wxPyConstructObject(wxObj, className);
821 PyList_Append(pyList
, pyObj
);
824 wxPyEndBlockThreads(state
);
828 //----------------------------------------------------------------------
830 long wxPyGetWinHandle(wxWindow
* win
) {
832 return (long)win
->GetHandle();
835 // Find and return the actual X-Window.
837 if (win
->m_wxwindow
) {
838 GdkWindowPrivate
* bwin
= (GdkWindowPrivate
*)GTK_PIZZA(win
->m_wxwindow
)->bin_window
;
840 return (long)bwin
->xwindow
;
847 //----------------------------------------------------------------------
848 // Some helper functions for typemaps in my_typemaps.i, so they won't be
849 // included in every file...
852 byte
* byte_LIST_helper(PyObject
* source
) {
853 if (!PyList_Check(source
)) {
854 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
857 int count
= PyList_Size(source
);
858 byte
* temp
= new byte
[count
];
860 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
863 for (int x
=0; x
<count
; x
++) {
864 PyObject
* o
= PyList_GetItem(source
, x
);
865 if (! PyInt_Check(o
)) {
866 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
869 temp
[x
] = (byte
)PyInt_AsLong(o
);
875 int* int_LIST_helper(PyObject
* source
) {
876 if (!PyList_Check(source
)) {
877 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
880 int count
= PyList_Size(source
);
881 int* temp
= new int[count
];
883 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
886 for (int x
=0; x
<count
; x
++) {
887 PyObject
* o
= PyList_GetItem(source
, x
);
888 if (! PyInt_Check(o
)) {
889 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
892 temp
[x
] = PyInt_AsLong(o
);
898 long* long_LIST_helper(PyObject
* source
) {
899 if (!PyList_Check(source
)) {
900 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
903 int count
= PyList_Size(source
);
904 long* temp
= new long[count
];
906 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
909 for (int x
=0; x
<count
; x
++) {
910 PyObject
* o
= PyList_GetItem(source
, x
);
911 if (! PyInt_Check(o
)) {
912 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
915 temp
[x
] = PyInt_AsLong(o
);
921 char** string_LIST_helper(PyObject
* source
) {
922 if (!PyList_Check(source
)) {
923 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
926 int count
= PyList_Size(source
);
927 char** temp
= new char*[count
];
929 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
932 for (int x
=0; x
<count
; x
++) {
933 PyObject
* o
= PyList_GetItem(source
, x
);
934 if (! PyString_Check(o
)) {
935 PyErr_SetString(PyExc_TypeError
, "Expected a list of strings.");
938 temp
[x
] = PyString_AsString(o
);
943 //--------------------------------
944 // Part of patch from Tim Hochberg
945 static inline bool wxPointFromObjects(PyObject
* o1
, PyObject
* o2
, wxPoint
* point
) {
946 if (PyInt_Check(o1
) && PyInt_Check(o2
)) {
947 point
->x
= PyInt_AS_LONG(o1
);
948 point
->y
= PyInt_AS_LONG(o2
);
951 if (PyFloat_Check(o1
) && PyFloat_Check(o2
)) {
952 point
->x
= (int)PyFloat_AS_DOUBLE(o1
);
953 point
->y
= (int)PyFloat_AS_DOUBLE(o2
);
956 if (PyInstance_Check(o1
) || PyInstance_Check(o2
)) {
957 // Disallow instances because they can cause havok
960 if (PyNumber_Check(o1
) && PyNumber_Check(o2
)) {
961 // I believe this excludes instances, so this should be safe without INCREFFing o1 and o2
962 point
->x
= PyInt_AsLong(o1
);
963 point
->y
= PyInt_AsLong(o2
);
970 wxPoint
* wxPoint_LIST_helper(PyObject
* source
, int *count
) {
971 // Putting all of the declarations here allows
972 // us to put the error handling all in one place.
975 PyObject
*o
, *o1
, *o2
;
976 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
978 if (!PySequence_Check(source
)) {
982 // The length of the sequence is returned in count.
983 *count
= PySequence_Length(source
);
988 temp
= new wxPoint
[*count
];
990 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
993 for (x
=0; x
<*count
; x
++) {
994 // Get an item: try fast way first.
996 o
= PySequence_Fast_GET_ITEM(source
, x
);
999 o
= PySequence_GetItem(source
, x
);
1005 // Convert o to wxPoint.
1006 if ((PyTuple_Check(o
) && PyTuple_GET_SIZE(o
) == 2) ||
1007 (PyList_Check(o
) && PyList_GET_SIZE(o
) == 2)) {
1008 o1
= PySequence_Fast_GET_ITEM(o
, 0);
1009 o2
= PySequence_Fast_GET_ITEM(o
, 1);
1010 if (!wxPointFromObjects(o1
, o2
, &temp
[x
])) {
1014 else if (PyInstance_Check(o
)) {
1016 if (SWIG_GetPtrObj(o
, (void **)&pt
, "_wxPoint_p")) {
1021 else if (PySequence_Check(o
) && PySequence_Length(o
) == 2) {
1022 o1
= PySequence_GetItem(o
, 0);
1023 o2
= PySequence_GetItem(o
, 1);
1024 if (!wxPointFromObjects(o1
, o2
, &temp
[x
])) {
1048 PyErr_SetString(PyExc_TypeError
, "Expected a sequence of length-2 sequences or wxPoints.");
1052 //------------------------------
1055 wxBitmap
** wxBitmap_LIST_helper(PyObject
* source
) {
1056 if (!PyList_Check(source
)) {
1057 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
1060 int count
= PyList_Size(source
);
1061 wxBitmap
** temp
= new wxBitmap
*[count
];
1063 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
1066 for (int x
=0; x
<count
; x
++) {
1067 PyObject
* o
= PyList_GetItem(source
, x
);
1068 if (PyInstance_Check(o
)) {
1070 if (SWIG_GetPtrObj(o
, (void **) &pt
,"_wxBitmap_p")) {
1071 PyErr_SetString(PyExc_TypeError
,"Expected _wxBitmap_p.");
1077 PyErr_SetString(PyExc_TypeError
, "Expected a list of wxBitmaps.");
1086 wxString
* wxString_LIST_helper(PyObject
* source
) {
1087 if (!PyList_Check(source
)) {
1088 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
1091 int count
= PyList_Size(source
);
1092 wxString
* temp
= new wxString
[count
];
1094 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
1097 for (int x
=0; x
<count
; x
++) {
1098 PyObject
* o
= PyList_GetItem(source
, x
);
1099 #if PYTHON_API_VERSION >= 1009
1100 if (! PyString_Check(o
) && ! PyUnicode_Check(o
)) {
1101 PyErr_SetString(PyExc_TypeError
, "Expected a list of string or unicode objects.");
1107 if (PyString_AsStringAndSize(o
, &buff
, &length
) == -1)
1109 temp
[x
] = wxString(buff
, length
);
1111 if (! PyString_Check(o
)) {
1112 PyErr_SetString(PyExc_TypeError
, "Expected a list of strings.");
1115 temp
[x
] = PyString_AsString(o
);
1122 wxAcceleratorEntry
* wxAcceleratorEntry_LIST_helper(PyObject
* source
) {
1123 if (!PyList_Check(source
)) {
1124 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
1127 int count
= PyList_Size(source
);
1128 wxAcceleratorEntry
* temp
= new wxAcceleratorEntry
[count
];
1130 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
1133 for (int x
=0; x
<count
; x
++) {
1134 PyObject
* o
= PyList_GetItem(source
, x
);
1135 if (PyInstance_Check(o
)) {
1136 wxAcceleratorEntry
* ae
;
1137 if (SWIG_GetPtrObj(o
, (void **) &ae
,"_wxAcceleratorEntry_p")) {
1138 PyErr_SetString(PyExc_TypeError
,"Expected _wxAcceleratorEntry_p.");
1143 else if (PyTuple_Check(o
)) {
1144 PyObject
* o1
= PyTuple_GetItem(o
, 0);
1145 PyObject
* o2
= PyTuple_GetItem(o
, 1);
1146 PyObject
* o3
= PyTuple_GetItem(o
, 2);
1147 temp
[x
].Set(PyInt_AsLong(o1
), PyInt_AsLong(o2
), PyInt_AsLong(o3
));
1150 PyErr_SetString(PyExc_TypeError
, "Expected a list of 3-tuples or wxAcceleratorEntry objects.");
1158 wxPen
** wxPen_LIST_helper(PyObject
* source
) {
1159 if (!PyList_Check(source
)) {
1160 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
1163 int count
= PyList_Size(source
);
1164 wxPen
** temp
= new wxPen
*[count
];
1166 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
1169 for (int x
=0; x
<count
; x
++) {
1170 PyObject
* o
= PyList_GetItem(source
, x
);
1171 if (PyInstance_Check(o
)) {
1173 if (SWIG_GetPtrObj(o
, (void **) &pt
,"_wxPen_p")) {
1175 PyErr_SetString(PyExc_TypeError
,"Expected _wxPen_p.");
1182 PyErr_SetString(PyExc_TypeError
, "Expected a list of wxPens.");
1190 bool _2int_seq_helper(PyObject
* source
, int* i1
, int* i2
) {
1191 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
1194 if (!PySequence_Check(source
) || PySequence_Length(source
) != 2)
1198 o1
= PySequence_Fast_GET_ITEM(source
, 0);
1199 o2
= PySequence_Fast_GET_ITEM(source
, 1);
1202 o1
= PySequence_GetItem(source
, 0);
1203 o2
= PySequence_GetItem(source
, 1);
1206 *i1
= PyInt_AsLong(o1
);
1207 *i2
= PyInt_AsLong(o2
);
1217 bool _4int_seq_helper(PyObject
* source
, int* i1
, int* i2
, int* i3
, int* i4
) {
1218 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
1219 PyObject
*o1
, *o2
, *o3
, *o4
;
1221 if (!PySequence_Check(source
) || PySequence_Length(source
) != 4)
1225 o1
= PySequence_Fast_GET_ITEM(source
, 0);
1226 o2
= PySequence_Fast_GET_ITEM(source
, 1);
1227 o3
= PySequence_Fast_GET_ITEM(source
, 2);
1228 o4
= PySequence_Fast_GET_ITEM(source
, 3);
1231 o1
= PySequence_GetItem(source
, 0);
1232 o2
= PySequence_GetItem(source
, 1);
1233 o3
= PySequence_GetItem(source
, 2);
1234 o4
= PySequence_GetItem(source
, 3);
1237 *i1
= PyInt_AsLong(o1
);
1238 *i2
= PyInt_AsLong(o2
);
1239 *i3
= PyInt_AsLong(o3
);
1240 *i4
= PyInt_AsLong(o4
);
1252 //----------------------------------------------------------------------
1254 bool wxSize_helper(PyObject
* source
, wxSize
** obj
) {
1256 // If source is an object instance then it may already be the right type
1257 if (PyInstance_Check(source
)) {
1259 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxSize_p"))
1264 // otherwise a 2-tuple of integers is expected
1265 else if (PySequence_Check(source
) && PyObject_Length(source
) == 2) {
1266 PyObject
* o1
= PySequence_GetItem(source
, 0);
1267 PyObject
* o2
= PySequence_GetItem(source
, 1);
1268 **obj
= wxSize(PyInt_AsLong(o1
), PyInt_AsLong(o2
));
1273 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of integers or a wxSize object.");
1277 bool wxPoint_helper(PyObject
* source
, wxPoint
** obj
) {
1279 // If source is an object instance then it may already be the right type
1280 if (PyInstance_Check(source
)) {
1282 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxPoint_p"))
1287 // otherwise a length-2 sequence of integers is expected
1288 if (PySequence_Check(source
) && PySequence_Length(source
) == 2) {
1289 PyObject
* o1
= PySequence_GetItem(source
, 0);
1290 PyObject
* o2
= PySequence_GetItem(source
, 1);
1291 // This should really check for integers, not numbers -- but that would break code.
1292 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
)) {
1297 **obj
= wxPoint(PyInt_AsLong(o1
), PyInt_AsLong(o2
));
1303 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of integers or a wxPoint object.");
1309 bool wxRealPoint_helper(PyObject
* source
, wxRealPoint
** obj
) {
1311 // If source is an object instance then it may already be the right type
1312 if (PyInstance_Check(source
)) {
1314 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxRealPoint_p"))
1319 // otherwise a 2-tuple of floats is expected
1320 else if (PySequence_Check(source
) && PyObject_Length(source
) == 2) {
1321 PyObject
* o1
= PySequence_GetItem(source
, 0);
1322 PyObject
* o2
= PySequence_GetItem(source
, 1);
1323 **obj
= wxRealPoint(PyFloat_AsDouble(o1
), PyFloat_AsDouble(o2
));
1328 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of floats or a wxRealPoint object.");
1335 bool wxRect_helper(PyObject
* source
, wxRect
** obj
) {
1337 // If source is an object instance then it may already be the right type
1338 if (PyInstance_Check(source
)) {
1340 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxRect_p"))
1345 // otherwise a 4-tuple of integers is expected
1346 else if (PySequence_Check(source
) && PyObject_Length(source
) == 4) {
1347 PyObject
* o1
= PySequence_GetItem(source
, 0);
1348 PyObject
* o2
= PySequence_GetItem(source
, 1);
1349 PyObject
* o3
= PySequence_GetItem(source
, 2);
1350 PyObject
* o4
= PySequence_GetItem(source
, 3);
1351 **obj
= wxRect(PyInt_AsLong(o1
), PyInt_AsLong(o2
),
1352 PyInt_AsLong(o3
), PyInt_AsLong(o4
));
1357 PyErr_SetString(PyExc_TypeError
, "Expected a 4-tuple of integers or a wxRect object.");
1363 bool wxColour_helper(PyObject
* source
, wxColour
** obj
) {
1365 // If source is an object instance then it may already be the right type
1366 if (PyInstance_Check(source
)) {
1368 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxColour_p"))
1373 // otherwise a string is expected
1374 else if (PyString_Check(source
)) {
1375 wxString spec
= PyString_AS_STRING(source
);
1376 if (spec
[0U] == '#' && spec
.Length() == 7) { // It's #RRGGBB
1378 int red
= strtol(spec
.Mid(1,2), &junk
, 16);
1379 int green
= strtol(spec
.Mid(3,2), &junk
, 16);
1380 int blue
= strtol(spec
.Mid(5,2), &junk
, 16);
1381 **obj
= wxColour(red
, green
, blue
);
1384 else { // it's a colour name
1385 **obj
= wxColour(spec
);
1391 PyErr_SetString(PyExc_TypeError
, "Expected a wxColour object or a string containing a colour name or '#RRGGBB'.");
1396 //----------------------------------------------------------------------
1398 PyObject
* wxArrayString2PyList_helper(const wxArrayString
& arr
) {
1400 PyObject
* list
= PyList_New(0);
1401 for (size_t i
=0; i
< arr
.GetCount(); i
++) {
1402 PyObject
* str
= PyString_FromString(arr
[i
].c_str());
1403 PyList_Append(list
, str
);
1410 //----------------------------------------------------------------------
1411 //----------------------------------------------------------------------