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;
120 if ( m_exitOnFrameDelete
== Later
) {
121 m_exitOnFrameDelete
= Yes
;
124 retval
= wxApp::MainLoop();
131 bool wxPyApp::OnInitGui() {
133 wxApp::OnInitGui(); // in this case always call the base class version
134 // wxPyBeginBlockThreads(); *** only called from within __wxStart so we already have the GIL
135 if (wxPyCBH_findCallback(m_myInst
, "OnInitGui"))
136 rval
= wxPyCBH_callCallback(m_myInst
, Py_BuildValue("()"));
137 // wxPyEndBlockThreads(); ***
142 int wxPyApp::OnExit() {
144 wxPyBeginBlockThreads();
145 if (wxPyCBH_findCallback(m_myInst
, "OnExit"))
146 rval
= wxPyCBH_callCallback(m_myInst
, Py_BuildValue("()"));
147 wxPyEndBlockThreads();
148 wxApp::OnExit(); // in this case always call the base class version
154 void wxPyApp::OnAssert(const wxChar
*file
,
159 // If the OnAssert is overloaded in the Python class then call it...
161 wxPyBeginBlockThreads();
162 if ((found
= wxPyCBH_findCallback(m_myInst
, "OnAssert"))) {
163 PyObject
* fso
= wx2PyString(file
);
164 PyObject
* cso
= wx2PyString(file
);
167 mso
= wx2PyString(file
);
169 mso
= Py_None
; Py_INCREF(Py_None
);
171 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OiOO)", fso
, line
, cso
, mso
));
176 wxPyEndBlockThreads();
178 // ...otherwise do our own thing with it
181 if (m_assertMode
& wxPYAPP_ASSERT_SUPPRESS
)
184 // turn it into a Python exception?
185 if (m_assertMode
& wxPYAPP_ASSERT_EXCEPTION
) {
188 buf
.Printf(wxT("C++ assertion \"%s\" failed in %s(%d)"), cond
, file
, line
);
195 wxPyBeginBlockThreads();
196 PyObject
* s
= wx2PyString(buf
);
197 PyErr_SetObject(wxPyAssertionError
, s
);
199 wxPyEndBlockThreads();
201 // Now when control returns to whatever API wrapper was called from
202 // Python it should detect that an exception is set and will return
203 // NULL, signalling the exception to Python.
206 // Send it to the normal log destination, but only if
207 // not _DIALOG because it will call this too
208 if ( (m_assertMode
& wxPYAPP_ASSERT_LOG
) && !(m_assertMode
& wxPYAPP_ASSERT_DIALOG
)) {
211 buf
.Printf(wxT("%s(%d): assert \"%s\" failed"),
220 // do the normal wx assert dialog?
221 if (m_assertMode
& wxPYAPP_ASSERT_DIALOG
)
222 wxApp::OnAssert(file
, line
, cond
, msg
);
229 bool wxPyApp::GetMacSupportPCMenuShortcuts() {
231 return s_macSupportPCMenuShortcuts
;
238 long wxPyApp::GetMacAboutMenuItemId() {
240 return s_macAboutMenuItemId
;
247 long wxPyApp::GetMacPreferencesMenuItemId() {
249 return s_macPreferencesMenuItemId
;
256 long wxPyApp::GetMacExitMenuItemId() {
258 return s_macExitMenuItemId
;
265 wxString
wxPyApp::GetMacHelpMenuTitleName() {
267 return s_macHelpMenuTitleName
;
269 return wxEmptyString
;
274 void wxPyApp::SetMacSupportPCMenuShortcuts(bool val
) {
276 s_macSupportPCMenuShortcuts
= val
;
281 void wxPyApp::SetMacAboutMenuItemId(long val
) {
283 s_macAboutMenuItemId
= val
;
288 void wxPyApp::SetMacPreferencesMenuItemId(long val
) {
290 s_macPreferencesMenuItemId
= val
;
295 void wxPyApp::SetMacExitMenuItemId(long val
) {
297 s_macExitMenuItemId
= val
;
302 void wxPyApp::SetMacHelpMenuTitleName(const wxString
& val
) {
304 s_macHelpMenuTitleName
= val
;
310 //---------------------------------------------------------------------
311 //----------------------------------------------------------------------
315 static char* wxPyCopyCString(const wxChar
* src
)
317 wxWX2MBbuf buff
= (wxWX2MBbuf
)wxConvCurrent
->cWX2MB(src
);
318 size_t len
= strlen(buff
);
319 char* dest
= new char[len
+1];
325 static char* wxPyCopyCString(const char* src
) // we need a char version too
327 size_t len
= strlen(src
);
328 char* dest
= new char[len
+1];
334 static wxChar
* wxPyCopyWString(const char *src
)
336 //wxMB2WXbuf buff = wxConvCurrent->cMB2WX(src);
337 wxString
str(src
, *wxConvCurrent
);
338 return copystring(str
);
342 static wxChar
* wxPyCopyWString(const wxChar
*src
)
344 return copystring(src
);
350 //----------------------------------------------------------------------
352 // This function is called when the wxc module is imported to do some initial
353 // setup. (Before there is a wxApp object.)
354 void __wxPreStart(PyObject
* moduleDict
)
358 // wxCrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF);
361 #ifdef WXP_WITH_THREAD
362 PyEval_InitThreads();
363 wxPyTStates
= new wxPyThreadStateArray
;
364 wxPyTMutex
= new wxMutex
;
366 // Save the current (main) thread state in our array
367 PyThreadState
* tstate
= wxPyBeginAllowThreads();
368 wxPyEndAllowThreads(tstate
);
371 // Ensure that the build options in the DLL (or whatever) match this build
372 wxApp::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE
, "wxPython");
374 // Create an exception object to use for wxASSERTions
375 wxPyAssertionError
= PyErr_NewException("wxPython.wxc.wxPyAssertionError",
376 PyExc_AssertionError
, NULL
);
377 PyDict_SetItemString(moduleDict
, "wxPyAssertionError", wxPyAssertionError
);
382 // Initialize wxWindows and bootstrap the user application by calling the
383 // wxApp's OnInit, which is a parameter to this funciton. See wxApp.__init__
384 // in _extras.py to learn how the bootstrap is started.
385 PyObject
* __wxStart(PyObject
* /* self */, PyObject
* args
)
387 PyObject
* onInitFunc
= NULL
;
388 PyObject
* arglist
= NULL
;
389 PyObject
* result
= NULL
;
390 PyObject
* pyint
= NULL
;
393 if (!PyArg_ParseTuple(args
, "O", &onInitFunc
))
396 // Get any command-line args passed to this program from the sys module
399 PyObject
* sysargv
= PySys_GetObject("argv");
400 if (sysargv
!= NULL
) {
401 argc
= PyList_Size(sysargv
);
402 argv
= new char*[argc
+1];
404 for(x
=0; x
<argc
; x
++) {
405 PyObject
*pyArg
= PyList_GetItem(sysargv
, x
);
406 argv
[x
] = PyString_AsString(pyArg
);
411 if (! wxEntryStart(argc
, argv
) ) {
412 PyErr_SetString(PyExc_SystemError
, // is this the right one?
413 "wxEntryStart failed!");
419 // The stock objects were all NULL when they were loaded into
420 // SWIG generated proxies, so re-init those now...
421 wxPy_ReinitStockObjects();
424 // Call the Python wxApp's OnInit function
425 arglist
= PyTuple_New(0);
426 result
= PyEval_CallObject(onInitFunc
, arglist
);
428 if (!result
) { // an exception was raised.
432 pyint
= PyNumber_Int(result
);
434 PyErr_SetString(PyExc_TypeError
, "OnInit should return a boolean value");
437 bResult
= PyInt_AS_LONG(pyint
);
439 PyErr_SetString(PyExc_SystemExit
, "OnInit returned FALSE, exiting...");
457 wxPyDoingCleanup
= TRUE
;
460 #ifdef WXP_WITH_THREAD
463 wxPyTStates
->Empty();
472 PyObject
* __wxSetDictionary(PyObject
* /* self */, PyObject
* args
)
475 if (!PyArg_ParseTuple(args
, "O", &wxPython_dict
))
478 if (!PyDict_Check(wxPython_dict
)) {
479 PyErr_SetString(PyExc_TypeError
, "_wxSetDictionary must have dictionary object!");
483 if (! wxPyPtrTypeMap
)
484 wxPyPtrTypeMap
= PyDict_New();
485 PyDict_SetItemString(wxPython_dict
, "__wxPyPtrTypeMap", wxPyPtrTypeMap
);
489 #define wxPlatform "__WXMOTIF__"
492 #define wxPlatform "__WXX11__"
495 #define wxPlatform "__WXGTK__"
497 #if defined(__WIN32__) || defined(__WXMSW__)
498 #define wxPlatform "__WXMSW__"
501 #define wxPlatform "__WXMAC__"
510 PyDict_SetItemString(wxPython_dict
, "wxPlatform", PyString_FromString(wxPlatform
));
511 PyDict_SetItemString(wxPython_dict
, "wxUSE_UNICODE", PyInt_FromLong(wxUSE_UNICODE
));
512 PyDict_SetItemString(wxPython_dict
, "__WXDEBUG__", PyInt_FromLong(wxdebug
));
519 //---------------------------------------------------------------------------
521 // The stock objects are no longer created when the wxc module is imported, but
522 // only after the app object has been created. This function will be called before
523 // OnInit is called so we can hack the new pointer values into the obj.this attributes.
525 void wxPy_ReinitStockObjects()
533 #define REINITOBJ(name, type) \
534 obj = PyDict_GetItemString(wxPython_dict, #name); \
535 wxASSERT_MSG(obj != NULL, wxT("Unable to find stock object for " #name)); \
536 SWIG_MakePtr(ptrbuf, (char *) name, "_" #type "_p"); \
537 ptrobj = PyString_FromString(ptrbuf); \
538 PyObject_SetAttrString(obj, "this", ptrobj); \
541 #define REINITOBJ2(name, type) \
542 obj = PyDict_GetItemString(wxPython_dict, #name); \
543 wxASSERT_MSG(obj != NULL, wxT("Unable to find stock object for " #name)); \
544 SWIG_MakePtr(ptrbuf, (char *) &name, "_" #type "_p"); \
545 ptrobj = PyString_FromString(ptrbuf); \
546 PyObject_SetAttrString(obj, "this", ptrobj); \
550 REINITOBJ(wxNORMAL_FONT
, wxFont
);
551 REINITOBJ(wxSMALL_FONT
, wxFont
);
552 REINITOBJ(wxITALIC_FONT
, wxFont
);
553 REINITOBJ(wxSWISS_FONT
, wxFont
);
555 REINITOBJ(wxRED_PEN
, wxPen
);
556 REINITOBJ(wxCYAN_PEN
, wxPen
);
557 REINITOBJ(wxGREEN_PEN
, wxPen
);
558 REINITOBJ(wxBLACK_PEN
, wxPen
);
559 REINITOBJ(wxWHITE_PEN
, wxPen
);
560 REINITOBJ(wxTRANSPARENT_PEN
, wxPen
);
561 REINITOBJ(wxBLACK_DASHED_PEN
, wxPen
);
562 REINITOBJ(wxGREY_PEN
, wxPen
);
563 REINITOBJ(wxMEDIUM_GREY_PEN
, wxPen
);
564 REINITOBJ(wxLIGHT_GREY_PEN
, wxPen
);
566 REINITOBJ(wxBLUE_BRUSH
, wxBrush
);
567 REINITOBJ(wxGREEN_BRUSH
, wxBrush
);
568 REINITOBJ(wxWHITE_BRUSH
, wxBrush
);
569 REINITOBJ(wxBLACK_BRUSH
, wxBrush
);
570 REINITOBJ(wxTRANSPARENT_BRUSH
, wxBrush
);
571 REINITOBJ(wxCYAN_BRUSH
, wxBrush
);
572 REINITOBJ(wxRED_BRUSH
, wxBrush
);
573 REINITOBJ(wxGREY_BRUSH
, wxBrush
);
574 REINITOBJ(wxMEDIUM_GREY_BRUSH
, wxBrush
);
575 REINITOBJ(wxLIGHT_GREY_BRUSH
, wxBrush
);
577 REINITOBJ(wxBLACK
, wxColour
);
578 REINITOBJ(wxWHITE
, wxColour
);
579 REINITOBJ(wxRED
, wxColour
);
580 REINITOBJ(wxBLUE
, wxColour
);
581 REINITOBJ(wxGREEN
, wxColour
);
582 REINITOBJ(wxCYAN
, wxColour
);
583 REINITOBJ(wxLIGHT_GREY
, wxColour
);
585 REINITOBJ(wxSTANDARD_CURSOR
, wxCursor
);
586 REINITOBJ(wxHOURGLASS_CURSOR
, wxCursor
);
587 REINITOBJ(wxCROSS_CURSOR
, wxCursor
);
589 REINITOBJ2(wxNullBitmap
, wxBitmap
);
590 REINITOBJ2(wxNullIcon
, wxIcon
);
591 REINITOBJ2(wxNullCursor
, wxCursor
);
592 REINITOBJ2(wxNullPen
, wxPen
);
593 REINITOBJ2(wxNullBrush
, wxBrush
);
594 REINITOBJ2(wxNullPalette
, wxPalette
);
595 REINITOBJ2(wxNullFont
, wxFont
);
596 REINITOBJ2(wxNullColour
, wxColour
);
598 REINITOBJ(wxTheFontList
, wxFontList
);
599 REINITOBJ(wxThePenList
, wxPenList
);
600 REINITOBJ(wxTheBrushList
, wxBrushList
);
601 REINITOBJ(wxTheColourDatabase
, wxColourDatabase
);
604 REINITOBJ(wxTheClipboard
, wxClipboard
);
605 REINITOBJ(wxTheMimeTypesManager
, wxMimeTypesManager
);
606 REINITOBJ2(wxDefaultValidator
, wxValidator
);
607 REINITOBJ2(wxNullImage
, wxImage
);
608 REINITOBJ2(wxNullAcceleratorTable
, wxAcceleratorTable
);
614 //---------------------------------------------------------------------------
616 void wxPyClientData_dtor(wxPyClientData
* self
) {
617 if (! wxPyDoingCleanup
) { // Don't do it during cleanup as Python
618 // may have already garbage collected the object...
619 wxPyBeginBlockThreads();
620 Py_DECREF(self
->m_obj
);
621 wxPyEndBlockThreads();
625 void wxPyUserData_dtor(wxPyUserData
* self
) {
626 if (! wxPyDoingCleanup
) {
627 wxPyBeginBlockThreads();
628 Py_DECREF(self
->m_obj
);
629 wxPyEndBlockThreads();
634 // This is called when an OOR controled object is being destroyed. Although
635 // the C++ object is going away there is no way to force the Python object
636 // (and all references to it) to die too. This causes problems (crashes) in
637 // wxPython when a python shadow object attempts to call a C++ method using
638 // the now bogus pointer... So to try and prevent this we'll do a little black
639 // magic and change the class of the python instance to a class that will
640 // raise an exception for any attempt to call methods with it. See
641 // _wxPyDeadObject in _extras.py for the implementation of this class.
642 void wxPyOORClientData_dtor(wxPyOORClientData
* self
) {
644 static PyObject
* deadObjectClass
= NULL
;
646 wxPyBeginBlockThreads();
647 if (deadObjectClass
== NULL
) {
648 deadObjectClass
= PyDict_GetItemString(wxPython_dict
, "_wxPyDeadObject");
649 wxASSERT_MSG(deadObjectClass
!= NULL
, wxT("Can't get _wxPyDeadObject class!"));
650 Py_INCREF(deadObjectClass
);
654 // Only if there is more than one reference to the object
655 if ( !wxPyDoingCleanup
&& self
->m_obj
->ob_refcnt
> 1 ) {
656 wxASSERT_MSG(PyInstance_Check(self
->m_obj
), wxT("m_obj not an instance!?!?!"));
658 // Call __del__, if there is one.
659 PyObject
* func
= PyObject_GetAttrString(self
->m_obj
, "__del__");
661 PyObject
* rv
= PyObject_CallMethod(self
->m_obj
, "__del__", NULL
);
665 if (PyErr_Occurred())
666 PyErr_Clear(); // just ignore it for now
668 // Clear the instance's dictionary
669 PyInstanceObject
* inst
= (PyInstanceObject
*)self
->m_obj
;
670 PyDict_Clear(inst
->in_dict
);
672 // put the name of the old class into the instance, and then reset the
673 // class to be the dead class.
674 PyDict_SetItemString(inst
->in_dict
, "_name", inst
->in_class
->cl_name
);
675 inst
->in_class
= (PyClassObject
*)deadObjectClass
;
676 Py_INCREF(deadObjectClass
);
679 // m_obj is DECREF's in the base class dtor...
680 wxPyEndBlockThreads();
684 //---------------------------------------------------------------------------
685 // Stuff used by OOR to find the right wxPython class type to return and to
689 // The pointer type map is used when the "pointer" type name generated by SWIG
690 // is not the same as the shadow class name, for example wxPyTreeCtrl
691 // vs. wxTreeCtrl. It needs to be referenced in Python as well as from C++,
692 // so we'll just make it a Python dictionary in the wx module's namespace.
693 // (See __wxSetDictionary)
694 void wxPyPtrTypeMap_Add(const char* commonName
, const char* ptrName
) {
695 if (! wxPyPtrTypeMap
)
696 wxPyPtrTypeMap
= PyDict_New();
697 PyDict_SetItemString(wxPyPtrTypeMap
,
699 PyString_FromString((char*)ptrName
));
704 PyObject
* wxPyClassExists(const wxString
& className
) {
707 wxString
name(className
);
708 char buff
[64]; // should always be big enough...
713 // Try the name as-is first
714 sprintf(buff
, "%sPtr", (const char*)name
.mbc_str());
715 PyObject
* classobj
= PyDict_GetItemString(wxPython_dict
, buff
);
717 // if not found see if there is a mapped name for it
719 if ((item
= PyDict_GetItemString(wxPyPtrTypeMap
, (char*)(const char*)name
.mbc_str())) != NULL
) {
720 name
= wxString(PyString_AsString(item
), *wxConvCurrent
);
721 sprintf(buff
, "%sPtr", (const char*)name
.mbc_str());
722 classobj
= PyDict_GetItemString(wxPython_dict
, buff
);
726 return classobj
; // returns NULL if not found
730 PyObject
* wxPyMake_wxObject(wxObject
* source
, bool checkEvtHandler
) {
731 PyObject
* target
= NULL
;
732 bool isEvtHandler
= FALSE
;
735 // If it's derived from wxEvtHandler then there may
736 // already be a pointer to a Python object that we can use
738 if (checkEvtHandler
&& wxIsKindOf(source
, wxEvtHandler
)) {
740 wxEvtHandler
* eh
= (wxEvtHandler
*)source
;
741 wxPyOORClientData
* data
= (wxPyOORClientData
*)eh
->GetClientObject();
743 target
= data
->m_obj
;
749 // Otherwise make it the old fashioned way by making a
750 // new shadow object and putting this pointer in it.
751 wxClassInfo
* info
= source
->GetClassInfo();
752 wxString name
= info
->GetClassName();
753 PyObject
* klass
= wxPyClassExists(name
);
754 while (info
&& !klass
) {
755 name
= (wxChar
*)info
->GetBaseClassName1();
756 info
= wxClassInfo::FindClass(name
);
757 klass
= wxPyClassExists(name
);
760 target
= wxPyConstructObject(source
, name
, klass
, FALSE
);
761 if (target
&& isEvtHandler
)
762 ((wxEvtHandler
*)source
)->SetClientObject(new wxPyOORClientData(target
));
764 wxString
msg(wxT("wxPython class not found for "));
765 msg
+= source
->GetClassInfo()->GetClassName();
766 PyErr_SetString(PyExc_NameError
, msg
.mbc_str());
770 } else { // source was NULL so return None.
771 Py_INCREF(Py_None
); target
= Py_None
;
777 PyObject
* wxPyMake_wxSizer(wxSizer
* source
) {
778 PyObject
* target
= NULL
;
780 if (source
&& wxIsKindOf(source
, wxSizer
)) {
781 // If it's derived from wxSizer then there may
782 // already be a pointer to a Python object that we can use
784 wxSizer
* sz
= (wxSizer
*)source
;
785 wxPyOORClientData
* data
= (wxPyOORClientData
*)sz
->GetClientObject();
787 target
= data
->m_obj
;
792 target
= wxPyMake_wxObject(source
, FALSE
);
793 if (target
!= Py_None
)
794 ((wxSizer
*)source
)->SetClientObject(new wxPyOORClientData(target
));
801 //---------------------------------------------------------------------------
803 PyObject
* wxPyConstructObject(void* ptr
,
804 const wxString
& className
,
811 wxString
name(className
);
812 char swigptr
[64]; // should always be big enough...
815 if ((item
= PyDict_GetItemString(wxPyPtrTypeMap
, (char*)(const char*)name
.mbc_str())) != NULL
) {
816 name
= wxString(PyString_AsString(item
), *wxConvCurrent
);
818 sprintf(buff
, "_%s_p", (const char*)name
.mbc_str());
819 SWIG_MakePtr(swigptr
, ptr
, buff
);
821 arg
= Py_BuildValue("(s)", swigptr
);
822 obj
= PyInstance_New(klass
, arg
, NULL
);
826 PyObject
* one
= PyInt_FromLong(1);
827 PyObject_SetAttrString(obj
, "thisown", one
);
835 PyObject
* wxPyConstructObject(void* ptr
,
836 const wxString
& className
,
843 char buff
[64]; // should always be big enough...
844 sprintf(buff
, "%sPtr", (const char*)className
.mbc_str());
846 wxASSERT_MSG(wxPython_dict
, wxT("wxPython_dict is not set yet!!"));
848 PyObject
* classobj
= PyDict_GetItemString(wxPython_dict
, buff
);
850 wxString
msg(wxT("wxPython class not found for "));
852 PyErr_SetString(PyExc_NameError
, msg
.mbc_str());
856 return wxPyConstructObject(ptr
, className
, classobj
, setThisOwn
);
860 //---------------------------------------------------------------------------
863 #ifdef WXP_WITH_THREAD
865 unsigned long wxPyGetCurrentThreadId() {
866 return wxThread::GetCurrentId();
869 static PyThreadState
* gs_shutdownTState
;
871 PyThreadState
* wxPyGetThreadState() {
872 if (wxPyTMutex
== NULL
) // Python is shutting down...
873 return gs_shutdownTState
;
875 unsigned long ctid
= wxPyGetCurrentThreadId();
876 PyThreadState
* tstate
= NULL
;
879 for(size_t i
=0; i
< wxPyTStates
->GetCount(); i
++) {
880 wxPyThreadState
& info
= wxPyTStates
->Item(i
);
881 if (info
.tid
== ctid
) {
882 tstate
= info
.tstate
;
886 wxPyTMutex
->Unlock();
887 wxASSERT_MSG(tstate
, wxT("PyThreadState should not be NULL!"));
892 void wxPySaveThreadState(PyThreadState
* tstate
) {
893 if (wxPyTMutex
== NULL
) { // Python is shutting down, assume a single thread...
894 gs_shutdownTState
= tstate
;
897 unsigned long ctid
= wxPyGetCurrentThreadId();
899 for(size_t i
=0; i
< wxPyTStates
->GetCount(); i
++) {
900 wxPyThreadState
& info
= wxPyTStates
->Item(i
);
901 if (info
.tid
== ctid
) {
903 if (info
.tstate
!= tstate
)
904 wxLogMessage("*** tstate mismatch!???");
906 // info.tstate = tstate; *** DO NOT update existing ones???
907 // Normally it will never change, but apparently COM callbacks
908 // (i.e. ActiveX controls) will (incorrectly IMHO) use a transient
909 // tstate which will then be garbage the next time we try to use
911 wxPyTMutex
->Unlock();
915 // not found, so add it...
916 wxPyTStates
->Add(new wxPyThreadState(ctid
, tstate
));
917 wxPyTMutex
->Unlock();
923 // Calls from Python to wxWindows code are wrapped in calls to these
926 PyThreadState
* wxPyBeginAllowThreads() {
927 #ifdef WXP_WITH_THREAD
928 PyThreadState
* saved
= PyEval_SaveThread(); // Py_BEGIN_ALLOW_THREADS;
929 wxPySaveThreadState(saved
);
936 void wxPyEndAllowThreads(PyThreadState
* saved
) {
937 #ifdef WXP_WITH_THREAD
938 PyEval_RestoreThread(saved
); // Py_END_ALLOW_THREADS;
944 // Calls from wxWindows back to Python code, or even any PyObject
945 // manipulations, PyDECREF's and etc. are wrapped in calls to these functions:
947 void wxPyBeginBlockThreads() {
948 #ifdef WXP_WITH_THREAD
949 PyThreadState
* tstate
= wxPyGetThreadState();
950 PyEval_RestoreThread(tstate
);
955 void wxPyEndBlockThreads() {
956 #ifdef WXP_WITH_THREAD
957 // Is there any need to save it again?
958 // PyThreadState* tstate =
964 //---------------------------------------------------------------------------
965 // wxPyInputStream and wxPyCBInputStream methods
968 void wxPyInputStream::close() {
969 /* do nothing for now */
972 void wxPyInputStream::flush() {
973 /* do nothing for now */
976 bool wxPyInputStream::eof() {
978 return m_wxis
->Eof();
983 wxPyInputStream::~wxPyInputStream() {
990 PyObject
* wxPyInputStream::read(int size
) {
991 PyObject
* obj
= NULL
;
993 const int BUFSIZE
= 1024;
995 // check if we have a real wxInputStream to work with
997 wxPyBeginBlockThreads();
998 PyErr_SetString(PyExc_IOError
, "no valid C-wxInputStream");
999 wxPyEndBlockThreads();
1004 // read while bytes are available on the stream
1005 while ( m_wxis
->CanRead() ) {
1006 m_wxis
->Read(buf
.GetAppendBuf(BUFSIZE
), BUFSIZE
);
1007 buf
.UngetAppendBuf(m_wxis
->LastRead());
1010 } else { // Read only size number of characters
1011 m_wxis
->Read(buf
.GetWriteBuf(size
), size
);
1012 buf
.UngetWriteBuf(m_wxis
->LastRead());
1016 wxPyBeginBlockThreads();
1017 wxStreamError err
= m_wxis
->GetLastError();
1018 if (err
!= wxSTREAM_NO_ERROR
&& err
!= wxSTREAM_EOF
) {
1019 PyErr_SetString(PyExc_IOError
,"IOError in wxInputStream");
1022 // We use only strings for the streams, not unicode
1023 obj
= PyString_FromStringAndSize(buf
, buf
.GetDataLen());
1025 wxPyEndBlockThreads();
1030 PyObject
* wxPyInputStream::readline(int size
) {
1031 PyObject
* obj
= NULL
;
1036 // check if we have a real wxInputStream to work with
1038 wxPyBeginBlockThreads();
1039 PyErr_SetString(PyExc_IOError
,"no valid C-wxInputStream");
1040 wxPyEndBlockThreads();
1044 // read until \n or byte limit reached
1045 for (i
=ch
=0; (ch
!= '\n') && (m_wxis
->CanRead()) && ((size
< 0) || (i
< size
)); i
++) {
1046 ch
= m_wxis
->GetC();
1051 wxPyBeginBlockThreads();
1052 wxStreamError err
= m_wxis
->GetLastError();
1053 if (err
!= wxSTREAM_NO_ERROR
&& err
!= wxSTREAM_EOF
) {
1054 PyErr_SetString(PyExc_IOError
,"IOError in wxInputStream");
1057 // We use only strings for the streams, not unicode
1058 obj
= PyString_FromStringAndSize((char*)buf
.GetData(), buf
.GetDataLen());
1060 wxPyEndBlockThreads();
1065 PyObject
* wxPyInputStream::readlines(int sizehint
) {
1068 // check if we have a real wxInputStream to work with
1070 wxPyBeginBlockThreads();
1071 PyErr_SetString(PyExc_IOError
,"no valid C-wxInputStream");
1072 wxPyEndBlockThreads();
1077 wxPyBeginBlockThreads();
1078 pylist
= PyList_New(0);
1080 wxPyBeginBlockThreads();
1082 wxPyEndBlockThreads();
1086 // read sizehint bytes or until EOF
1088 for (i
=0; (m_wxis
->CanRead()) && ((sizehint
< 0) || (i
< sizehint
));) {
1089 PyObject
* s
= this->readline();
1091 wxPyBeginBlockThreads();
1093 wxPyEndBlockThreads();
1096 wxPyBeginBlockThreads();
1097 PyList_Append(pylist
, s
);
1098 i
+= PyString_Size(s
);
1099 wxPyEndBlockThreads();
1103 wxStreamError err
= m_wxis
->GetLastError();
1104 if (err
!= wxSTREAM_NO_ERROR
&& err
!= wxSTREAM_EOF
) {
1105 wxPyBeginBlockThreads();
1107 PyErr_SetString(PyExc_IOError
,"IOError in wxInputStream");
1108 wxPyEndBlockThreads();
1116 void wxPyInputStream::seek(int offset
, int whence
) {
1118 m_wxis
->SeekI(offset
, wxSeekMode(whence
));
1121 int wxPyInputStream::tell(){
1123 return m_wxis
->TellI();
1130 wxPyCBInputStream::wxPyCBInputStream(PyObject
*r
, PyObject
*s
, PyObject
*t
, bool block
)
1131 : wxInputStream(), m_read(r
), m_seek(s
), m_tell(t
), m_block(block
)
1135 wxPyCBInputStream::~wxPyCBInputStream() {
1136 if (m_block
) wxPyBeginBlockThreads();
1140 if (m_block
) wxPyEndBlockThreads();
1144 wxPyCBInputStream
* wxPyCBInputStream::create(PyObject
*py
, bool block
) {
1145 if (block
) wxPyBeginBlockThreads();
1147 PyObject
* read
= getMethod(py
, "read");
1148 PyObject
* seek
= getMethod(py
, "seek");
1149 PyObject
* tell
= getMethod(py
, "tell");
1152 PyErr_SetString(PyExc_TypeError
, "Not a file-like object");
1156 if (block
) wxPyEndBlockThreads();
1160 if (block
) wxPyEndBlockThreads();
1161 return new wxPyCBInputStream(read
, seek
, tell
, block
);
1165 wxPyCBInputStream
* wxPyCBInputStream_create(PyObject
*py
, bool block
) {
1166 return wxPyCBInputStream::create(py
, block
);
1169 PyObject
* wxPyCBInputStream::getMethod(PyObject
* py
, char* name
) {
1170 if (!PyObject_HasAttrString(py
, name
))
1172 PyObject
* o
= PyObject_GetAttrString(py
, name
);
1173 if (!PyMethod_Check(o
) && !PyCFunction_Check(o
)) {
1181 size_t wxPyCBInputStream::GetSize() const {
1182 wxPyCBInputStream
* self
= (wxPyCBInputStream
*)this; // cast off const
1183 if (m_seek
&& m_tell
) {
1184 off_t temp
= self
->OnSysTell();
1185 off_t ret
= self
->OnSysSeek(0, wxFromEnd
);
1186 self
->OnSysSeek(temp
, wxFromStart
);
1194 size_t wxPyCBInputStream::OnSysRead(void *buffer
, size_t bufsize
) {
1198 wxPyBeginBlockThreads();
1199 PyObject
* arglist
= Py_BuildValue("(i)", bufsize
);
1200 PyObject
* result
= PyEval_CallObject(m_read
, arglist
);
1204 if ((result
!= NULL
) && PyString_Check(result
)) {
1205 o
= PyString_Size(result
);
1207 m_lasterror
= wxSTREAM_EOF
;
1210 memcpy((char*)buffer
, PyString_AsString(result
), o
); // strings only, not unicode...
1215 m_lasterror
= wxSTREAM_READ_ERROR
;
1216 wxPyEndBlockThreads();
1220 size_t wxPyCBInputStream::OnSysWrite(const void *buffer
, size_t bufsize
) {
1221 m_lasterror
= wxSTREAM_WRITE_ERROR
;
1225 off_t
wxPyCBInputStream::OnSysSeek(off_t off
, wxSeekMode mode
) {
1226 wxPyBeginBlockThreads();
1228 // off_t is a 64-bit value...
1229 PyObject
* arglist
= Py_BuildValue("(Li)", off
, mode
);
1231 PyObject
* arglist
= Py_BuildValue("(ii)", off
, mode
);
1233 PyObject
* result
= PyEval_CallObject(m_seek
, arglist
);
1236 wxPyEndBlockThreads();
1241 off_t
wxPyCBInputStream::OnSysTell() const {
1242 wxPyBeginBlockThreads();
1243 PyObject
* arglist
= Py_BuildValue("()");
1244 PyObject
* result
= PyEval_CallObject(m_tell
, arglist
);
1247 if (result
!= NULL
) {
1249 if (PyLong_Check(result
))
1250 o
= PyLong_AsLongLong(result
);
1253 o
= PyInt_AsLong(result
);
1257 wxPyEndBlockThreads();
1261 //----------------------------------------------------------------------
1263 IMPLEMENT_ABSTRACT_CLASS(wxPyCallback
, wxObject
);
1265 wxPyCallback::wxPyCallback(PyObject
* func
) {
1270 wxPyCallback::wxPyCallback(const wxPyCallback
& other
) {
1271 m_func
= other
.m_func
;
1275 wxPyCallback::~wxPyCallback() {
1276 wxPyBeginBlockThreads();
1278 wxPyEndBlockThreads();
1283 // This function is used for all events destined for Python event handlers.
1284 void wxPyCallback::EventThunker(wxEvent
& event
) {
1285 wxPyCallback
* cb
= (wxPyCallback
*)event
.m_callbackUserData
;
1286 PyObject
* func
= cb
->m_func
;
1290 bool checkSkip
= FALSE
;
1292 wxPyBeginBlockThreads();
1293 wxString className
= event
.GetClassInfo()->GetClassName();
1295 // If the event is one of these types then pass the original
1296 // event object instead of the one passed to us.
1297 if ( className
== wxT("wxPyEvent") ) {
1298 arg
= ((wxPyEvent
*)&event
)->GetSelf();
1299 checkSkip
= ((wxPyEvent
*)&event
)->GetCloned();
1301 else if ( className
== wxT("wxPyCommandEvent") ) {
1302 arg
= ((wxPyCommandEvent
*)&event
)->GetSelf();
1303 checkSkip
= ((wxPyCommandEvent
*)&event
)->GetCloned();
1306 arg
= wxPyConstructObject((void*)&event
, className
);
1309 // Call the event handler, passing the event object
1310 tuple
= PyTuple_New(1);
1311 PyTuple_SET_ITEM(tuple
, 0, arg
); // steals ref to arg
1312 result
= PyEval_CallObject(func
, tuple
);
1314 Py_DECREF(result
); // result is ignored, but we still need to decref it
1315 PyErr_Clear(); // Just in case...
1321 // if the event object was one of our special types and
1322 // it had been cloned, then we need to extract the Skipped
1323 // value from the original and set it in the clone.
1324 result
= PyObject_CallMethod(arg
, "GetSkipped", "");
1326 event
.Skip(PyInt_AsLong(result
));
1334 wxPyEndBlockThreads();
1338 //----------------------------------------------------------------------
1340 wxPyCallbackHelper::wxPyCallbackHelper(const wxPyCallbackHelper
& other
) {
1342 m_self
= other
.m_self
;
1343 m_class
= other
.m_class
;
1351 void wxPyCallbackHelper::setSelf(PyObject
* self
, PyObject
* klass
, int incref
) {
1362 #if PYTHON_API_VERSION >= 1011
1364 // Prior to Python 2.2 PyMethod_GetClass returned the class object
1365 // in which the method was defined. Starting with 2.2 it returns
1366 // "class that asked for the method" which seems totally bogus to me
1367 // but apprently it fixes some obscure problem waiting to happen in
1368 // Python. Since the API was not documented Guido and the gang felt
1369 // safe in changing it. Needless to say that totally screwed up the
1370 // logic below in wxPyCallbackHelper::findCallback, hence this icky
1371 // code to find the class where the method is actually defined...
1374 PyObject
* PyFindClassWithAttr(PyObject
*klass
, PyObject
*name
)
1378 if (PyType_Check(klass
)) { // new style classes
1379 // This code is borrowed/adapted from _PyType_Lookup in typeobject.c
1380 // (TODO: This part is not tested yet, so I'm not sure it is correct...)
1381 PyTypeObject
* type
= (PyTypeObject
*)klass
;
1382 PyObject
*mro
, *res
, *base
, *dict
;
1383 /* Look in tp_dict of types in MRO */
1385 assert(PyTuple_Check(mro
));
1386 n
= PyTuple_GET_SIZE(mro
);
1387 for (i
= 0; i
< n
; i
++) {
1388 base
= PyTuple_GET_ITEM(mro
, i
);
1389 if (PyClass_Check(base
))
1390 dict
= ((PyClassObject
*)base
)->cl_dict
;
1392 assert(PyType_Check(base
));
1393 dict
= ((PyTypeObject
*)base
)->tp_dict
;
1395 assert(dict
&& PyDict_Check(dict
));
1396 res
= PyDict_GetItem(dict
, name
);
1403 else if (PyClass_Check(klass
)) { // old style classes
1404 // This code is borrowed/adapted from class_lookup in classobject.c
1405 PyClassObject
* cp
= (PyClassObject
*)klass
;
1406 PyObject
*value
= PyDict_GetItem(cp
->cl_dict
, name
);
1407 if (value
!= NULL
) {
1408 return (PyObject
*)cp
;
1410 n
= PyTuple_Size(cp
->cl_bases
);
1411 for (i
= 0; i
< n
; i
++) {
1412 PyObject
* base
= PyTuple_GetItem(cp
->cl_bases
, i
);
1413 PyObject
*v
= PyFindClassWithAttr(base
, name
);
1425 PyObject
* PyMethod_GetDefiningClass(PyObject
* method
, const char* name
)
1427 PyObject
* mgc
= PyMethod_GET_CLASS(method
);
1429 #if PYTHON_API_VERSION <= 1010 // prior to Python 2.2, the easy way
1431 #else // 2.2 and after, the hard way...
1433 PyObject
* nameo
= PyString_FromString(name
);
1434 PyObject
* klass
= PyFindClassWithAttr(mgc
, nameo
);
1442 bool wxPyCallbackHelper::findCallback(const char* name
) const {
1443 wxPyCallbackHelper
* self
= (wxPyCallbackHelper
*)this; // cast away const
1444 self
->m_lastFound
= NULL
;
1446 // If the object (m_self) has an attibute of the given name...
1447 if (m_self
&& PyObject_HasAttrString(m_self
, (char*)name
)) {
1448 PyObject
*method
, *klass
;
1449 method
= PyObject_GetAttrString(m_self
, (char*)name
);
1451 // ...and if that attribute is a method, and if that method's class is
1452 // not from a base class...
1453 if (PyMethod_Check(method
) &&
1454 (klass
= PyMethod_GetDefiningClass(method
, (char*)name
)) != NULL
&&
1455 ((klass
== m_class
) || PyClass_IsSubclass(klass
, m_class
))) {
1457 // ...then we'll save a pointer to the method so callCallback can call it.
1458 self
->m_lastFound
= method
;
1464 return m_lastFound
!= NULL
;
1468 int wxPyCallbackHelper::callCallback(PyObject
* argTuple
) const {
1472 result
= callCallbackObj(argTuple
);
1473 if (result
) { // Assumes an integer return type...
1474 retval
= PyInt_AsLong(result
);
1476 PyErr_Clear(); // forget about it if it's not...
1481 // Invoke the Python callable object, returning the raw PyObject return
1482 // value. Caller should DECREF the return value and also call PyEval_SaveThread.
1483 PyObject
* wxPyCallbackHelper::callCallbackObj(PyObject
* argTuple
) const {
1486 // Save a copy of the pointer in case the callback generates another
1487 // callback. In that case m_lastFound will have a different value when
1488 // it gets back here...
1489 PyObject
* method
= m_lastFound
;
1491 result
= PyEval_CallObject(method
, argTuple
);
1492 Py_DECREF(argTuple
);
1501 void wxPyCBH_setCallbackInfo(wxPyCallbackHelper
& cbh
, PyObject
* self
, PyObject
* klass
, int incref
) {
1502 cbh
.setSelf(self
, klass
, incref
);
1505 bool wxPyCBH_findCallback(const wxPyCallbackHelper
& cbh
, const char* name
) {
1506 return cbh
.findCallback(name
);
1509 int wxPyCBH_callCallback(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
) {
1510 return cbh
.callCallback(argTuple
);
1513 PyObject
* wxPyCBH_callCallbackObj(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
) {
1514 return cbh
.callCallbackObj(argTuple
);
1518 void wxPyCBH_delete(wxPyCallbackHelper
* cbh
) {
1519 if (cbh
->m_incRef
) {
1520 wxPyBeginBlockThreads();
1521 Py_XDECREF(cbh
->m_self
);
1522 Py_XDECREF(cbh
->m_class
);
1523 wxPyEndBlockThreads();
1527 //---------------------------------------------------------------------------
1528 //---------------------------------------------------------------------------
1529 // These event classes can be derived from in Python and passed through the event
1530 // system without losing anything. They do this by keeping a reference to
1531 // themselves and some special case handling in wxPyCallback::EventThunker.
1534 wxPyEvtSelfRef::wxPyEvtSelfRef() {
1535 //m_self = Py_None; // **** We don't do normal ref counting to prevent
1536 //Py_INCREF(m_self); // circular loops...
1540 wxPyEvtSelfRef::~wxPyEvtSelfRef() {
1541 wxPyBeginBlockThreads();
1544 wxPyEndBlockThreads();
1547 void wxPyEvtSelfRef::SetSelf(PyObject
* self
, bool clone
) {
1548 wxPyBeginBlockThreads();
1556 wxPyEndBlockThreads();
1559 PyObject
* wxPyEvtSelfRef::GetSelf() const {
1565 IMPLEMENT_ABSTRACT_CLASS(wxPyEvent
, wxEvent
);
1566 IMPLEMENT_ABSTRACT_CLASS(wxPyCommandEvent
, wxCommandEvent
);
1569 wxPyEvent::wxPyEvent(int winid
, wxEventType commandType
)
1570 : wxEvent(winid
, commandType
) {
1574 wxPyEvent::wxPyEvent(const wxPyEvent
& evt
)
1577 SetSelf(evt
.m_self
, TRUE
);
1581 wxPyEvent::~wxPyEvent() {
1585 wxPyCommandEvent::wxPyCommandEvent(wxEventType commandType
, int id
)
1586 : wxCommandEvent(commandType
, id
) {
1590 wxPyCommandEvent::wxPyCommandEvent(const wxPyCommandEvent
& evt
)
1591 : wxCommandEvent(evt
)
1593 SetSelf(evt
.m_self
, TRUE
);
1597 wxPyCommandEvent::~wxPyCommandEvent() {
1603 //---------------------------------------------------------------------------
1604 //---------------------------------------------------------------------------
1607 wxPyTimer::wxPyTimer(PyObject
* callback
) {
1612 wxPyTimer::~wxPyTimer() {
1613 wxPyBeginBlockThreads();
1615 wxPyEndBlockThreads();
1618 void wxPyTimer::Notify() {
1619 if (!func
|| func
== Py_None
) {
1623 wxPyBeginBlockThreads();
1626 PyObject
* args
= Py_BuildValue("()");
1628 result
= PyEval_CallObject(func
, args
);
1637 wxPyEndBlockThreads();
1643 //---------------------------------------------------------------------------
1644 //---------------------------------------------------------------------------
1645 // Convert a wxList to a Python List
1647 PyObject
* wxPy_ConvertList(wxListBase
* listbase
, const char* className
) {
1648 wxList
* list
= (wxList
*)listbase
; // this is probably bad...
1652 wxNode
* node
= list
->GetFirst();
1654 wxPyBeginBlockThreads();
1655 pyList
= PyList_New(0);
1657 wxObj
= node
->GetData();
1658 pyObj
= wxPyMake_wxObject(wxObj
); //wxPyConstructObject(wxObj, className);
1659 PyList_Append(pyList
, pyObj
);
1660 node
= node
->GetNext();
1662 wxPyEndBlockThreads();
1666 //----------------------------------------------------------------------
1668 long wxPyGetWinHandle(wxWindow
* win
) {
1670 return (long)win
->GetHandle();
1674 return (long)win
->GetHandle();
1677 // Find and return the actual X-Window.
1679 if (win
->m_wxwindow
) {
1681 return (long) GDK_WINDOW_XWINDOW(GTK_PIZZA(win
->m_wxwindow
)->bin_window
);
1683 GdkWindowPrivate
* bwin
= (GdkWindowPrivate
*)GTK_PIZZA(win
->m_wxwindow
)->bin_window
;
1685 return (long)bwin
->xwindow
;
1693 //----------------------------------------------------------------------
1694 // Some helper functions for typemaps in my_typemaps.i, so they won't be
1695 // included in every file over and over again...
1697 #if PYTHON_API_VERSION >= 1009
1698 static char* wxStringErrorMsg
= "String or Unicode type required";
1700 static char* wxStringErrorMsg
= "String type required";
1704 wxString
* wxString_in_helper(PyObject
* source
) {
1706 #if PYTHON_API_VERSION >= 1009 // Have Python unicode API
1707 if (!PyString_Check(source
) && !PyUnicode_Check(source
)) {
1708 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1712 if (PyUnicode_Check(source
)) {
1713 target
= new wxString();
1714 size_t len
= PyUnicode_GET_SIZE(source
);
1716 PyUnicode_AsWideChar((PyUnicodeObject
*)source
, target
->GetWriteBuf(len
), len
);
1717 target
->UngetWriteBuf();
1720 // It is a string, get pointers to it and transform to unicode
1721 char* tmpPtr
; int tmpSize
;
1722 PyString_AsStringAndSize(source
, &tmpPtr
, &tmpSize
);
1723 target
= new wxString(tmpPtr
, *wxConvCurrent
, tmpSize
);
1726 char* tmpPtr
; int tmpSize
;
1727 if (PyString_AsStringAndSize(source
, &tmpPtr
, &tmpSize
) == -1) {
1728 PyErr_SetString(PyExc_TypeError
, "Unable to convert string");
1731 target
= new wxString(tmpPtr
, tmpSize
);
1732 #endif // wxUSE_UNICODE
1734 #else // No Python unicode API (1.5.2)
1735 if (!PyString_Check(source
)) {
1736 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1739 target
= new wxString(PyString_AS_STRING(source
), PyString_GET_SIZE(source
));
1745 // Similar to above except doesn't use "new" and doesn't set an exception
1746 wxString
Py2wxString(PyObject
* source
)
1749 bool doDecRef
= FALSE
;
1751 #if PYTHON_API_VERSION >= 1009 // Have Python unicode API
1752 if (!PyString_Check(source
) && !PyUnicode_Check(source
)) {
1753 // Convert to String if not one already... (TODO: Unicode too?)
1754 source
= PyObject_Str(source
);
1759 if (PyUnicode_Check(source
)) {
1760 size_t len
= PyUnicode_GET_SIZE(source
);
1762 PyUnicode_AsWideChar((PyUnicodeObject
*)source
, target
.GetWriteBuf(len
), len
);
1763 target
.UngetWriteBuf();
1766 // It is a string, get pointers to it and transform to unicode
1767 char* tmpPtr
; int tmpSize
;
1768 PyString_AsStringAndSize(source
, &tmpPtr
, &tmpSize
);
1769 target
= wxString(tmpPtr
, *wxConvCurrent
, tmpSize
);
1772 char* tmpPtr
; int tmpSize
;
1773 PyString_AsStringAndSize(source
, &tmpPtr
, &tmpSize
);
1774 target
= wxString(tmpPtr
, tmpSize
);
1775 #endif // wxUSE_UNICODE
1777 #else // No Python unicode API (1.5.2)
1778 if (!PyString_Check(source
)) {
1779 // Convert to String if not one already...
1780 source
= PyObject_Str(source
);
1783 target
= wxString(PyString_AS_STRING(source
), PyString_GET_SIZE(source
));
1792 // Make either a Python String or Unicode object, depending on build mode
1793 PyObject
* wx2PyString(const wxString
& src
)
1797 str
= PyUnicode_FromWideChar(src
.c_str(), src
.Len());
1799 str
= PyString_FromStringAndSize(src
.c_str(), src
.Len());
1805 //----------------------------------------------------------------------
1808 byte
* byte_LIST_helper(PyObject
* source
) {
1809 if (!PyList_Check(source
)) {
1810 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
1813 int count
= PyList_Size(source
);
1814 byte
* temp
= new byte
[count
];
1816 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
1819 for (int x
=0; x
<count
; x
++) {
1820 PyObject
* o
= PyList_GetItem(source
, x
);
1821 if (! PyInt_Check(o
)) {
1822 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
1825 temp
[x
] = (byte
)PyInt_AsLong(o
);
1831 int* int_LIST_helper(PyObject
* source
) {
1832 if (!PyList_Check(source
)) {
1833 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
1836 int count
= PyList_Size(source
);
1837 int* temp
= new int[count
];
1839 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
1842 for (int x
=0; x
<count
; x
++) {
1843 PyObject
* o
= PyList_GetItem(source
, x
);
1844 if (! PyInt_Check(o
)) {
1845 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
1848 temp
[x
] = PyInt_AsLong(o
);
1854 long* long_LIST_helper(PyObject
* source
) {
1855 if (!PyList_Check(source
)) {
1856 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
1859 int count
= PyList_Size(source
);
1860 long* temp
= new long[count
];
1862 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
1865 for (int x
=0; x
<count
; x
++) {
1866 PyObject
* o
= PyList_GetItem(source
, x
);
1867 if (! PyInt_Check(o
)) {
1868 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
1871 temp
[x
] = PyInt_AsLong(o
);
1877 char** string_LIST_helper(PyObject
* source
) {
1878 if (!PyList_Check(source
)) {
1879 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
1882 int count
= PyList_Size(source
);
1883 char** temp
= new char*[count
];
1885 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
1888 for (int x
=0; x
<count
; x
++) {
1889 PyObject
* o
= PyList_GetItem(source
, x
);
1890 if (! PyString_Check(o
)) {
1891 PyErr_SetString(PyExc_TypeError
, "Expected a list of strings.");
1894 temp
[x
] = PyString_AsString(o
);
1899 //--------------------------------
1900 // Part of patch from Tim Hochberg
1901 static inline bool wxPointFromObjects(PyObject
* o1
, PyObject
* o2
, wxPoint
* point
) {
1902 if (PyInt_Check(o1
) && PyInt_Check(o2
)) {
1903 point
->x
= PyInt_AS_LONG(o1
);
1904 point
->y
= PyInt_AS_LONG(o2
);
1907 if (PyFloat_Check(o1
) && PyFloat_Check(o2
)) {
1908 point
->x
= (int)PyFloat_AS_DOUBLE(o1
);
1909 point
->y
= (int)PyFloat_AS_DOUBLE(o2
);
1912 if (PyInstance_Check(o1
) || PyInstance_Check(o2
)) {
1913 // Disallow instances because they can cause havok
1916 if (PyNumber_Check(o1
) && PyNumber_Check(o2
)) {
1917 // I believe this excludes instances, so this should be safe without INCREFFing o1 and o2
1918 point
->x
= PyInt_AsLong(o1
);
1919 point
->y
= PyInt_AsLong(o2
);
1926 wxPoint
* wxPoint_LIST_helper(PyObject
* source
, int *count
) {
1927 // Putting all of the declarations here allows
1928 // us to put the error handling all in one place.
1931 PyObject
*o
, *o1
, *o2
;
1932 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
1934 if (!PySequence_Check(source
)) {
1938 // The length of the sequence is returned in count.
1939 *count
= PySequence_Length(source
);
1944 temp
= new wxPoint
[*count
];
1946 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
1949 for (x
=0; x
<*count
; x
++) {
1950 // Get an item: try fast way first.
1952 o
= PySequence_Fast_GET_ITEM(source
, x
);
1955 o
= PySequence_GetItem(source
, x
);
1961 // Convert o to wxPoint.
1962 if ((PyTuple_Check(o
) && PyTuple_GET_SIZE(o
) == 2) ||
1963 (PyList_Check(o
) && PyList_GET_SIZE(o
) == 2)) {
1964 o1
= PySequence_Fast_GET_ITEM(o
, 0);
1965 o2
= PySequence_Fast_GET_ITEM(o
, 1);
1966 if (!wxPointFromObjects(o1
, o2
, &temp
[x
])) {
1970 else if (PyInstance_Check(o
)) {
1972 if (SWIG_GetPtrObj(o
, (void **)&pt
, "_wxPoint_p")) {
1977 else if (PySequence_Check(o
) && PySequence_Length(o
) == 2) {
1978 o1
= PySequence_GetItem(o
, 0);
1979 o2
= PySequence_GetItem(o
, 1);
1980 if (!wxPointFromObjects(o1
, o2
, &temp
[x
])) {
2004 PyErr_SetString(PyExc_TypeError
, "Expected a sequence of length-2 sequences or wxPoints.");
2008 //------------------------------
2011 wxBitmap
** wxBitmap_LIST_helper(PyObject
* source
) {
2012 if (!PyList_Check(source
)) {
2013 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2016 int count
= PyList_Size(source
);
2017 wxBitmap
** temp
= new wxBitmap
*[count
];
2019 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2022 for (int x
=0; x
<count
; x
++) {
2023 PyObject
* o
= PyList_GetItem(source
, x
);
2024 if (PyInstance_Check(o
)) {
2026 if (SWIG_GetPtrObj(o
, (void **) &pt
,"_wxBitmap_p")) {
2027 PyErr_SetString(PyExc_TypeError
,"Expected _wxBitmap_p.");
2033 PyErr_SetString(PyExc_TypeError
, "Expected a list of wxBitmaps.");
2042 wxString
* wxString_LIST_helper(PyObject
* source
) {
2043 if (!PyList_Check(source
)) {
2044 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2047 int count
= PyList_Size(source
);
2048 wxString
* temp
= new wxString
[count
];
2050 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2053 for (int x
=0; x
<count
; x
++) {
2054 PyObject
* o
= PyList_GetItem(source
, x
);
2055 #if PYTHON_API_VERSION >= 1009
2056 if (! PyString_Check(o
) && ! PyUnicode_Check(o
)) {
2057 PyErr_SetString(PyExc_TypeError
, "Expected a list of string or unicode objects.");
2061 if (! PyString_Check(o
)) {
2062 PyErr_SetString(PyExc_TypeError
, "Expected a list of strings.");
2067 wxString
* pStr
= wxString_in_helper(o
);
2075 wxAcceleratorEntry
* wxAcceleratorEntry_LIST_helper(PyObject
* source
) {
2076 if (!PyList_Check(source
)) {
2077 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2080 int count
= PyList_Size(source
);
2081 wxAcceleratorEntry
* temp
= new wxAcceleratorEntry
[count
];
2083 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2086 for (int x
=0; x
<count
; x
++) {
2087 PyObject
* o
= PyList_GetItem(source
, x
);
2088 if (PyInstance_Check(o
)) {
2089 wxAcceleratorEntry
* ae
;
2090 if (SWIG_GetPtrObj(o
, (void **) &ae
,"_wxAcceleratorEntry_p")) {
2091 PyErr_SetString(PyExc_TypeError
,"Expected _wxAcceleratorEntry_p.");
2096 else if (PyTuple_Check(o
)) {
2097 PyObject
* o1
= PyTuple_GetItem(o
, 0);
2098 PyObject
* o2
= PyTuple_GetItem(o
, 1);
2099 PyObject
* o3
= PyTuple_GetItem(o
, 2);
2100 temp
[x
].Set(PyInt_AsLong(o1
), PyInt_AsLong(o2
), PyInt_AsLong(o3
));
2103 PyErr_SetString(PyExc_TypeError
, "Expected a list of 3-tuples or wxAcceleratorEntry objects.");
2111 wxPen
** wxPen_LIST_helper(PyObject
* source
) {
2112 if (!PyList_Check(source
)) {
2113 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2116 int count
= PyList_Size(source
);
2117 wxPen
** temp
= new wxPen
*[count
];
2119 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2122 for (int x
=0; x
<count
; x
++) {
2123 PyObject
* o
= PyList_GetItem(source
, x
);
2124 if (PyInstance_Check(o
)) {
2126 if (SWIG_GetPtrObj(o
, (void **) &pt
,"_wxPen_p")) {
2128 PyErr_SetString(PyExc_TypeError
,"Expected _wxPen_p.");
2135 PyErr_SetString(PyExc_TypeError
, "Expected a list of wxPens.");
2143 bool wxPy2int_seq_helper(PyObject
* source
, int* i1
, int* i2
) {
2144 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
2147 if (!PySequence_Check(source
) || PySequence_Length(source
) != 2)
2151 o1
= PySequence_Fast_GET_ITEM(source
, 0);
2152 o2
= PySequence_Fast_GET_ITEM(source
, 1);
2155 o1
= PySequence_GetItem(source
, 0);
2156 o2
= PySequence_GetItem(source
, 1);
2159 *i1
= PyInt_AsLong(o1
);
2160 *i2
= PyInt_AsLong(o2
);
2170 bool wxPy4int_seq_helper(PyObject
* source
, int* i1
, int* i2
, int* i3
, int* i4
) {
2171 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
2172 PyObject
*o1
, *o2
, *o3
, *o4
;
2174 if (!PySequence_Check(source
) || PySequence_Length(source
) != 4)
2178 o1
= PySequence_Fast_GET_ITEM(source
, 0);
2179 o2
= PySequence_Fast_GET_ITEM(source
, 1);
2180 o3
= PySequence_Fast_GET_ITEM(source
, 2);
2181 o4
= PySequence_Fast_GET_ITEM(source
, 3);
2184 o1
= PySequence_GetItem(source
, 0);
2185 o2
= PySequence_GetItem(source
, 1);
2186 o3
= PySequence_GetItem(source
, 2);
2187 o4
= PySequence_GetItem(source
, 3);
2190 *i1
= PyInt_AsLong(o1
);
2191 *i2
= PyInt_AsLong(o2
);
2192 *i3
= PyInt_AsLong(o3
);
2193 *i4
= PyInt_AsLong(o4
);
2205 //----------------------------------------------------------------------
2207 bool wxSize_helper(PyObject
* source
, wxSize
** obj
) {
2209 // If source is an object instance then it may already be the right type
2210 if (PyInstance_Check(source
)) {
2212 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxSize_p"))
2217 // otherwise a 2-tuple of integers is expected
2218 else if (PySequence_Check(source
) && PyObject_Length(source
) == 2) {
2219 PyObject
* o1
= PySequence_GetItem(source
, 0);
2220 PyObject
* o2
= PySequence_GetItem(source
, 1);
2221 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
)) {
2226 **obj
= wxSize(PyInt_AsLong(o1
), PyInt_AsLong(o2
));
2233 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of integers or a wxSize object.");
2238 bool wxPoint_helper(PyObject
* source
, wxPoint
** obj
) {
2240 // If source is an object instance then it may already be the right type
2241 if (PyInstance_Check(source
)) {
2243 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxPoint_p"))
2248 // otherwise a length-2 sequence of integers is expected
2249 if (PySequence_Check(source
) && PySequence_Length(source
) == 2) {
2250 PyObject
* o1
= PySequence_GetItem(source
, 0);
2251 PyObject
* o2
= PySequence_GetItem(source
, 1);
2252 // This should really check for integers, not numbers -- but that would break code.
2253 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
)) {
2258 **obj
= wxPoint(PyInt_AsLong(o1
), PyInt_AsLong(o2
));
2264 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of integers or a wxPoint object.");
2270 bool wxRealPoint_helper(PyObject
* source
, wxRealPoint
** obj
) {
2272 // If source is an object instance then it may already be the right type
2273 if (PyInstance_Check(source
)) {
2275 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxRealPoint_p"))
2280 // otherwise a 2-tuple of floats is expected
2281 else if (PySequence_Check(source
) && PyObject_Length(source
) == 2) {
2282 PyObject
* o1
= PySequence_GetItem(source
, 0);
2283 PyObject
* o2
= PySequence_GetItem(source
, 1);
2284 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
)) {
2289 **obj
= wxRealPoint(PyFloat_AsDouble(o1
), PyFloat_AsDouble(o2
));
2296 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of floats or a wxRealPoint object.");
2303 bool wxRect_helper(PyObject
* source
, wxRect
** obj
) {
2305 // If source is an object instance then it may already be the right type
2306 if (PyInstance_Check(source
)) {
2308 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxRect_p"))
2313 // otherwise a 4-tuple of integers is expected
2314 else if (PySequence_Check(source
) && PyObject_Length(source
) == 4) {
2315 PyObject
* o1
= PySequence_GetItem(source
, 0);
2316 PyObject
* o2
= PySequence_GetItem(source
, 1);
2317 PyObject
* o3
= PySequence_GetItem(source
, 2);
2318 PyObject
* o4
= PySequence_GetItem(source
, 3);
2319 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
) ||
2320 !PyNumber_Check(o3
) || !PyNumber_Check(o4
)) {
2327 **obj
= wxRect(PyInt_AsLong(o1
), PyInt_AsLong(o2
),
2328 PyInt_AsLong(o3
), PyInt_AsLong(o4
));
2337 PyErr_SetString(PyExc_TypeError
, "Expected a 4-tuple of integers or a wxRect object.");
2343 bool wxColour_helper(PyObject
* source
, wxColour
** obj
) {
2345 // If source is an object instance then it may already be the right type
2346 if (PyInstance_Check(source
)) {
2348 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxColour_p"))
2353 // otherwise check for a string
2354 else if (PyString_Check(source
) || PyUnicode_Check(source
)) {
2355 wxString spec
= Py2wxString(source
);
2356 if (spec
.GetChar(0) == '#' && spec
.Length() == 7) { // It's #RRGGBB
2357 long red
, green
, blue
;
2358 red
= green
= blue
= 0;
2359 spec
.Mid(1,2).ToLong(&red
, 16);
2360 spec
.Mid(3,2).ToLong(&green
, 16);
2361 spec
.Mid(5,2).ToLong(&blue
, 16);
2363 **obj
= wxColour(red
, green
, blue
);
2366 else { // it's a colour name
2367 **obj
= wxColour(spec
);
2371 // last chance: 3-tuple of integers is expected
2372 else if (PySequence_Check(source
) && PyObject_Length(source
) == 3) {
2373 PyObject
* o1
= PySequence_GetItem(source
, 0);
2374 PyObject
* o2
= PySequence_GetItem(source
, 1);
2375 PyObject
* o3
= PySequence_GetItem(source
, 2);
2376 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
) || !PyNumber_Check(o3
)) {
2382 **obj
= wxColour(PyInt_AsLong(o1
), PyInt_AsLong(o2
), PyInt_AsLong(o3
));
2390 PyErr_SetString(PyExc_TypeError
,
2391 "Expected a wxColour object or a string containing a colour name or '#RRGGBB'.");
2397 bool wxPoint2DDouble_helper(PyObject
* source
, wxPoint2DDouble
** obj
) {
2398 // If source is an object instance then it may already be the right type
2399 if (PyInstance_Check(source
)) {
2400 wxPoint2DDouble
* ptr
;
2401 if (SWIG_GetPtrObj(source
, (void **)&ptr
, "_wxPoint2DDouble_p"))
2406 // otherwise a length-2 sequence of floats is expected
2407 if (PySequence_Check(source
) && PySequence_Length(source
) == 2) {
2408 PyObject
* o1
= PySequence_GetItem(source
, 0);
2409 PyObject
* o2
= PySequence_GetItem(source
, 1);
2410 // This should really check for integers, not numbers -- but that would break code.
2411 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
)) {
2416 **obj
= wxPoint2DDouble(PyFloat_AsDouble(o1
), PyFloat_AsDouble(o2
));
2422 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of floats or a wxPoint2DDouble object.");
2428 //----------------------------------------------------------------------
2430 PyObject
* wxArrayString2PyList_helper(const wxArrayString
& arr
) {
2432 PyObject
* list
= PyList_New(0);
2433 for (size_t i
=0; i
< arr
.GetCount(); i
++) {
2435 PyObject
* str
= PyUnicode_FromWideChar(arr
[i
].c_str(), arr
[i
].Len());
2437 PyObject
* str
= PyString_FromStringAndSize(arr
[i
].c_str(), arr
[i
].Len());
2439 PyList_Append(list
, str
);
2446 PyObject
* wxArrayInt2PyList_helper(const wxArrayInt
& arr
) {
2448 PyObject
* list
= PyList_New(0);
2449 for (size_t i
=0; i
< arr
.GetCount(); i
++) {
2450 PyObject
* number
= PyInt_FromLong(arr
[i
]);
2451 PyList_Append(list
, number
);
2458 //----------------------------------------------------------------------
2459 //----------------------------------------------------------------------