1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Helper functions/classes for the wxPython extension module
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
17 #include "pyistream.h"
20 #include <wx/msw/private.h>
21 #include <wx/msw/winundef.h>
22 #include <wx/msw/msvcrt.h>
27 #include <gdk/gdkprivate.h>
28 #include <wx/gtk/win_gtk.h>
31 #include <wx/clipbrd.h>
32 #include <wx/mimetype.h>
35 //----------------------------------------------------------------------
37 #if PYTHON_API_VERSION <= 1007 && wxUSE_UNICODE
38 #error Python must support Unicode to use wxWindows Unicode
41 //----------------------------------------------------------------------
43 wxPyApp
* wxPythonApp
= NULL
; // Global instance of application object
44 bool wxPyDoCleanup
= FALSE
;
45 bool wxPyDoingCleanup
= FALSE
;
48 #ifdef WXP_WITH_THREAD
49 struct wxPyThreadState
{
51 PyThreadState
* tstate
;
53 wxPyThreadState(unsigned long _tid
=0, PyThreadState
* _tstate
=NULL
)
54 : tid(_tid
), tstate(_tstate
) {}
57 #include <wx/dynarray.h>
58 WX_DECLARE_OBJARRAY(wxPyThreadState
, wxPyThreadStateArray
);
59 #include <wx/arrimpl.cpp>
60 WX_DEFINE_OBJARRAY(wxPyThreadStateArray
);
62 wxPyThreadStateArray
* wxPyTStates
= NULL
;
63 wxMutex
* wxPyTMutex
= NULL
;
67 static PyObject
* wxPython_dict
= NULL
;
68 static PyObject
* wxPyPtrTypeMap
= NULL
;
69 static PyObject
* wxPyAssertionError
= NULL
;
72 #ifdef __WXMSW__ // If building for win32...
73 //----------------------------------------------------------------------
74 // This gets run when the DLL is loaded. We just need to save a handle.
75 //----------------------------------------------------------------------
78 HINSTANCE hinstDLL
, // handle to DLL module
79 DWORD fdwReason
, // reason for calling function
80 LPVOID lpvReserved
// reserved
83 // If wxPython is embedded in another wxWindows app then
84 // the inatance has already been set.
85 if (! wxGetInstance())
86 wxSetInstance(hinstDLL
);
91 //----------------------------------------------------------------------
92 // Classes for implementing the wxp main application shell.
93 //----------------------------------------------------------------------
95 IMPLEMENT_ABSTRACT_CLASS(wxPyApp
, wxApp
);
99 m_assertMode
= wxPYAPP_ASSERT_EXCEPTION
;
103 wxPyApp::~wxPyApp() {
107 // This one isn't acutally called... We fake it with __wxStart()
108 bool wxPyApp::OnInit() {
113 int wxPyApp::MainLoop() {
116 DeletePendingObjects();
117 bool initialized
= wxTopLevelWindows
.GetCount() != 0;
119 m_initialized
= initialized
;
123 if ( m_exitOnFrameDelete
== Later
) {
124 m_exitOnFrameDelete
= Yes
;
127 retval
= wxApp::MainLoop();
134 bool wxPyApp::OnInitGui() {
136 wxApp::OnInitGui(); // in this case always call the base class version
137 // wxPyBeginBlockThreads(); *** only called from within __wxStart so we already have the GIL
138 if (wxPyCBH_findCallback(m_myInst
, "OnInitGui"))
139 rval
= wxPyCBH_callCallback(m_myInst
, Py_BuildValue("()"));
140 // wxPyEndBlockThreads(); ***
145 int wxPyApp::OnExit() {
147 wxPyBeginBlockThreads();
148 if (wxPyCBH_findCallback(m_myInst
, "OnExit"))
149 rval
= wxPyCBH_callCallback(m_myInst
, Py_BuildValue("()"));
150 wxPyEndBlockThreads();
151 wxApp::OnExit(); // in this case always call the base class version
157 void wxPyApp::OnAssert(const wxChar
*file
,
162 // If the OnAssert is overloaded in the Python class then call it...
164 wxPyBeginBlockThreads();
165 if ((found
= wxPyCBH_findCallback(m_myInst
, "OnAssert"))) {
166 PyObject
* fso
= wx2PyString(file
);
167 PyObject
* cso
= wx2PyString(file
);
170 mso
= wx2PyString(file
);
172 mso
= Py_None
; Py_INCREF(Py_None
);
174 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OiOO)", fso
, line
, cso
, mso
));
179 wxPyEndBlockThreads();
181 // ...otherwise do our own thing with it
184 if (m_assertMode
& wxPYAPP_ASSERT_SUPPRESS
)
187 // turn it into a Python exception?
188 if (m_assertMode
& wxPYAPP_ASSERT_EXCEPTION
) {
191 buf
.Printf(wxT("C++ assertion \"%s\" failed in %s(%d)"), cond
, file
, line
);
198 wxPyBeginBlockThreads();
199 PyObject
* s
= wx2PyString(buf
);
200 PyErr_SetObject(wxPyAssertionError
, s
);
202 wxPyEndBlockThreads();
204 // Now when control returns to whatever API wrapper was called from
205 // Python it should detect that an exception is set and will return
206 // NULL, signalling the exception to Python.
209 // Send it to the normal log destination, but only if
210 // not _DIALOG because it will call this too
211 if ( (m_assertMode
& wxPYAPP_ASSERT_LOG
) && !(m_assertMode
& wxPYAPP_ASSERT_DIALOG
)) {
214 buf
.Printf(wxT("%s(%d): assert \"%s\" failed"),
223 // do the normal wx assert dialog?
224 if (m_assertMode
& wxPYAPP_ASSERT_DIALOG
)
225 wxApp::OnAssert(file
, line
, cond
, msg
);
232 bool wxPyApp::GetMacDefaultEncodingIsPC() {
234 return s_macDefaultEncodingIsPC
;
241 bool wxPyApp::GetMacSupportPCMenuShortcuts() {
243 return s_macSupportPCMenuShortcuts
;
250 long wxPyApp::GetMacAboutMenuItemId() {
252 return s_macAboutMenuItemId
;
259 long wxPyApp::GetMacPreferencesMenuItemId() {
261 return s_macPreferencesMenuItemId
;
268 long wxPyApp::GetMacExitMenuItemId() {
270 return s_macExitMenuItemId
;
277 wxString
wxPyApp::GetMacHelpMenuTitleName() {
279 return s_macHelpMenuTitleName
;
281 return wxEmptyString
;
286 void wxPyApp::SetMacDefaultEncodingIsPC(bool val
) {
288 s_macDefaultEncodingIsPC
= val
;
293 void wxPyApp::SetMacSupportPCMenuShortcuts(bool val
) {
295 s_macSupportPCMenuShortcuts
= val
;
300 void wxPyApp::SetMacAboutMenuItemId(long val
) {
302 s_macAboutMenuItemId
= val
;
307 void wxPyApp::SetMacPreferencesMenuItemId(long val
) {
309 s_macPreferencesMenuItemId
= val
;
314 void wxPyApp::SetMacExitMenuItemId(long val
) {
316 s_macExitMenuItemId
= val
;
321 void wxPyApp::SetMacHelpMenuTitleName(const wxString
& val
) {
323 s_macHelpMenuTitleName
= val
;
329 //---------------------------------------------------------------------
330 //----------------------------------------------------------------------
334 static char* wxPyCopyCString(const wxChar
* src
)
336 wxWX2MBbuf buff
= (wxWX2MBbuf
)wxConvCurrent
->cWX2MB(src
);
337 size_t len
= strlen(buff
);
338 char* dest
= new char[len
+1];
344 static char* wxPyCopyCString(const char* src
) // we need a char version too
346 size_t len
= strlen(src
);
347 char* dest
= new char[len
+1];
353 static wxChar
* wxPyCopyWString(const char *src
)
355 //wxMB2WXbuf buff = wxConvCurrent->cMB2WX(src);
356 wxString
str(src
, *wxConvCurrent
);
357 return copystring(str
);
361 static wxChar
* wxPyCopyWString(const wxChar
*src
)
363 return copystring(src
);
369 //----------------------------------------------------------------------
371 // This function is called when the wxc module is imported to do some initial
372 // setup. (Before there is a wxApp object.)
373 void __wxPreStart(PyObject
* moduleDict
)
377 // wxCrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF);
380 #ifdef WXP_WITH_THREAD
381 PyEval_InitThreads();
382 wxPyTStates
= new wxPyThreadStateArray
;
383 wxPyTMutex
= new wxMutex
;
386 // Ensure that the build options in the DLL (or whatever) match this build
387 wxApp::CheckBuildOptions(wxBuildOptions());
389 // Create an exception object to use for wxASSERTions
390 wxPyAssertionError
= PyErr_NewException("wxPython.wxc.wxPyAssertionError",
391 PyExc_AssertionError
, NULL
);
392 PyDict_SetItemString(moduleDict
, "wxPyAssertionError", wxPyAssertionError
);
397 // Initialize wxWindows and bootstrap the user application by calling the
398 // wxApp's OnInit, which is a parameter to this funciton. See wxApp.__init__
399 // in _extras.py to learn how the bootstrap is started.
400 PyObject
* __wxStart(PyObject
* /* self */, PyObject
* args
)
402 PyObject
* onInitFunc
= NULL
;
403 PyObject
* arglist
= NULL
;
404 PyObject
* result
= NULL
;
405 PyObject
* pyint
= NULL
;
408 if (!PyArg_ParseTuple(args
, "O", &onInitFunc
))
411 // Get any command-line args passed to this program from the sys module
414 PyObject
* sysargv
= PySys_GetObject("argv");
415 if (sysargv
!= NULL
) {
416 argc
= PyList_Size(sysargv
);
417 argv
= new char*[argc
+1];
419 for(x
=0; x
<argc
; x
++) {
420 PyObject
*pyArg
= PyList_GetItem(sysargv
, x
);
421 argv
[x
] = PyString_AsString(pyArg
);
426 if (! wxEntryStart(argc
, argv
) ) {
427 PyErr_SetString(PyExc_SystemError
, // is this the right one?
428 "wxEntryStart failed!");
434 // The stock objects were all NULL when they were loaded into
435 // SWIG generated proxies, so re-init those now...
436 wxPy_ReinitStockObjects();
439 // Call the Python wxApp's OnInit function
440 arglist
= PyTuple_New(0);
441 result
= PyEval_CallObject(onInitFunc
, arglist
);
443 if (!result
) { // an exception was raised.
447 pyint
= PyNumber_Int(result
);
449 PyErr_SetString(PyExc_TypeError
, "OnInit should return a boolean value");
452 bResult
= PyInt_AS_LONG(pyint
);
454 PyErr_SetString(PyExc_SystemExit
, "OnInit returned FALSE, exiting...");
459 wxTheApp
->m_initialized
= (wxTopLevelWindows
.GetCount() > 0);
476 wxPyDoingCleanup
= TRUE
;
479 #ifdef WXP_WITH_THREAD
482 wxPyTStates
->Empty();
491 PyObject
* __wxSetDictionary(PyObject
* /* self */, PyObject
* args
)
494 if (!PyArg_ParseTuple(args
, "O", &wxPython_dict
))
497 if (!PyDict_Check(wxPython_dict
)) {
498 PyErr_SetString(PyExc_TypeError
, "_wxSetDictionary must have dictionary object!");
502 if (! wxPyPtrTypeMap
)
503 wxPyPtrTypeMap
= PyDict_New();
504 PyDict_SetItemString(wxPython_dict
, "__wxPyPtrTypeMap", wxPyPtrTypeMap
);
508 #define wxPlatform "__WXMOTIF__"
511 #define wxPlatform "__WXX11__"
514 #define wxPlatform "__WXGTK__"
516 #if defined(__WIN32__) || defined(__WXMSW__)
517 #define wxPlatform "__WXMSW__"
520 #define wxPlatform "__WXMAC__"
529 PyDict_SetItemString(wxPython_dict
, "wxPlatform", PyString_FromString(wxPlatform
));
530 PyDict_SetItemString(wxPython_dict
, "wxUSE_UNICODE", PyInt_FromLong(wxUSE_UNICODE
));
531 PyDict_SetItemString(wxPython_dict
, "__WXDEBUG__", PyInt_FromLong(wxdebug
));
538 //---------------------------------------------------------------------------
540 // The stock objects are no longer created when the wxc module is imported, but
541 // only after the app object has been created. This function will be called before
542 // OnInit is called so we can hack the new pointer values into the obj.this attributes.
544 void wxPy_ReinitStockObjects()
552 #define REINITOBJ(name, type) \
553 obj = PyDict_GetItemString(wxPython_dict, #name); \
554 wxASSERT_MSG(obj != NULL, wxT("Unable to find stock object for " #name)); \
555 SWIG_MakePtr(ptrbuf, (char *) name, "_" #type "_p"); \
556 ptrobj = PyString_FromString(ptrbuf); \
557 PyObject_SetAttrString(obj, "this", ptrobj); \
560 #define REINITOBJ2(name, type) \
561 obj = PyDict_GetItemString(wxPython_dict, #name); \
562 wxASSERT_MSG(obj != NULL, wxT("Unable to find stock object for " #name)); \
563 SWIG_MakePtr(ptrbuf, (char *) &name, "_" #type "_p"); \
564 ptrobj = PyString_FromString(ptrbuf); \
565 PyObject_SetAttrString(obj, "this", ptrobj); \
569 REINITOBJ(wxNORMAL_FONT
, wxFont
);
570 REINITOBJ(wxSMALL_FONT
, wxFont
);
571 REINITOBJ(wxITALIC_FONT
, wxFont
);
572 REINITOBJ(wxSWISS_FONT
, wxFont
);
574 REINITOBJ(wxRED_PEN
, wxPen
);
575 REINITOBJ(wxCYAN_PEN
, wxPen
);
576 REINITOBJ(wxGREEN_PEN
, wxPen
);
577 REINITOBJ(wxBLACK_PEN
, wxPen
);
578 REINITOBJ(wxWHITE_PEN
, wxPen
);
579 REINITOBJ(wxTRANSPARENT_PEN
, wxPen
);
580 REINITOBJ(wxBLACK_DASHED_PEN
, wxPen
);
581 REINITOBJ(wxGREY_PEN
, wxPen
);
582 REINITOBJ(wxMEDIUM_GREY_PEN
, wxPen
);
583 REINITOBJ(wxLIGHT_GREY_PEN
, wxPen
);
585 REINITOBJ(wxBLUE_BRUSH
, wxBrush
);
586 REINITOBJ(wxGREEN_BRUSH
, wxBrush
);
587 REINITOBJ(wxWHITE_BRUSH
, wxBrush
);
588 REINITOBJ(wxBLACK_BRUSH
, wxBrush
);
589 REINITOBJ(wxTRANSPARENT_BRUSH
, wxBrush
);
590 REINITOBJ(wxCYAN_BRUSH
, wxBrush
);
591 REINITOBJ(wxRED_BRUSH
, wxBrush
);
592 REINITOBJ(wxGREY_BRUSH
, wxBrush
);
593 REINITOBJ(wxMEDIUM_GREY_BRUSH
, wxBrush
);
594 REINITOBJ(wxLIGHT_GREY_BRUSH
, wxBrush
);
596 REINITOBJ(wxBLACK
, wxColour
);
597 REINITOBJ(wxWHITE
, wxColour
);
598 REINITOBJ(wxRED
, wxColour
);
599 REINITOBJ(wxBLUE
, wxColour
);
600 REINITOBJ(wxGREEN
, wxColour
);
601 REINITOBJ(wxCYAN
, wxColour
);
602 REINITOBJ(wxLIGHT_GREY
, wxColour
);
604 REINITOBJ(wxSTANDARD_CURSOR
, wxCursor
);
605 REINITOBJ(wxHOURGLASS_CURSOR
, wxCursor
);
606 REINITOBJ(wxCROSS_CURSOR
, wxCursor
);
608 REINITOBJ2(wxNullBitmap
, wxBitmap
);
609 REINITOBJ2(wxNullIcon
, wxIcon
);
610 REINITOBJ2(wxNullCursor
, wxCursor
);
611 REINITOBJ2(wxNullPen
, wxPen
);
612 REINITOBJ2(wxNullBrush
, wxBrush
);
613 REINITOBJ2(wxNullPalette
, wxPalette
);
614 REINITOBJ2(wxNullFont
, wxFont
);
615 REINITOBJ2(wxNullColour
, wxColour
);
617 REINITOBJ(wxTheFontList
, wxFontList
);
618 REINITOBJ(wxThePenList
, wxPenList
);
619 REINITOBJ(wxTheBrushList
, wxBrushList
);
620 REINITOBJ(wxTheColourDatabase
, wxColourDatabase
);
623 REINITOBJ(wxTheClipboard
, wxClipboard
);
624 REINITOBJ(wxTheMimeTypesManager
, wxMimeTypesManager
);
625 REINITOBJ2(wxDefaultValidator
, wxValidator
);
626 REINITOBJ2(wxNullImage
, wxImage
);
627 REINITOBJ2(wxNullAcceleratorTable
, wxAcceleratorTable
);
633 //---------------------------------------------------------------------------
635 void wxPyClientData_dtor(wxPyClientData
* self
) {
636 if (! wxPyDoingCleanup
) { // Don't do it during cleanup as Python
637 // may have already garbage collected the object...
638 wxPyBeginBlockThreads();
639 Py_DECREF(self
->m_obj
);
640 wxPyEndBlockThreads();
644 void wxPyUserData_dtor(wxPyUserData
* self
) {
645 if (! wxPyDoingCleanup
) {
646 wxPyBeginBlockThreads();
647 Py_DECREF(self
->m_obj
);
648 wxPyEndBlockThreads();
653 // This is called when an OOR controled object is being destroyed. Although
654 // the C++ object is going away there is no way to force the Python object
655 // (and all references to it) to die too. This causes problems (crashes) in
656 // wxPython when a python shadow object attempts to call a C++ method using
657 // the now bogus pointer... So to try and prevent this we'll do a little black
658 // magic and change the class of the python instance to a class that will
659 // raise an exception for any attempt to call methods with it. See
660 // _wxPyDeadObject in _extras.py for the implementation of this class.
661 void wxPyOORClientData_dtor(wxPyOORClientData
* self
) {
663 static PyObject
* deadObjectClass
= NULL
;
665 wxPyBeginBlockThreads();
666 if (deadObjectClass
== NULL
) {
667 deadObjectClass
= PyDict_GetItemString(wxPython_dict
, "_wxPyDeadObject");
668 wxASSERT_MSG(deadObjectClass
!= NULL
, wxT("Can't get _wxPyDeadObject class!"));
669 Py_INCREF(deadObjectClass
);
673 // Only if there is more than one reference to the object
674 if ( !wxPyDoingCleanup
&& self
->m_obj
->ob_refcnt
> 1 ) {
675 wxASSERT_MSG(PyInstance_Check(self
->m_obj
), wxT("m_obj not an instance!?!?!"));
677 // Call __del__, if there is one.
678 PyObject
* func
= PyObject_GetAttrString(self
->m_obj
, "__del__");
680 PyObject
* rv
= PyObject_CallMethod(self
->m_obj
, "__del__", NULL
);
684 if (PyErr_Occurred())
685 PyErr_Clear(); // just ignore it for now
687 // Clear the instance's dictionary
688 PyInstanceObject
* inst
= (PyInstanceObject
*)self
->m_obj
;
689 PyDict_Clear(inst
->in_dict
);
691 // put the name of the old class into the instance, and then reset the
692 // class to be the dead class.
693 PyDict_SetItemString(inst
->in_dict
, "_name", inst
->in_class
->cl_name
);
694 inst
->in_class
= (PyClassObject
*)deadObjectClass
;
695 Py_INCREF(deadObjectClass
);
698 // m_obj is DECREF's in the base class dtor...
699 wxPyEndBlockThreads();
703 //---------------------------------------------------------------------------
704 // Stuff used by OOR to find the right wxPython class type to return and to
708 // The pointer type map is used when the "pointer" type name generated by SWIG
709 // is not the same as the shadow class name, for example wxPyTreeCtrl
710 // vs. wxTreeCtrl. It needs to be referenced in Python as well as from C++,
711 // so we'll just make it a Python dictionary in the wx module's namespace.
712 // (See __wxSetDictionary)
713 void wxPyPtrTypeMap_Add(const char* commonName
, const char* ptrName
) {
714 if (! wxPyPtrTypeMap
)
715 wxPyPtrTypeMap
= PyDict_New();
716 PyDict_SetItemString(wxPyPtrTypeMap
,
718 PyString_FromString((char*)ptrName
));
723 PyObject
* wxPyClassExists(const wxString
& className
) {
726 wxString
name(className
);
727 char buff
[64]; // should always be big enough...
732 // Try the name as-is first
733 sprintf(buff
, "%sPtr", (const char*)name
.mbc_str());
734 PyObject
* classobj
= PyDict_GetItemString(wxPython_dict
, buff
);
736 // if not found see if there is a mapped name for it
738 if ((item
= PyDict_GetItemString(wxPyPtrTypeMap
, (char*)(const char*)name
.mbc_str())) != NULL
) {
739 name
= wxString(PyString_AsString(item
), *wxConvCurrent
);
740 sprintf(buff
, "%sPtr", (const char*)name
.mbc_str());
741 classobj
= PyDict_GetItemString(wxPython_dict
, buff
);
745 return classobj
; // returns NULL if not found
749 PyObject
* wxPyMake_wxObject(wxObject
* source
, bool checkEvtHandler
) {
750 PyObject
* target
= NULL
;
751 bool isEvtHandler
= FALSE
;
754 // If it's derived from wxEvtHandler then there may
755 // already be a pointer to a Python object that we can use
757 if (checkEvtHandler
&& wxIsKindOf(source
, wxEvtHandler
)) {
759 wxEvtHandler
* eh
= (wxEvtHandler
*)source
;
760 wxPyOORClientData
* data
= (wxPyOORClientData
*)eh
->GetClientObject();
762 target
= data
->m_obj
;
768 // Otherwise make it the old fashioned way by making a
769 // new shadow object and putting this pointer in it.
770 wxClassInfo
* info
= source
->GetClassInfo();
771 wxString name
= info
->GetClassName();
772 PyObject
* klass
= wxPyClassExists(name
);
773 while (info
&& !klass
) {
774 name
= (wxChar
*)info
->GetBaseClassName1();
775 info
= wxClassInfo::FindClass(name
);
776 klass
= wxPyClassExists(name
);
779 target
= wxPyConstructObject(source
, name
, klass
, FALSE
);
780 if (target
&& isEvtHandler
)
781 ((wxEvtHandler
*)source
)->SetClientObject(new wxPyOORClientData(target
));
783 wxString
msg(wxT("wxPython class not found for "));
784 msg
+= source
->GetClassInfo()->GetClassName();
785 PyErr_SetString(PyExc_NameError
, msg
.mbc_str());
789 } else { // source was NULL so return None.
790 Py_INCREF(Py_None
); target
= Py_None
;
796 PyObject
* wxPyMake_wxSizer(wxSizer
* source
) {
797 PyObject
* target
= NULL
;
799 if (source
&& wxIsKindOf(source
, wxSizer
)) {
800 // If it's derived from wxSizer then there may
801 // already be a pointer to a Python object that we can use
803 wxSizer
* sz
= (wxSizer
*)source
;
804 wxPyOORClientData
* data
= (wxPyOORClientData
*)sz
->GetClientObject();
806 target
= data
->m_obj
;
811 target
= wxPyMake_wxObject(source
, FALSE
);
812 if (target
!= Py_None
)
813 ((wxSizer
*)source
)->SetClientObject(new wxPyOORClientData(target
));
820 //---------------------------------------------------------------------------
822 PyObject
* wxPyConstructObject(void* ptr
,
823 const wxString
& className
,
830 wxString
name(className
);
831 char swigptr
[64]; // should always be big enough...
834 if ((item
= PyDict_GetItemString(wxPyPtrTypeMap
, (char*)(const char*)name
.mbc_str())) != NULL
) {
835 name
= wxString(PyString_AsString(item
), *wxConvCurrent
);
837 sprintf(buff
, "_%s_p", (const char*)name
.mbc_str());
838 SWIG_MakePtr(swigptr
, ptr
, buff
);
840 arg
= Py_BuildValue("(s)", swigptr
);
841 obj
= PyInstance_New(klass
, arg
, NULL
);
845 PyObject
* one
= PyInt_FromLong(1);
846 PyObject_SetAttrString(obj
, "thisown", one
);
854 PyObject
* wxPyConstructObject(void* ptr
,
855 const wxString
& className
,
862 char buff
[64]; // should always be big enough...
863 sprintf(buff
, "%sPtr", (const char*)className
.mbc_str());
865 wxASSERT_MSG(wxPython_dict
, wxT("wxPython_dict is not set yet!!"));
867 PyObject
* classobj
= PyDict_GetItemString(wxPython_dict
, buff
);
869 wxString
msg(wxT("wxPython class not found for "));
871 PyErr_SetString(PyExc_NameError
, msg
.mbc_str());
875 return wxPyConstructObject(ptr
, className
, classobj
, setThisOwn
);
879 //---------------------------------------------------------------------------
882 #ifdef WXP_WITH_THREAD
884 unsigned long wxPyGetCurrentThreadId() {
885 return wxThread::GetCurrentId();
888 static PyThreadState
* gs_shutdownTState
;
890 PyThreadState
* wxPyGetThreadState() {
891 if (wxPyTMutex
== NULL
) // Python is shutting down...
892 return gs_shutdownTState
;
894 unsigned long ctid
= wxPyGetCurrentThreadId();
895 PyThreadState
* tstate
= NULL
;
898 for(size_t i
=0; i
< wxPyTStates
->GetCount(); i
++) {
899 wxPyThreadState
& info
= wxPyTStates
->Item(i
);
900 if (info
.tid
== ctid
) {
901 tstate
= info
.tstate
;
905 wxPyTMutex
->Unlock();
906 wxASSERT_MSG(tstate
, wxT("PyThreadState should not be NULL!"));
911 void wxPySaveThreadState(PyThreadState
* tstate
) {
912 if (wxPyTMutex
== NULL
) { // Python is shutting down, assume a single thread...
913 gs_shutdownTState
= tstate
;
916 unsigned long ctid
= wxPyGetCurrentThreadId();
918 for(size_t i
=0; i
< wxPyTStates
->GetCount(); i
++) {
919 wxPyThreadState
& info
= wxPyTStates
->Item(i
);
920 if (info
.tid
== ctid
) {
922 if (info
.tstate
!= tstate
)
923 wxLogMessage("*** tstate mismatch!???");
925 // info.tstate = tstate; *** DO NOT update existing ones???
926 // Normally it will never change, but apparently COM callbacks
927 // (i.e. ActiveX controls) will (incorrectly IMHO) use a transient
928 // tstate which will then be garbage the next time we try to use
930 wxPyTMutex
->Unlock();
934 // not found, so add it...
935 wxPyTStates
->Add(new wxPyThreadState(ctid
, tstate
));
936 wxPyTMutex
->Unlock();
942 // Calls from Python to wxWindows code are wrapped in calls to these
945 PyThreadState
* wxPyBeginAllowThreads() {
946 #ifdef WXP_WITH_THREAD
947 PyThreadState
* saved
= PyEval_SaveThread(); // Py_BEGIN_ALLOW_THREADS;
948 wxPySaveThreadState(saved
);
955 void wxPyEndAllowThreads(PyThreadState
* saved
) {
956 #ifdef WXP_WITH_THREAD
957 PyEval_RestoreThread(saved
); // Py_END_ALLOW_THREADS;
963 // Calls from wxWindows back to Python code, or even any PyObject
964 // manipulations, PyDECREF's and etc. are wrapped in calls to these functions:
966 void wxPyBeginBlockThreads() {
967 #ifdef WXP_WITH_THREAD
968 PyThreadState
* tstate
= wxPyGetThreadState();
969 PyEval_RestoreThread(tstate
);
974 void wxPyEndBlockThreads() {
975 #ifdef WXP_WITH_THREAD
976 // Is there any need to save it again?
977 // PyThreadState* tstate =
983 //---------------------------------------------------------------------------
984 // wxPyInputStream and wxPyCBInputStream methods
987 void wxPyInputStream::close() {
988 /* do nothing for now */
991 void wxPyInputStream::flush() {
992 /* do nothing for now */
995 bool wxPyInputStream::eof() {
997 return m_wxis
->Eof();
1002 wxPyInputStream::~wxPyInputStream() {
1009 PyObject
* wxPyInputStream::read(int size
) {
1010 PyObject
* obj
= NULL
;
1012 const int BUFSIZE
= 1024;
1014 // check if we have a real wxInputStream to work with
1016 wxPyBeginBlockThreads();
1017 PyErr_SetString(PyExc_IOError
, "no valid C-wxInputStream");
1018 wxPyEndBlockThreads();
1023 // read while bytes are available on the stream
1024 while ( m_wxis
->CanRead() ) {
1025 m_wxis
->Read(buf
.GetAppendBuf(BUFSIZE
), BUFSIZE
);
1026 buf
.UngetAppendBuf(m_wxis
->LastRead());
1029 } else { // Read only size number of characters
1030 m_wxis
->Read(buf
.GetWriteBuf(size
), size
);
1031 buf
.UngetWriteBuf(m_wxis
->LastRead());
1035 wxPyBeginBlockThreads();
1036 wxStreamError err
= m_wxis
->GetLastError();
1037 if (err
!= wxSTREAM_NO_ERROR
&& err
!= wxSTREAM_EOF
) {
1038 PyErr_SetString(PyExc_IOError
,"IOError in wxInputStream");
1041 // We use only strings for the streams, not unicode
1042 obj
= PyString_FromStringAndSize(buf
, buf
.GetDataLen());
1044 wxPyEndBlockThreads();
1049 PyObject
* wxPyInputStream::readline(int size
) {
1050 PyObject
* obj
= NULL
;
1055 // check if we have a real wxInputStream to work with
1057 wxPyBeginBlockThreads();
1058 PyErr_SetString(PyExc_IOError
,"no valid C-wxInputStream");
1059 wxPyEndBlockThreads();
1063 // read until \n or byte limit reached
1064 for (i
=ch
=0; (ch
!= '\n') && (m_wxis
->CanRead()) && ((size
< 0) || (i
< size
)); i
++) {
1065 ch
= m_wxis
->GetC();
1070 wxPyBeginBlockThreads();
1071 wxStreamError err
= m_wxis
->GetLastError();
1072 if (err
!= wxSTREAM_NO_ERROR
&& err
!= wxSTREAM_EOF
) {
1073 PyErr_SetString(PyExc_IOError
,"IOError in wxInputStream");
1076 // We use only strings for the streams, not unicode
1077 obj
= PyString_FromStringAndSize((char*)buf
.GetData(), buf
.GetDataLen());
1079 wxPyEndBlockThreads();
1084 PyObject
* wxPyInputStream::readlines(int sizehint
) {
1087 // check if we have a real wxInputStream to work with
1089 wxPyBeginBlockThreads();
1090 PyErr_SetString(PyExc_IOError
,"no valid C-wxInputStream");
1091 wxPyEndBlockThreads();
1096 wxPyBeginBlockThreads();
1097 pylist
= PyList_New(0);
1099 wxPyBeginBlockThreads();
1101 wxPyEndBlockThreads();
1105 // read sizehint bytes or until EOF
1107 for (i
=0; (m_wxis
->CanRead()) && ((sizehint
< 0) || (i
< sizehint
));) {
1108 PyObject
* s
= this->readline();
1110 wxPyBeginBlockThreads();
1112 wxPyEndBlockThreads();
1115 wxPyBeginBlockThreads();
1116 PyList_Append(pylist
, s
);
1117 i
+= PyString_Size(s
);
1118 wxPyEndBlockThreads();
1122 wxStreamError err
= m_wxis
->GetLastError();
1123 if (err
!= wxSTREAM_NO_ERROR
&& err
!= wxSTREAM_EOF
) {
1124 wxPyBeginBlockThreads();
1126 PyErr_SetString(PyExc_IOError
,"IOError in wxInputStream");
1127 wxPyEndBlockThreads();
1135 void wxPyInputStream::seek(int offset
, int whence
) {
1137 m_wxis
->SeekI(offset
, wxSeekMode(whence
));
1140 int wxPyInputStream::tell(){
1142 return m_wxis
->TellI();
1149 wxPyCBInputStream::wxPyCBInputStream(PyObject
*r
, PyObject
*s
, PyObject
*t
, bool block
)
1150 : wxInputStream(), m_read(r
), m_seek(s
), m_tell(t
), m_block(block
)
1154 wxPyCBInputStream::~wxPyCBInputStream() {
1155 if (m_block
) wxPyBeginBlockThreads();
1159 if (m_block
) wxPyEndBlockThreads();
1163 wxPyCBInputStream
* wxPyCBInputStream::create(PyObject
*py
, bool block
) {
1164 if (block
) wxPyBeginBlockThreads();
1166 PyObject
* read
= getMethod(py
, "read");
1167 PyObject
* seek
= getMethod(py
, "seek");
1168 PyObject
* tell
= getMethod(py
, "tell");
1171 PyErr_SetString(PyExc_TypeError
, "Not a file-like object");
1175 if (block
) wxPyEndBlockThreads();
1179 if (block
) wxPyEndBlockThreads();
1180 return new wxPyCBInputStream(read
, seek
, tell
, block
);
1184 wxPyCBInputStream
* wxPyCBInputStream_create(PyObject
*py
, bool block
) {
1185 return wxPyCBInputStream::create(py
, block
);
1188 PyObject
* wxPyCBInputStream::getMethod(PyObject
* py
, char* name
) {
1189 if (!PyObject_HasAttrString(py
, name
))
1191 PyObject
* o
= PyObject_GetAttrString(py
, name
);
1192 if (!PyMethod_Check(o
) && !PyCFunction_Check(o
)) {
1200 size_t wxPyCBInputStream::GetSize() const {
1201 wxPyCBInputStream
* self
= (wxPyCBInputStream
*)this; // cast off const
1202 if (m_seek
&& m_tell
) {
1203 off_t temp
= self
->OnSysTell();
1204 off_t ret
= self
->OnSysSeek(0, wxFromEnd
);
1205 self
->OnSysSeek(temp
, wxFromStart
);
1213 size_t wxPyCBInputStream::OnSysRead(void *buffer
, size_t bufsize
) {
1217 wxPyBeginBlockThreads();
1218 PyObject
* arglist
= Py_BuildValue("(i)", bufsize
);
1219 PyObject
* result
= PyEval_CallObject(m_read
, arglist
);
1223 if ((result
!= NULL
) && PyString_Check(result
)) {
1224 o
= PyString_Size(result
);
1226 m_lasterror
= wxSTREAM_EOF
;
1229 memcpy((char*)buffer
, PyString_AsString(result
), o
); // strings only, not unicode...
1234 m_lasterror
= wxSTREAM_READ_ERROR
;
1235 wxPyEndBlockThreads();
1239 size_t wxPyCBInputStream::OnSysWrite(const void *buffer
, size_t bufsize
) {
1240 m_lasterror
= wxSTREAM_WRITE_ERROR
;
1244 off_t
wxPyCBInputStream::OnSysSeek(off_t off
, wxSeekMode mode
) {
1245 wxPyBeginBlockThreads();
1247 // off_t is a 64-bit value...
1248 PyObject
* arglist
= Py_BuildValue("(Li)", off
, mode
);
1250 PyObject
* arglist
= Py_BuildValue("(ii)", off
, mode
);
1252 PyObject
* result
= PyEval_CallObject(m_seek
, arglist
);
1255 wxPyEndBlockThreads();
1260 off_t
wxPyCBInputStream::OnSysTell() const {
1261 wxPyBeginBlockThreads();
1262 PyObject
* arglist
= Py_BuildValue("()");
1263 PyObject
* result
= PyEval_CallObject(m_tell
, arglist
);
1266 if (result
!= NULL
) {
1268 if (PyLong_Check(result
))
1269 o
= PyLong_AsLongLong(result
);
1272 o
= PyInt_AsLong(result
);
1276 wxPyEndBlockThreads();
1280 //----------------------------------------------------------------------
1282 IMPLEMENT_ABSTRACT_CLASS(wxPyCallback
, wxObject
);
1284 wxPyCallback::wxPyCallback(PyObject
* func
) {
1289 wxPyCallback::wxPyCallback(const wxPyCallback
& other
) {
1290 m_func
= other
.m_func
;
1294 wxPyCallback::~wxPyCallback() {
1295 wxPyBeginBlockThreads();
1297 wxPyEndBlockThreads();
1302 // This function is used for all events destined for Python event handlers.
1303 void wxPyCallback::EventThunker(wxEvent
& event
) {
1304 wxPyCallback
* cb
= (wxPyCallback
*)event
.m_callbackUserData
;
1305 PyObject
* func
= cb
->m_func
;
1311 wxPyBeginBlockThreads();
1312 wxString className
= event
.GetClassInfo()->GetClassName();
1314 if (className
== wxT("wxPyEvent"))
1315 arg
= ((wxPyEvent
*)&event
)->GetSelf();
1316 else if (className
== wxT("wxPyCommandEvent"))
1317 arg
= ((wxPyCommandEvent
*)&event
)->GetSelf();
1319 arg
= wxPyConstructObject((void*)&event
, className
);
1322 tuple
= PyTuple_New(1);
1323 PyTuple_SET_ITEM(tuple
, 0, arg
);
1324 result
= PyEval_CallObject(func
, tuple
);
1328 PyErr_Clear(); // Just in case...
1332 wxPyEndBlockThreads();
1336 //----------------------------------------------------------------------
1338 wxPyCallbackHelper::wxPyCallbackHelper(const wxPyCallbackHelper
& other
) {
1340 m_self
= other
.m_self
;
1341 m_class
= other
.m_class
;
1349 void wxPyCallbackHelper::setSelf(PyObject
* self
, PyObject
* klass
, int incref
) {
1360 #if PYTHON_API_VERSION >= 1011
1362 // Prior to Python 2.2 PyMethod_GetClass returned the class object
1363 // in which the method was defined. Starting with 2.2 it returns
1364 // "class that asked for the method" which seems totally bogus to me
1365 // but apprently it fixes some obscure problem waiting to happen in
1366 // Python. Since the API was not documented Guido and the gang felt
1367 // safe in changing it. Needless to say that totally screwed up the
1368 // logic below in wxPyCallbackHelper::findCallback, hence this icky
1369 // code to find the class where the method is actually defined...
1372 PyObject
* PyFindClassWithAttr(PyObject
*klass
, PyObject
*name
)
1376 if (PyType_Check(klass
)) { // new style classes
1377 // This code is borrowed/adapted from _PyType_Lookup in typeobject.c
1378 // (TODO: This part is not tested yet, so I'm not sure it is correct...)
1379 PyTypeObject
* type
= (PyTypeObject
*)klass
;
1380 PyObject
*mro
, *res
, *base
, *dict
;
1381 /* Look in tp_dict of types in MRO */
1383 assert(PyTuple_Check(mro
));
1384 n
= PyTuple_GET_SIZE(mro
);
1385 for (i
= 0; i
< n
; i
++) {
1386 base
= PyTuple_GET_ITEM(mro
, i
);
1387 if (PyClass_Check(base
))
1388 dict
= ((PyClassObject
*)base
)->cl_dict
;
1390 assert(PyType_Check(base
));
1391 dict
= ((PyTypeObject
*)base
)->tp_dict
;
1393 assert(dict
&& PyDict_Check(dict
));
1394 res
= PyDict_GetItem(dict
, name
);
1401 else if (PyClass_Check(klass
)) { // old style classes
1402 // This code is borrowed/adapted from class_lookup in classobject.c
1403 PyClassObject
* cp
= (PyClassObject
*)klass
;
1404 PyObject
*value
= PyDict_GetItem(cp
->cl_dict
, name
);
1405 if (value
!= NULL
) {
1406 return (PyObject
*)cp
;
1408 n
= PyTuple_Size(cp
->cl_bases
);
1409 for (i
= 0; i
< n
; i
++) {
1410 PyObject
* base
= PyTuple_GetItem(cp
->cl_bases
, i
);
1411 PyObject
*v
= PyFindClassWithAttr(base
, name
);
1423 PyObject
* PyMethod_GetDefiningClass(PyObject
* method
, const char* name
)
1425 PyObject
* mgc
= PyMethod_GET_CLASS(method
);
1427 #if PYTHON_API_VERSION <= 1010 // prior to Python 2.2, the easy way
1429 #else // 2.2 and after, the hard way...
1431 PyObject
* nameo
= PyString_FromString(name
);
1432 PyObject
* klass
= PyFindClassWithAttr(mgc
, nameo
);
1440 bool wxPyCallbackHelper::findCallback(const char* name
) const {
1441 wxPyCallbackHelper
* self
= (wxPyCallbackHelper
*)this; // cast away const
1442 self
->m_lastFound
= NULL
;
1444 // If the object (m_self) has an attibute of the given name...
1445 if (m_self
&& PyObject_HasAttrString(m_self
, (char*)name
)) {
1446 PyObject
*method
, *klass
;
1447 method
= PyObject_GetAttrString(m_self
, (char*)name
);
1449 // ...and if that attribute is a method, and if that method's class is
1450 // not from a base class...
1451 if (PyMethod_Check(method
) &&
1452 (klass
= PyMethod_GetDefiningClass(method
, (char*)name
)) != NULL
&&
1453 ((klass
== m_class
) || PyClass_IsSubclass(klass
, m_class
))) {
1455 // ...then we'll save a pointer to the method so callCallback can call it.
1456 self
->m_lastFound
= method
;
1462 return m_lastFound
!= NULL
;
1466 int wxPyCallbackHelper::callCallback(PyObject
* argTuple
) const {
1470 result
= callCallbackObj(argTuple
);
1471 if (result
) { // Assumes an integer return type...
1472 retval
= PyInt_AsLong(result
);
1474 PyErr_Clear(); // forget about it if it's not...
1479 // Invoke the Python callable object, returning the raw PyObject return
1480 // value. Caller should DECREF the return value and also call PyEval_SaveThread.
1481 PyObject
* wxPyCallbackHelper::callCallbackObj(PyObject
* argTuple
) const {
1484 // Save a copy of the pointer in case the callback generates another
1485 // callback. In that case m_lastFound will have a different value when
1486 // it gets back here...
1487 PyObject
* method
= m_lastFound
;
1489 result
= PyEval_CallObject(method
, argTuple
);
1490 Py_DECREF(argTuple
);
1499 void wxPyCBH_setCallbackInfo(wxPyCallbackHelper
& cbh
, PyObject
* self
, PyObject
* klass
, int incref
) {
1500 cbh
.setSelf(self
, klass
, incref
);
1503 bool wxPyCBH_findCallback(const wxPyCallbackHelper
& cbh
, const char* name
) {
1504 return cbh
.findCallback(name
);
1507 int wxPyCBH_callCallback(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
) {
1508 return cbh
.callCallback(argTuple
);
1511 PyObject
* wxPyCBH_callCallbackObj(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
) {
1512 return cbh
.callCallbackObj(argTuple
);
1516 void wxPyCBH_delete(wxPyCallbackHelper
* cbh
) {
1517 if (cbh
->m_incRef
) {
1518 wxPyBeginBlockThreads();
1519 Py_XDECREF(cbh
->m_self
);
1520 Py_XDECREF(cbh
->m_class
);
1521 wxPyEndBlockThreads();
1525 //---------------------------------------------------------------------------
1526 //---------------------------------------------------------------------------
1527 // These event classes can be derived from in Python and passed through the event
1528 // system without losing anything. They do this by keeping a reference to
1529 // themselves and some special case handling in wxPyCallback::EventThunker.
1532 wxPyEvtSelfRef::wxPyEvtSelfRef() {
1533 //m_self = Py_None; // **** We don't do normal ref counting to prevent
1534 //Py_INCREF(m_self); // circular loops...
1538 wxPyEvtSelfRef::~wxPyEvtSelfRef() {
1539 wxPyBeginBlockThreads();
1542 wxPyEndBlockThreads();
1545 void wxPyEvtSelfRef::SetSelf(PyObject
* self
, bool clone
) {
1546 wxPyBeginBlockThreads();
1554 wxPyEndBlockThreads();
1557 PyObject
* wxPyEvtSelfRef::GetSelf() const {
1563 IMPLEMENT_ABSTRACT_CLASS(wxPyEvent
, wxEvent
);
1564 IMPLEMENT_ABSTRACT_CLASS(wxPyCommandEvent
, wxCommandEvent
);
1567 wxPyEvent::wxPyEvent(int winid
, wxEventType commandType
)
1568 : wxEvent(winid
, commandType
) {
1572 wxPyEvent::wxPyEvent(const wxPyEvent
& evt
)
1575 SetSelf(evt
.m_self
, TRUE
);
1579 wxPyEvent::~wxPyEvent() {
1583 wxPyCommandEvent::wxPyCommandEvent(wxEventType commandType
, int id
)
1584 : wxCommandEvent(commandType
, id
) {
1588 wxPyCommandEvent::wxPyCommandEvent(const wxPyCommandEvent
& evt
)
1589 : wxCommandEvent(evt
)
1591 SetSelf(evt
.m_self
, TRUE
);
1595 wxPyCommandEvent::~wxPyCommandEvent() {
1601 //---------------------------------------------------------------------------
1602 //---------------------------------------------------------------------------
1605 wxPyTimer::wxPyTimer(PyObject
* callback
) {
1610 wxPyTimer::~wxPyTimer() {
1611 wxPyBeginBlockThreads();
1613 wxPyEndBlockThreads();
1616 void wxPyTimer::Notify() {
1617 if (!func
|| func
== Py_None
) {
1621 wxPyBeginBlockThreads();
1624 PyObject
* args
= Py_BuildValue("()");
1626 result
= PyEval_CallObject(func
, args
);
1635 wxPyEndBlockThreads();
1641 //---------------------------------------------------------------------------
1642 //---------------------------------------------------------------------------
1643 // Convert a wxList to a Python List
1645 PyObject
* wxPy_ConvertList(wxListBase
* listbase
, const char* className
) {
1646 wxList
* list
= (wxList
*)listbase
; // this is probably bad...
1650 wxNode
* node
= list
->GetFirst();
1652 wxPyBeginBlockThreads();
1653 pyList
= PyList_New(0);
1655 wxObj
= node
->GetData();
1656 pyObj
= wxPyMake_wxObject(wxObj
); //wxPyConstructObject(wxObj, className);
1657 PyList_Append(pyList
, pyObj
);
1658 node
= node
->GetNext();
1660 wxPyEndBlockThreads();
1664 //----------------------------------------------------------------------
1666 long wxPyGetWinHandle(wxWindow
* win
) {
1668 return (long)win
->GetHandle();
1671 // Find and return the actual X-Window.
1673 if (win
->m_wxwindow
) {
1675 return (long) GDK_WINDOW_XWINDOW(GTK_PIZZA(win
->m_wxwindow
)->bin_window
);
1677 GdkWindowPrivate
* bwin
= (GdkWindowPrivate
*)GTK_PIZZA(win
->m_wxwindow
)->bin_window
;
1679 return (long)bwin
->xwindow
;
1687 //----------------------------------------------------------------------
1688 // Some helper functions for typemaps in my_typemaps.i, so they won't be
1689 // included in every file over and over again...
1691 #if PYTHON_API_VERSION >= 1009
1692 static char* wxStringErrorMsg
= "String or Unicode type required";
1694 static char* wxStringErrorMsg
= "String type required";
1698 wxString
* wxString_in_helper(PyObject
* source
) {
1700 #if PYTHON_API_VERSION >= 1009 // Have Python unicode API
1701 if (!PyString_Check(source
) && !PyUnicode_Check(source
)) {
1702 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1706 if (PyUnicode_Check(source
)) {
1707 target
= new wxString();
1708 size_t len
= PyUnicode_GET_SIZE(source
);
1710 PyUnicode_AsWideChar((PyUnicodeObject
*)source
, target
->GetWriteBuf(len
), len
);
1711 target
->UngetWriteBuf();
1714 // It is a string, get pointers to it and transform to unicode
1715 char* tmpPtr
; int tmpSize
;
1716 PyString_AsStringAndSize(source
, &tmpPtr
, &tmpSize
);
1717 target
= new wxString(tmpPtr
, *wxConvCurrent
, tmpSize
);
1720 char* tmpPtr
; int tmpSize
;
1721 if (PyString_AsStringAndSize(source
, &tmpPtr
, &tmpSize
) == -1) {
1722 PyErr_SetString(PyExc_TypeError
, "Unable to convert string");
1725 target
= new wxString(tmpPtr
, tmpSize
);
1726 #endif // wxUSE_UNICODE
1728 #else // No Python unicode API (1.5.2)
1729 if (!PyString_Check(source
)) {
1730 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1733 target
= new wxString(PyString_AS_STRING(source
), PyString_GET_SIZE(source
));
1739 // Similar to above except doesn't use "new" and doesn't set an exception
1740 wxString
Py2wxString(PyObject
* source
)
1743 bool doDecRef
= FALSE
;
1745 #if PYTHON_API_VERSION >= 1009 // Have Python unicode API
1746 if (!PyString_Check(source
) && !PyUnicode_Check(source
)) {
1747 // Convert to String if not one already... (TODO: Unicode too?)
1748 source
= PyObject_Str(source
);
1753 if (PyUnicode_Check(source
)) {
1754 size_t len
= PyUnicode_GET_SIZE(source
);
1756 PyUnicode_AsWideChar((PyUnicodeObject
*)source
, target
.GetWriteBuf(len
), len
);
1757 target
.UngetWriteBuf();
1760 // It is a string, get pointers to it and transform to unicode
1761 char* tmpPtr
; int tmpSize
;
1762 PyString_AsStringAndSize(source
, &tmpPtr
, &tmpSize
);
1763 target
= wxString(tmpPtr
, *wxConvCurrent
, tmpSize
);
1766 char* tmpPtr
; int tmpSize
;
1767 PyString_AsStringAndSize(source
, &tmpPtr
, &tmpSize
);
1768 target
= wxString(tmpPtr
, tmpSize
);
1769 #endif // wxUSE_UNICODE
1771 #else // No Python unicode API (1.5.2)
1772 if (!PyString_Check(source
)) {
1773 // Convert to String if not one already...
1774 source
= PyObject_Str(source
);
1777 target
= wxString(PyString_AS_STRING(source
), PyString_GET_SIZE(source
));
1786 // Make either a Python String or Unicode object, depending on build mode
1787 PyObject
* wx2PyString(const wxString
& src
)
1791 str
= PyUnicode_FromWideChar(src
.c_str(), src
.Len());
1793 str
= PyString_FromStringAndSize(src
.c_str(), src
.Len());
1799 //----------------------------------------------------------------------
1802 byte
* byte_LIST_helper(PyObject
* source
) {
1803 if (!PyList_Check(source
)) {
1804 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
1807 int count
= PyList_Size(source
);
1808 byte
* temp
= new byte
[count
];
1810 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
1813 for (int x
=0; x
<count
; x
++) {
1814 PyObject
* o
= PyList_GetItem(source
, x
);
1815 if (! PyInt_Check(o
)) {
1816 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
1819 temp
[x
] = (byte
)PyInt_AsLong(o
);
1825 int* int_LIST_helper(PyObject
* source
) {
1826 if (!PyList_Check(source
)) {
1827 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
1830 int count
= PyList_Size(source
);
1831 int* temp
= new int[count
];
1833 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
1836 for (int x
=0; x
<count
; x
++) {
1837 PyObject
* o
= PyList_GetItem(source
, x
);
1838 if (! PyInt_Check(o
)) {
1839 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
1842 temp
[x
] = PyInt_AsLong(o
);
1848 long* long_LIST_helper(PyObject
* source
) {
1849 if (!PyList_Check(source
)) {
1850 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
1853 int count
= PyList_Size(source
);
1854 long* temp
= new long[count
];
1856 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
1859 for (int x
=0; x
<count
; x
++) {
1860 PyObject
* o
= PyList_GetItem(source
, x
);
1861 if (! PyInt_Check(o
)) {
1862 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
1865 temp
[x
] = PyInt_AsLong(o
);
1871 char** string_LIST_helper(PyObject
* source
) {
1872 if (!PyList_Check(source
)) {
1873 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
1876 int count
= PyList_Size(source
);
1877 char** temp
= new char*[count
];
1879 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
1882 for (int x
=0; x
<count
; x
++) {
1883 PyObject
* o
= PyList_GetItem(source
, x
);
1884 if (! PyString_Check(o
)) {
1885 PyErr_SetString(PyExc_TypeError
, "Expected a list of strings.");
1888 temp
[x
] = PyString_AsString(o
);
1893 //--------------------------------
1894 // Part of patch from Tim Hochberg
1895 static inline bool wxPointFromObjects(PyObject
* o1
, PyObject
* o2
, wxPoint
* point
) {
1896 if (PyInt_Check(o1
) && PyInt_Check(o2
)) {
1897 point
->x
= PyInt_AS_LONG(o1
);
1898 point
->y
= PyInt_AS_LONG(o2
);
1901 if (PyFloat_Check(o1
) && PyFloat_Check(o2
)) {
1902 point
->x
= (int)PyFloat_AS_DOUBLE(o1
);
1903 point
->y
= (int)PyFloat_AS_DOUBLE(o2
);
1906 if (PyInstance_Check(o1
) || PyInstance_Check(o2
)) {
1907 // Disallow instances because they can cause havok
1910 if (PyNumber_Check(o1
) && PyNumber_Check(o2
)) {
1911 // I believe this excludes instances, so this should be safe without INCREFFing o1 and o2
1912 point
->x
= PyInt_AsLong(o1
);
1913 point
->y
= PyInt_AsLong(o2
);
1920 wxPoint
* wxPoint_LIST_helper(PyObject
* source
, int *count
) {
1921 // Putting all of the declarations here allows
1922 // us to put the error handling all in one place.
1925 PyObject
*o
, *o1
, *o2
;
1926 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
1928 if (!PySequence_Check(source
)) {
1932 // The length of the sequence is returned in count.
1933 *count
= PySequence_Length(source
);
1938 temp
= new wxPoint
[*count
];
1940 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
1943 for (x
=0; x
<*count
; x
++) {
1944 // Get an item: try fast way first.
1946 o
= PySequence_Fast_GET_ITEM(source
, x
);
1949 o
= PySequence_GetItem(source
, x
);
1955 // Convert o to wxPoint.
1956 if ((PyTuple_Check(o
) && PyTuple_GET_SIZE(o
) == 2) ||
1957 (PyList_Check(o
) && PyList_GET_SIZE(o
) == 2)) {
1958 o1
= PySequence_Fast_GET_ITEM(o
, 0);
1959 o2
= PySequence_Fast_GET_ITEM(o
, 1);
1960 if (!wxPointFromObjects(o1
, o2
, &temp
[x
])) {
1964 else if (PyInstance_Check(o
)) {
1966 if (SWIG_GetPtrObj(o
, (void **)&pt
, "_wxPoint_p")) {
1971 else if (PySequence_Check(o
) && PySequence_Length(o
) == 2) {
1972 o1
= PySequence_GetItem(o
, 0);
1973 o2
= PySequence_GetItem(o
, 1);
1974 if (!wxPointFromObjects(o1
, o2
, &temp
[x
])) {
1998 PyErr_SetString(PyExc_TypeError
, "Expected a sequence of length-2 sequences or wxPoints.");
2002 //------------------------------
2005 wxBitmap
** wxBitmap_LIST_helper(PyObject
* source
) {
2006 if (!PyList_Check(source
)) {
2007 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2010 int count
= PyList_Size(source
);
2011 wxBitmap
** temp
= new wxBitmap
*[count
];
2013 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2016 for (int x
=0; x
<count
; x
++) {
2017 PyObject
* o
= PyList_GetItem(source
, x
);
2018 if (PyInstance_Check(o
)) {
2020 if (SWIG_GetPtrObj(o
, (void **) &pt
,"_wxBitmap_p")) {
2021 PyErr_SetString(PyExc_TypeError
,"Expected _wxBitmap_p.");
2027 PyErr_SetString(PyExc_TypeError
, "Expected a list of wxBitmaps.");
2036 wxString
* wxString_LIST_helper(PyObject
* source
) {
2037 if (!PyList_Check(source
)) {
2038 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2041 int count
= PyList_Size(source
);
2042 wxString
* temp
= new wxString
[count
];
2044 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2047 for (int x
=0; x
<count
; x
++) {
2048 PyObject
* o
= PyList_GetItem(source
, x
);
2049 #if PYTHON_API_VERSION >= 1009
2050 if (! PyString_Check(o
) && ! PyUnicode_Check(o
)) {
2051 PyErr_SetString(PyExc_TypeError
, "Expected a list of string or unicode objects.");
2055 if (! PyString_Check(o
)) {
2056 PyErr_SetString(PyExc_TypeError
, "Expected a list of strings.");
2061 wxString
* pStr
= wxString_in_helper(o
);
2069 wxAcceleratorEntry
* wxAcceleratorEntry_LIST_helper(PyObject
* source
) {
2070 if (!PyList_Check(source
)) {
2071 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2074 int count
= PyList_Size(source
);
2075 wxAcceleratorEntry
* temp
= new wxAcceleratorEntry
[count
];
2077 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2080 for (int x
=0; x
<count
; x
++) {
2081 PyObject
* o
= PyList_GetItem(source
, x
);
2082 if (PyInstance_Check(o
)) {
2083 wxAcceleratorEntry
* ae
;
2084 if (SWIG_GetPtrObj(o
, (void **) &ae
,"_wxAcceleratorEntry_p")) {
2085 PyErr_SetString(PyExc_TypeError
,"Expected _wxAcceleratorEntry_p.");
2090 else if (PyTuple_Check(o
)) {
2091 PyObject
* o1
= PyTuple_GetItem(o
, 0);
2092 PyObject
* o2
= PyTuple_GetItem(o
, 1);
2093 PyObject
* o3
= PyTuple_GetItem(o
, 2);
2094 temp
[x
].Set(PyInt_AsLong(o1
), PyInt_AsLong(o2
), PyInt_AsLong(o3
));
2097 PyErr_SetString(PyExc_TypeError
, "Expected a list of 3-tuples or wxAcceleratorEntry objects.");
2105 wxPen
** wxPen_LIST_helper(PyObject
* source
) {
2106 if (!PyList_Check(source
)) {
2107 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2110 int count
= PyList_Size(source
);
2111 wxPen
** temp
= new wxPen
*[count
];
2113 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2116 for (int x
=0; x
<count
; x
++) {
2117 PyObject
* o
= PyList_GetItem(source
, x
);
2118 if (PyInstance_Check(o
)) {
2120 if (SWIG_GetPtrObj(o
, (void **) &pt
,"_wxPen_p")) {
2122 PyErr_SetString(PyExc_TypeError
,"Expected _wxPen_p.");
2129 PyErr_SetString(PyExc_TypeError
, "Expected a list of wxPens.");
2137 bool wxPy2int_seq_helper(PyObject
* source
, int* i1
, int* i2
) {
2138 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
2141 if (!PySequence_Check(source
) || PySequence_Length(source
) != 2)
2145 o1
= PySequence_Fast_GET_ITEM(source
, 0);
2146 o2
= PySequence_Fast_GET_ITEM(source
, 1);
2149 o1
= PySequence_GetItem(source
, 0);
2150 o2
= PySequence_GetItem(source
, 1);
2153 *i1
= PyInt_AsLong(o1
);
2154 *i2
= PyInt_AsLong(o2
);
2164 bool wxPy4int_seq_helper(PyObject
* source
, int* i1
, int* i2
, int* i3
, int* i4
) {
2165 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
2166 PyObject
*o1
, *o2
, *o3
, *o4
;
2168 if (!PySequence_Check(source
) || PySequence_Length(source
) != 4)
2172 o1
= PySequence_Fast_GET_ITEM(source
, 0);
2173 o2
= PySequence_Fast_GET_ITEM(source
, 1);
2174 o3
= PySequence_Fast_GET_ITEM(source
, 2);
2175 o4
= PySequence_Fast_GET_ITEM(source
, 3);
2178 o1
= PySequence_GetItem(source
, 0);
2179 o2
= PySequence_GetItem(source
, 1);
2180 o3
= PySequence_GetItem(source
, 2);
2181 o4
= PySequence_GetItem(source
, 3);
2184 *i1
= PyInt_AsLong(o1
);
2185 *i2
= PyInt_AsLong(o2
);
2186 *i3
= PyInt_AsLong(o3
);
2187 *i4
= PyInt_AsLong(o4
);
2199 //----------------------------------------------------------------------
2201 bool wxSize_helper(PyObject
* source
, wxSize
** obj
) {
2203 // If source is an object instance then it may already be the right type
2204 if (PyInstance_Check(source
)) {
2206 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxSize_p"))
2211 // otherwise a 2-tuple of integers is expected
2212 else if (PySequence_Check(source
) && PyObject_Length(source
) == 2) {
2213 PyObject
* o1
= PySequence_GetItem(source
, 0);
2214 PyObject
* o2
= PySequence_GetItem(source
, 1);
2215 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
)) {
2220 **obj
= wxSize(PyInt_AsLong(o1
), PyInt_AsLong(o2
));
2227 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of integers or a wxSize object.");
2232 bool wxPoint_helper(PyObject
* source
, wxPoint
** obj
) {
2234 // If source is an object instance then it may already be the right type
2235 if (PyInstance_Check(source
)) {
2237 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxPoint_p"))
2242 // otherwise a length-2 sequence of integers is expected
2243 if (PySequence_Check(source
) && PySequence_Length(source
) == 2) {
2244 PyObject
* o1
= PySequence_GetItem(source
, 0);
2245 PyObject
* o2
= PySequence_GetItem(source
, 1);
2246 // This should really check for integers, not numbers -- but that would break code.
2247 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
)) {
2252 **obj
= wxPoint(PyInt_AsLong(o1
), PyInt_AsLong(o2
));
2258 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of integers or a wxPoint object.");
2264 bool wxRealPoint_helper(PyObject
* source
, wxRealPoint
** obj
) {
2266 // If source is an object instance then it may already be the right type
2267 if (PyInstance_Check(source
)) {
2269 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxRealPoint_p"))
2274 // otherwise a 2-tuple of floats is expected
2275 else if (PySequence_Check(source
) && PyObject_Length(source
) == 2) {
2276 PyObject
* o1
= PySequence_GetItem(source
, 0);
2277 PyObject
* o2
= PySequence_GetItem(source
, 1);
2278 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
)) {
2283 **obj
= wxRealPoint(PyFloat_AsDouble(o1
), PyFloat_AsDouble(o2
));
2290 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of floats or a wxRealPoint object.");
2297 bool wxRect_helper(PyObject
* source
, wxRect
** obj
) {
2299 // If source is an object instance then it may already be the right type
2300 if (PyInstance_Check(source
)) {
2302 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxRect_p"))
2307 // otherwise a 4-tuple of integers is expected
2308 else if (PySequence_Check(source
) && PyObject_Length(source
) == 4) {
2309 PyObject
* o1
= PySequence_GetItem(source
, 0);
2310 PyObject
* o2
= PySequence_GetItem(source
, 1);
2311 PyObject
* o3
= PySequence_GetItem(source
, 2);
2312 PyObject
* o4
= PySequence_GetItem(source
, 3);
2313 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
) ||
2314 !PyNumber_Check(o3
) || !PyNumber_Check(o4
)) {
2321 **obj
= wxRect(PyInt_AsLong(o1
), PyInt_AsLong(o2
),
2322 PyInt_AsLong(o3
), PyInt_AsLong(o4
));
2331 PyErr_SetString(PyExc_TypeError
, "Expected a 4-tuple of integers or a wxRect object.");
2337 bool wxColour_helper(PyObject
* source
, wxColour
** obj
) {
2339 // If source is an object instance then it may already be the right type
2340 if (PyInstance_Check(source
)) {
2342 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxColour_p"))
2347 // otherwise check for a string
2348 else if (PyString_Check(source
) || PyUnicode_Check(source
)) {
2349 wxString spec
= Py2wxString(source
);
2350 if (spec
.GetChar(0) == '#' && spec
.Length() == 7) { // It's #RRGGBB
2351 long red
, green
, blue
;
2352 red
= green
= blue
= 0;
2353 spec
.Mid(1,2).ToLong(&red
, 16);
2354 spec
.Mid(3,2).ToLong(&green
, 16);
2355 spec
.Mid(5,2).ToLong(&blue
, 16);
2357 **obj
= wxColour(red
, green
, blue
);
2360 else { // it's a colour name
2361 **obj
= wxColour(spec
);
2365 // last chance: 3-tuple of integers is expected
2366 else if (PySequence_Check(source
) && PyObject_Length(source
) == 3) {
2367 PyObject
* o1
= PySequence_GetItem(source
, 0);
2368 PyObject
* o2
= PySequence_GetItem(source
, 1);
2369 PyObject
* o3
= PySequence_GetItem(source
, 2);
2370 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
) || !PyNumber_Check(o3
)) {
2376 **obj
= wxColour(PyInt_AsLong(o1
), PyInt_AsLong(o2
), PyInt_AsLong(o3
));
2384 PyErr_SetString(PyExc_TypeError
,
2385 "Expected a wxColour object or a string containing a colour name or '#RRGGBB'.");
2391 bool wxPoint2DDouble_helper(PyObject
* source
, wxPoint2DDouble
** obj
) {
2392 // If source is an object instance then it may already be the right type
2393 if (PyInstance_Check(source
)) {
2394 wxPoint2DDouble
* ptr
;
2395 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxPoint2DDouble_p"))
2400 // otherwise a length-2 sequence of floats is expected
2401 if (PySequence_Check(source
) && PySequence_Length(source
) == 2) {
2402 PyObject
* o1
= PySequence_GetItem(source
, 0);
2403 PyObject
* o2
= PySequence_GetItem(source
, 1);
2404 // This should really check for integers, not numbers -- but that would break code.
2405 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
)) {
2410 **obj
= wxPoint2DDouble(PyFloat_AsDouble(o1
), PyFloat_AsDouble(o2
));
2416 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of floats or a wxPoint2DDouble object.");
2422 //----------------------------------------------------------------------
2424 PyObject
* wxArrayString2PyList_helper(const wxArrayString
& arr
) {
2426 PyObject
* list
= PyList_New(0);
2427 for (size_t i
=0; i
< arr
.GetCount(); i
++) {
2429 PyObject
* str
= PyUnicode_FromWideChar(arr
[i
].c_str(), arr
[i
].Len());
2431 PyObject
* str
= PyString_FromStringAndSize(arr
[i
].c_str(), arr
[i
].Len());
2433 PyList_Append(list
, str
);
2440 PyObject
* wxArrayInt2PyList_helper(const wxArrayInt
& arr
) {
2442 PyObject
* list
= PyList_New(0);
2443 for (size_t i
=0; i
< arr
.GetCount(); i
++) {
2444 PyObject
* number
= PyInt_FromLong(arr
[i
]);
2445 PyList_Append(list
, number
);
2452 //----------------------------------------------------------------------
2453 //----------------------------------------------------------------------