]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/src/helpers.cpp
95c921d17b63934c0d0356ead8a0d27745de80f5
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>
23 #undef LoadAccelerators
30 #include <gdk/gdkprivate.h>
31 #include <wx/gtk/win_gtk.h>
37 #ifdef __WXMSW__ // If building for win32...
38 //----------------------------------------------------------------------
39 // This gets run when the DLL is loaded. We just need to save a handle.
40 //----------------------------------------------------------------------
43 HINSTANCE hinstDLL
, // handle to DLL module
44 DWORD fdwReason
, // reason for calling function
45 LPVOID lpvReserved
// reserved
48 wxSetInstance(hinstDLL
);
53 //----------------------------------------------------------------------
54 // Class for implementing the wxp main application shell.
55 //----------------------------------------------------------------------
57 wxPyApp
*wxPythonApp
= NULL
; // Global instance of application object
61 // printf("**** ctor\n");
65 // printf("**** dtor\n");
69 // This one isn't acutally called... See __wxStart()
70 bool wxPyApp::OnInit(void) {
74 int wxPyApp::MainLoop(void) {
77 DeletePendingObjects();
79 m_initialized
= wxTopLevelWindows
.GetCount() != 0;
83 retval
= wxApp::MainLoop();
84 wxPythonApp
->OnExit();
90 //---------------------------------------------------------------------
91 //----------------------------------------------------------------------
94 #include "wx/msw/msvcrt.h"
98 int WXDLLEXPORT
wxEntryStart( int argc
, char** argv
);
99 int WXDLLEXPORT
wxEntryInitGui();
100 void WXDLLEXPORT
wxEntryCleanup();
103 #ifdef WXP_WITH_THREAD
104 //PyThreadState* wxPyEventThreadState = NULL;
105 PyInterpreterState
* wxPyInterpreter
= NULL
;
109 // This is where we pick up the first part of the wxEntry functionality...
110 // The rest is in __wxStart and __wxCleanup. This function is called when
111 // wxcmodule is imported. (Before there is a wxApp object.)
116 // wxCrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF);
119 #ifdef WXP_WITH_THREAD
120 PyEval_InitThreads();
121 // wxPyEventThreadState = PyThreadState_Get(); // PyThreadState_New(PyThreadState_Get()->interp);
122 wxPyInterpreter
= PyThreadState_Get()->interp
;
125 // Bail out if there is already windows created. This means that the
126 // toolkit has already been initialized, as in embedding wxPython in
127 // a C++ wxWindows app.
128 if (wxTopLevelWindows
.Number() > 0)
134 PyObject
* sysargv
= PySys_GetObject("argv");
135 if (sysargv
!= NULL
) {
136 argc
= PyList_Size(sysargv
);
137 argv
= new char*[argc
+1];
139 for(x
=0; x
<argc
; x
++)
140 argv
[x
] = copystring(PyString_AsString(PyList_GetItem(sysargv
, x
)));
144 wxEntryStart(argc
, argv
);
150 // Start the user application, user App's OnInit method is a parameter here
151 PyObject
* __wxStart(PyObject
* /* self */, PyObject
* args
)
153 PyObject
* onInitFunc
= NULL
;
158 if (!PyArg_ParseTuple(args
, "O", &onInitFunc
))
161 #if 0 // Try it out without this check, see how it does...
162 if (wxTopLevelWindows
.Number() > 0) {
163 PyErr_SetString(PyExc_TypeError
, "Only 1 wxApp per process!");
168 // This is the next part of the wxEntry functionality...
171 PyObject
* sysargv
= PySys_GetObject("argv");
172 if (sysargv
!= NULL
) {
173 argc
= PyList_Size(sysargv
);
174 argv
= new char*[argc
+1];
176 for(x
=0; x
<argc
; x
++)
177 argv
[x
] = copystring(PyString_AsString(PyList_GetItem(sysargv
, x
)));
180 wxPythonApp
->argc
= argc
;
181 wxPythonApp
->argv
= argv
;
185 // Call the Python App's OnInit function
186 arglist
= PyTuple_New(0);
187 result
= PyEval_CallObject(onInitFunc
, arglist
);
188 if (!result
) { // an exception was raised.
192 if (! PyInt_Check(result
)) {
193 PyErr_SetString(PyExc_TypeError
, "OnInit should return a boolean value");
196 bResult
= PyInt_AS_LONG(result
);
198 PyErr_SetString(PyExc_SystemExit
, "OnInit returned FALSE, exiting...");
203 wxTheApp
->m_initialized
= (wxTopLevelWindows
.GetCount() > 0);
216 static PyObject
* wxPython_dict
= NULL
;
217 static PyObject
* wxPyPtrTypeMap
= NULL
;
219 PyObject
* __wxSetDictionary(PyObject
* /* self */, PyObject
* args
)
222 if (!PyArg_ParseTuple(args
, "O", &wxPython_dict
))
225 if (!PyDict_Check(wxPython_dict
)) {
226 PyErr_SetString(PyExc_TypeError
, "_wxSetDictionary must have dictionary object!");
230 if (! wxPyPtrTypeMap
)
231 wxPyPtrTypeMap
= PyDict_New();
232 PyDict_SetItemString(wxPython_dict
, "__wxPyPtrTypeMap", wxPyPtrTypeMap
);
236 #define wxPlatform "__WXMOTIF__"
239 #define wxPlatform "__WXQT__"
242 #define wxPlatform "__WXGTK__"
244 #if defined(__WIN32__) || defined(__WXMSW__)
245 #define wxPlatform "__WXMSW__"
248 #define wxPlatform "__WXMAC__"
251 PyDict_SetItemString(wxPython_dict
, "wxPlatform", PyString_FromString(wxPlatform
));
258 //---------------------------------------------------------------------------
259 // Stuff used by OOR to find the right wxPython class type to return and to
263 // The pointer type map is used when the "pointer" type name generated by SWIG
264 // is not the same as the shadow class name, for example wxPyTreeCtrl
265 // vs. wxTreeCtrl. It needs to be referenced in Python as well as from C++,
266 // so we'll just make it a Python dictionary in the wx module's namespace.
267 void wxPyPtrTypeMap_Add(const char* commonName
, const char* ptrName
) {
268 if (! wxPyPtrTypeMap
)
269 wxPyPtrTypeMap
= PyDict_New();
271 PyDict_SetItemString(wxPyPtrTypeMap
,
273 PyString_FromString((char*)ptrName
));
278 PyObject
* wxPyClassExists(const char* className
) {
283 char buff
[64]; // should always be big enough...
285 sprintf(buff
, "%sPtr", className
);
286 PyObject
* classobj
= PyDict_GetItemString(wxPython_dict
, buff
);
288 return classobj
; // returns NULL if not found
292 PyObject
* wxPyMake_wxObject(wxObject
* source
) {
293 PyObject
* target
= NULL
;
294 bool isEvtHandler
= FALSE
;
297 // If it's derived from wxEvtHandler then there may
298 // already be a pointer to a Python objec that we can use.
299 if (wxIsKindOf(source
, wxEvtHandler
)) {
300 wxEvtHandler
* eh
= (wxEvtHandler
*)source
;
301 wxPyClientData
* data
= (wxPyClientData
*)eh
->GetClientObject();
303 target
= data
->m_obj
;
307 else if (wxIsKindOf(source
, wxSizer
)) {
308 // wxSizers also track the original object
309 wxSizer
* sz
= (wxSizer
*)source
;
310 wxPyClientData
* data
= (wxPyClientData
*)sz
->GetClientObject();
312 target
= data
->m_obj
;
318 // Otherwise make it the old fashioned way by making a
319 // new shadow object and putting this pointer in it.
320 wxClassInfo
* info
= source
->GetClassInfo();
321 wxChar
* name
= (wxChar
*)info
->GetClassName();
322 PyObject
* klass
= wxPyClassExists(name
);
323 while (info
&& !klass
) {
324 name
= (wxChar
*)info
->GetBaseClassName1();
325 info
= wxClassInfo::FindClass(name
);
326 klass
= wxPyClassExists(name
);
329 target
= wxPyConstructObject(source
, name
, klass
, FALSE
);
330 if (target
&& isEvtHandler
)
331 ((wxEvtHandler
*)source
)->SetClientObject(new wxPyClientData(target
));
333 wxString
msg("wxPython class not found for ");
334 msg
+= source
->GetClassInfo()->GetClassName();
335 PyErr_SetString(PyExc_NameError
, msg
.c_str());
339 } else { // source was NULL so return None.
340 Py_INCREF(Py_None
); target
= Py_None
;
346 //---------------------------------------------------------------------------
348 PyObject
* wxPyConstructObject(void* ptr
,
349 const char* className
,
356 char swigptr
[64]; // should always be big enough...
359 if ((item
= PyDict_GetItemString(wxPyPtrTypeMap
, (char*)className
)) != NULL
) {
360 className
= PyString_AsString(item
);
362 sprintf(buff
, "_%s_p", className
);
363 SWIG_MakePtr(swigptr
, ptr
, buff
);
365 arg
= Py_BuildValue("(s)", swigptr
);
366 obj
= PyInstance_New(klass
, arg
, NULL
);
370 PyObject
* one
= PyInt_FromLong(1);
371 PyObject_SetAttrString(obj
, "thisown", one
);
379 PyObject
* wxPyConstructObject(void* ptr
,
380 const char* className
,
389 char buff
[64]; // should always be big enough...
391 sprintf(buff
, "%sPtr", className
);
392 PyObject
* classobj
= PyDict_GetItemString(wxPython_dict
, buff
);
396 "*** Unknown class name %s, tell Robin about it please ***",
398 obj
= PyString_FromString(temp
);
402 return wxPyConstructObject(ptr
, className
, classobj
, setThisOwn
);
405 //---------------------------------------------------------------------------
408 wxPyTState
* wxPyBeginBlockThreads() {
409 wxPyTState
* state
= NULL
;
410 #ifdef WXP_WITH_THREAD
411 if (1) { // Can I check if I've already got the lock?
412 state
= new wxPyTState
;
413 PyEval_AcquireLock();
414 state
->newState
= PyThreadState_New(wxPyInterpreter
);
415 state
->prevState
= PyThreadState_Swap(state
->newState
);
422 void wxPyEndBlockThreads(wxPyTState
* state
) {
423 #ifdef WXP_WITH_THREAD
425 PyThreadState_Swap(state
->prevState
);
426 PyThreadState_Clear(state
->newState
);
427 PyEval_ReleaseLock();
428 PyThreadState_Delete(state
->newState
);
435 //---------------------------------------------------------------------------
437 IMPLEMENT_ABSTRACT_CLASS(wxPyCallback
, wxObject
);
439 wxPyCallback::wxPyCallback(PyObject
* func
) {
444 wxPyCallback::wxPyCallback(const wxPyCallback
& other
) {
445 m_func
= other
.m_func
;
449 wxPyCallback::~wxPyCallback() {
450 wxPyTState
* state
= wxPyBeginBlockThreads();
452 wxPyEndBlockThreads(state
);
457 // This function is used for all events destined for Python event handlers.
458 void wxPyCallback::EventThunker(wxEvent
& event
) {
459 wxPyCallback
* cb
= (wxPyCallback
*)event
.m_callbackUserData
;
460 PyObject
* func
= cb
->m_func
;
466 wxPyTState
* state
= wxPyBeginBlockThreads();
467 wxString className
= event
.GetClassInfo()->GetClassName();
469 if (className
== "wxPyEvent")
470 arg
= ((wxPyEvent
*)&event
)->GetSelf();
471 else if (className
== "wxPyCommandEvent")
472 arg
= ((wxPyCommandEvent
*)&event
)->GetSelf();
474 arg
= wxPyConstructObject((void*)&event
, className
);
476 tuple
= PyTuple_New(1);
477 PyTuple_SET_ITEM(tuple
, 0, arg
);
478 result
= PyEval_CallObject(func
, tuple
);
482 PyErr_Clear(); // Just in case...
486 wxPyEndBlockThreads(state
);
490 //----------------------------------------------------------------------
492 wxPyCallbackHelper::wxPyCallbackHelper(const wxPyCallbackHelper
& other
) {
494 m_self
= other
.m_self
;
495 m_class
= other
.m_class
;
503 void wxPyCallbackHelper::setSelf(PyObject
* self
, PyObject
* klass
, int incref
) {
514 // If the object (m_self) has an attibute of the given name, and if that
515 // attribute is a method, and if that method's class is not from a base class,
516 // then we'll save a pointer to the method so callCallback can call it.
517 bool wxPyCallbackHelper::findCallback(const char* name
) const {
518 wxPyCallbackHelper
* self
= (wxPyCallbackHelper
*)this; // cast away const
519 self
->m_lastFound
= NULL
;
520 if (m_self
&& PyObject_HasAttrString(m_self
, (char*)name
)) {
522 method
= PyObject_GetAttrString(m_self
, (char*)name
);
524 if (PyMethod_Check(method
) &&
525 ((PyMethod_GET_CLASS(method
) == m_class
) ||
526 PyClass_IsSubclass(PyMethod_GET_CLASS(method
), m_class
))) {
528 self
->m_lastFound
= method
;
534 return m_lastFound
!= NULL
;
538 int wxPyCallbackHelper::callCallback(PyObject
* argTuple
) const {
542 result
= callCallbackObj(argTuple
);
543 if (result
) { // Assumes an integer return type...
544 retval
= PyInt_AsLong(result
);
546 PyErr_Clear(); // forget about it if it's not...
551 // Invoke the Python callable object, returning the raw PyObject return
552 // value. Caller should DECREF the return value and also call PyEval_SaveThread.
553 PyObject
* wxPyCallbackHelper::callCallbackObj(PyObject
* argTuple
) const {
556 // Save a copy of the pointer in case the callback generates another
557 // callback. In that case m_lastFound will have a different value when
558 // it gets back here...
559 PyObject
* method
= m_lastFound
;
561 result
= PyEval_CallObject(method
, argTuple
);
571 void wxPyCBH_setCallbackInfo(wxPyCallbackHelper
& cbh
, PyObject
* self
, PyObject
* klass
, int incref
) {
572 cbh
.setSelf(self
, klass
, incref
);
575 bool wxPyCBH_findCallback(const wxPyCallbackHelper
& cbh
, const char* name
) {
576 return cbh
.findCallback(name
);
579 int wxPyCBH_callCallback(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
) {
580 return cbh
.callCallback(argTuple
);
583 PyObject
* wxPyCBH_callCallbackObj(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
) {
584 return cbh
.callCallbackObj(argTuple
);
588 void wxPyCBH_delete(wxPyCallbackHelper
* cbh
) {
590 wxPyTState
* state
= wxPyBeginBlockThreads();
591 Py_XDECREF(cbh
->m_self
);
592 Py_XDECREF(cbh
->m_class
);
593 wxPyEndBlockThreads(state
);
597 //---------------------------------------------------------------------------
598 //---------------------------------------------------------------------------
599 // These event classes can be derived from in Python and passed through the event
600 // system without losing anything. They do this by keeping a reference to
601 // themselves and some special case handling in wxPyCallback::EventThunker.
604 wxPyEvtSelfRef::wxPyEvtSelfRef() {
605 //m_self = Py_None; // **** We don't do normal ref counting to prevent
606 //Py_INCREF(m_self); // circular loops...
610 wxPyEvtSelfRef::~wxPyEvtSelfRef() {
611 wxPyTState
* state
= wxPyBeginBlockThreads();
614 wxPyEndBlockThreads(state
);
617 void wxPyEvtSelfRef::SetSelf(PyObject
* self
, bool clone
) {
618 wxPyTState
* state
= wxPyBeginBlockThreads();
626 wxPyEndBlockThreads(state
);
629 PyObject
* wxPyEvtSelfRef::GetSelf() const {
635 wxPyEvent::wxPyEvent(int id
)
639 wxPyEvent::~wxPyEvent() {
642 // This one is so the event object can be Cloned...
643 void wxPyEvent::CopyObject(wxObject
& dest
) const {
644 wxEvent::CopyObject(dest
);
645 ((wxPyEvent
*)&dest
)->SetSelf(m_self
, TRUE
);
649 IMPLEMENT_DYNAMIC_CLASS(wxPyEvent
, wxEvent
);
652 wxPyCommandEvent::wxPyCommandEvent(wxEventType commandType
, int id
)
653 : wxCommandEvent(commandType
, id
) {
656 wxPyCommandEvent::~wxPyCommandEvent() {
659 void wxPyCommandEvent::CopyObject(wxObject
& dest
) const {
660 wxCommandEvent::CopyObject(dest
);
661 ((wxPyCommandEvent
*)&dest
)->SetSelf(m_self
, TRUE
);
665 IMPLEMENT_DYNAMIC_CLASS(wxPyCommandEvent
, wxCommandEvent
);
669 //---------------------------------------------------------------------------
670 //---------------------------------------------------------------------------
673 wxPyTimer::wxPyTimer(PyObject
* callback
) {
678 wxPyTimer::~wxPyTimer() {
679 wxPyTState
* state
= wxPyBeginBlockThreads();
681 wxPyEndBlockThreads(state
);
684 void wxPyTimer::Notify() {
685 if (!func
|| func
== Py_None
) {
689 wxPyTState
* state
= wxPyBeginBlockThreads();
692 PyObject
* args
= Py_BuildValue("()");
694 result
= PyEval_CallObject(func
, args
);
703 wxPyEndBlockThreads(state
);
709 //---------------------------------------------------------------------------
710 //---------------------------------------------------------------------------
711 // Convert a wxList to a Python List
713 PyObject
* wxPy_ConvertList(wxListBase
* list
, const char* className
) {
717 wxNode
* node
= list
->First();
719 wxPyTState
* state
= wxPyBeginBlockThreads();
720 pyList
= PyList_New(0);
722 wxObj
= node
->Data();
723 pyObj
= wxPyMake_wxObject(wxObj
); //wxPyConstructObject(wxObj, className);
724 PyList_Append(pyList
, pyObj
);
727 wxPyEndBlockThreads(state
);
731 //----------------------------------------------------------------------
733 long wxPyGetWinHandle(wxWindow
* win
) {
735 return (long)win
->GetHandle();
738 // Find and return the actual X-Window.
740 if (win
->m_wxwindow
) {
741 GdkWindowPrivate
* bwin
= (GdkWindowPrivate
*)GTK_PIZZA(win
->m_wxwindow
)->bin_window
;
743 return (long)bwin
->xwindow
;
750 //----------------------------------------------------------------------
751 // Some helper functions for typemaps in my_typemaps.i, so they won't be
752 // included in every file...
755 byte
* byte_LIST_helper(PyObject
* source
) {
756 if (!PyList_Check(source
)) {
757 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
760 int count
= PyList_Size(source
);
761 byte
* temp
= new byte
[count
];
763 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
766 for (int x
=0; x
<count
; x
++) {
767 PyObject
* o
= PyList_GetItem(source
, x
);
768 if (! PyInt_Check(o
)) {
769 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
772 temp
[x
] = (byte
)PyInt_AsLong(o
);
778 int* int_LIST_helper(PyObject
* source
) {
779 if (!PyList_Check(source
)) {
780 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
783 int count
= PyList_Size(source
);
784 int* temp
= new int[count
];
786 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
789 for (int x
=0; x
<count
; x
++) {
790 PyObject
* o
= PyList_GetItem(source
, x
);
791 if (! PyInt_Check(o
)) {
792 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
795 temp
[x
] = PyInt_AsLong(o
);
801 long* long_LIST_helper(PyObject
* source
) {
802 if (!PyList_Check(source
)) {
803 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
806 int count
= PyList_Size(source
);
807 long* temp
= new long[count
];
809 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
812 for (int x
=0; x
<count
; x
++) {
813 PyObject
* o
= PyList_GetItem(source
, x
);
814 if (! PyInt_Check(o
)) {
815 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
818 temp
[x
] = PyInt_AsLong(o
);
824 char** string_LIST_helper(PyObject
* source
) {
825 if (!PyList_Check(source
)) {
826 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
829 int count
= PyList_Size(source
);
830 char** temp
= new char*[count
];
832 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
835 for (int x
=0; x
<count
; x
++) {
836 PyObject
* o
= PyList_GetItem(source
, x
);
837 if (! PyString_Check(o
)) {
838 PyErr_SetString(PyExc_TypeError
, "Expected a list of strings.");
841 temp
[x
] = PyString_AsString(o
);
846 //--------------------------------
847 // Part of patch from Tim Hochberg
848 static inline bool wxPointFromObjects(PyObject
* o1
, PyObject
* o2
, wxPoint
* point
) {
849 if (PyInt_Check(o1
) && PyInt_Check(o2
)) {
850 point
->x
= PyInt_AS_LONG(o1
);
851 point
->y
= PyInt_AS_LONG(o2
);
854 if (PyFloat_Check(o1
) && PyFloat_Check(o2
)) {
855 point
->x
= (int)PyFloat_AS_DOUBLE(o1
);
856 point
->y
= (int)PyFloat_AS_DOUBLE(o2
);
859 if (PyInstance_Check(o1
) || PyInstance_Check(o2
)) {
860 // Disallow instances because they can cause havok
863 if (PyNumber_Check(o1
) && PyNumber_Check(o2
)) {
864 // I believe this excludes instances, so this should be safe without INCREFFing o1 and o2
865 point
->x
= PyInt_AsLong(o1
);
866 point
->y
= PyInt_AsLong(o2
);
873 wxPoint
* wxPoint_LIST_helper(PyObject
* source
, int *count
) {
874 // Putting all of the declarations here allows
875 // us to put the error handling all in one place.
878 PyObject
*o
, *o1
, *o2
;
879 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
881 if (!PySequence_Check(source
)) {
885 // The length of the sequence is returned in count.
886 *count
= PySequence_Length(source
);
891 temp
= new wxPoint
[*count
];
893 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
896 for (x
=0; x
<*count
; x
++) {
897 // Get an item: try fast way first.
899 o
= PySequence_Fast_GET_ITEM(source
, x
);
902 o
= PySequence_GetItem(source
, x
);
908 // Convert o to wxPoint.
909 if ((PyTuple_Check(o
) && PyTuple_GET_SIZE(o
) == 2) ||
910 (PyList_Check(o
) && PyList_GET_SIZE(o
) == 2)) {
911 o1
= PySequence_Fast_GET_ITEM(o
, 0);
912 o2
= PySequence_Fast_GET_ITEM(o
, 1);
913 if (!wxPointFromObjects(o1
, o2
, &temp
[x
])) {
917 else if (PyInstance_Check(o
)) {
919 if (SWIG_GetPtrObj(o
, (void **)&pt
, "_wxPoint_p")) {
924 else if (PySequence_Check(o
) && PySequence_Length(o
) == 2) {
925 o1
= PySequence_GetItem(o
, 0);
926 o2
= PySequence_GetItem(o
, 1);
927 if (!wxPointFromObjects(o1
, o2
, &temp
[x
])) {
951 PyErr_SetString(PyExc_TypeError
, "Expected a sequence of length-2 sequences or wxPoints.");
955 //------------------------------
958 wxBitmap
** wxBitmap_LIST_helper(PyObject
* source
) {
959 if (!PyList_Check(source
)) {
960 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
963 int count
= PyList_Size(source
);
964 wxBitmap
** temp
= new wxBitmap
*[count
];
966 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
969 for (int x
=0; x
<count
; x
++) {
970 PyObject
* o
= PyList_GetItem(source
, x
);
971 if (PyInstance_Check(o
)) {
973 if (SWIG_GetPtrObj(o
, (void **) &pt
,"_wxBitmap_p")) {
974 PyErr_SetString(PyExc_TypeError
,"Expected _wxBitmap_p.");
980 PyErr_SetString(PyExc_TypeError
, "Expected a list of wxBitmaps.");
989 wxString
* wxString_LIST_helper(PyObject
* source
) {
990 if (!PyList_Check(source
)) {
991 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
994 int count
= PyList_Size(source
);
995 wxString
* temp
= new wxString
[count
];
997 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
1000 for (int x
=0; x
<count
; x
++) {
1001 PyObject
* o
= PyList_GetItem(source
, x
);
1002 #if PYTHON_API_VERSION >= 1009
1003 if (! PyString_Check(o
) && ! PyUnicode_Check(o
)) {
1004 PyErr_SetString(PyExc_TypeError
, "Expected a list of string or unicode objects.");
1010 if (PyString_AsStringAndSize(o
, &buff
, &length
) == -1)
1012 temp
[x
] = wxString(buff
, length
);
1014 if (! PyString_Check(o
)) {
1015 PyErr_SetString(PyExc_TypeError
, "Expected a list of strings.");
1018 temp
[x
] = PyString_AsString(o
);
1025 wxAcceleratorEntry
* wxAcceleratorEntry_LIST_helper(PyObject
* source
) {
1026 if (!PyList_Check(source
)) {
1027 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
1030 int count
= PyList_Size(source
);
1031 wxAcceleratorEntry
* temp
= new wxAcceleratorEntry
[count
];
1033 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
1036 for (int x
=0; x
<count
; x
++) {
1037 PyObject
* o
= PyList_GetItem(source
, x
);
1038 if (PyInstance_Check(o
)) {
1039 wxAcceleratorEntry
* ae
;
1040 if (SWIG_GetPtrObj(o
, (void **) &ae
,"_wxAcceleratorEntry_p")) {
1041 PyErr_SetString(PyExc_TypeError
,"Expected _wxAcceleratorEntry_p.");
1046 else if (PyTuple_Check(o
)) {
1047 PyObject
* o1
= PyTuple_GetItem(o
, 0);
1048 PyObject
* o2
= PyTuple_GetItem(o
, 1);
1049 PyObject
* o3
= PyTuple_GetItem(o
, 2);
1050 temp
[x
].Set(PyInt_AsLong(o1
), PyInt_AsLong(o2
), PyInt_AsLong(o3
));
1053 PyErr_SetString(PyExc_TypeError
, "Expected a list of 3-tuples or wxAcceleratorEntry objects.");
1061 wxPen
** wxPen_LIST_helper(PyObject
* source
) {
1062 if (!PyList_Check(source
)) {
1063 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
1066 int count
= PyList_Size(source
);
1067 wxPen
** temp
= new wxPen
*[count
];
1069 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
1072 for (int x
=0; x
<count
; x
++) {
1073 PyObject
* o
= PyList_GetItem(source
, x
);
1074 if (PyInstance_Check(o
)) {
1076 if (SWIG_GetPtrObj(o
, (void **) &pt
,"_wxPen_p")) {
1078 PyErr_SetString(PyExc_TypeError
,"Expected _wxPen_p.");
1085 PyErr_SetString(PyExc_TypeError
, "Expected a list of wxPens.");
1093 bool _2int_seq_helper(PyObject
* source
, int* i1
, int* i2
) {
1094 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
1097 if (!PySequence_Check(source
) || PySequence_Length(source
) != 2)
1101 o1
= PySequence_Fast_GET_ITEM(source
, 0);
1102 o2
= PySequence_Fast_GET_ITEM(source
, 1);
1105 o1
= PySequence_GetItem(source
, 0);
1106 o2
= PySequence_GetItem(source
, 1);
1109 *i1
= PyInt_AsLong(o1
);
1110 *i2
= PyInt_AsLong(o2
);
1120 bool _4int_seq_helper(PyObject
* source
, int* i1
, int* i2
, int* i3
, int* i4
) {
1121 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
1122 PyObject
*o1
, *o2
, *o3
, *o4
;
1124 if (!PySequence_Check(source
) || PySequence_Length(source
) != 4)
1128 o1
= PySequence_Fast_GET_ITEM(source
, 0);
1129 o2
= PySequence_Fast_GET_ITEM(source
, 1);
1130 o3
= PySequence_Fast_GET_ITEM(source
, 2);
1131 o4
= PySequence_Fast_GET_ITEM(source
, 3);
1134 o1
= PySequence_GetItem(source
, 0);
1135 o2
= PySequence_GetItem(source
, 1);
1136 o3
= PySequence_GetItem(source
, 2);
1137 o4
= PySequence_GetItem(source
, 3);
1140 *i1
= PyInt_AsLong(o1
);
1141 *i2
= PyInt_AsLong(o2
);
1142 *i3
= PyInt_AsLong(o3
);
1143 *i4
= PyInt_AsLong(o4
);
1155 //----------------------------------------------------------------------
1157 bool wxSize_helper(PyObject
* source
, wxSize
** obj
) {
1159 // If source is an object instance then it may already be the right type
1160 if (PyInstance_Check(source
)) {
1162 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxSize_p"))
1167 // otherwise a 2-tuple of integers is expected
1168 else if (PySequence_Check(source
) && PyObject_Length(source
) == 2) {
1169 PyObject
* o1
= PySequence_GetItem(source
, 0);
1170 PyObject
* o2
= PySequence_GetItem(source
, 1);
1171 **obj
= wxSize(PyInt_AsLong(o1
), PyInt_AsLong(o2
));
1176 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of integers or a wxSize object.");
1180 bool wxPoint_helper(PyObject
* source
, wxPoint
** obj
) {
1182 // If source is an object instance then it may already be the right type
1183 if (PyInstance_Check(source
)) {
1185 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxPoint_p"))
1190 // otherwise a length-2 sequence of integers is expected
1191 if (PySequence_Check(source
) && PySequence_Length(source
) == 2) {
1192 PyObject
* o1
= PySequence_GetItem(source
, 0);
1193 PyObject
* o2
= PySequence_GetItem(source
, 1);
1194 // This should really check for integers, not numbers -- but that would break code.
1195 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
)) {
1200 **obj
= wxPoint(PyInt_AsLong(o1
), PyInt_AsLong(o2
));
1206 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of integers or a wxPoint object.");
1212 bool wxRealPoint_helper(PyObject
* source
, wxRealPoint
** obj
) {
1214 // If source is an object instance then it may already be the right type
1215 if (PyInstance_Check(source
)) {
1217 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxRealPoint_p"))
1222 // otherwise a 2-tuple of floats is expected
1223 else if (PySequence_Check(source
) && PyObject_Length(source
) == 2) {
1224 PyObject
* o1
= PySequence_GetItem(source
, 0);
1225 PyObject
* o2
= PySequence_GetItem(source
, 1);
1226 **obj
= wxRealPoint(PyFloat_AsDouble(o1
), PyFloat_AsDouble(o2
));
1231 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of floats or a wxRealPoint object.");
1238 bool wxRect_helper(PyObject
* source
, wxRect
** obj
) {
1240 // If source is an object instance then it may already be the right type
1241 if (PyInstance_Check(source
)) {
1243 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxRect_p"))
1248 // otherwise a 4-tuple of integers is expected
1249 else if (PySequence_Check(source
) && PyObject_Length(source
) == 4) {
1250 PyObject
* o1
= PySequence_GetItem(source
, 0);
1251 PyObject
* o2
= PySequence_GetItem(source
, 1);
1252 PyObject
* o3
= PySequence_GetItem(source
, 2);
1253 PyObject
* o4
= PySequence_GetItem(source
, 3);
1254 **obj
= wxRect(PyInt_AsLong(o1
), PyInt_AsLong(o2
),
1255 PyInt_AsLong(o3
), PyInt_AsLong(o4
));
1260 PyErr_SetString(PyExc_TypeError
, "Expected a 4-tuple of integers or a wxRect object.");
1266 bool wxColour_helper(PyObject
* source
, wxColour
** obj
) {
1268 // If source is an object instance then it may already be the right type
1269 if (PyInstance_Check(source
)) {
1271 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxColour_p"))
1276 // otherwise a string is expected
1277 else if (PyString_Check(source
)) {
1278 wxString spec
= PyString_AS_STRING(source
);
1279 if (spec
[0U] == '#' && spec
.Length() == 7) { // It's #RRGGBB
1281 int red
= strtol(spec
.Mid(1,2), &junk
, 16);
1282 int green
= strtol(spec
.Mid(3,2), &junk
, 16);
1283 int blue
= strtol(spec
.Mid(5,2), &junk
, 16);
1284 **obj
= wxColour(red
, green
, blue
);
1287 else { // it's a colour name
1288 **obj
= wxColour(spec
);
1294 PyErr_SetString(PyExc_TypeError
, "Expected a wxColour object or a string containing a colour name or '#RRGGBB'.");
1299 //----------------------------------------------------------------------
1300 //----------------------------------------------------------------------
1301 //----------------------------------------------------------------------