1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Helper functions/classes for the wxPython extension module
7 // Created: 1-July-1997
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
16 #include "wx/wxPython/wxPython_int.h"
17 #include "wx/wxPython/pyistream.h"
20 #include <wx/msw/private.h>
21 #include <wx/msw/winundef.h>
22 #include <wx/msw/msvcrt.h>
29 #include <gdk/gdkprivate.h>
30 #include <wx/gtk/win_gtk.h>
31 #define GetXWindow(wxwin) (wxwin)->m_wxwindow ? \
32 GDK_WINDOW_XWINDOW(GTK_PIZZA((wxwin)->m_wxwindow)->bin_window) : \
33 GDK_WINDOW_XWINDOW((wxwin)->m_widget->window)
38 #include "wx/x11/privx.h"
39 #define GetXWindow(wxwin) ((Window)(wxwin)->GetHandle())
43 #include <wx/mac/private.h>
46 #include <wx/clipbrd.h>
47 #include <wx/mimetype.h>
50 //----------------------------------------------------------------------
52 #if PYTHON_API_VERSION < 1009 && wxUSE_UNICODE
53 #error Python must support Unicode to use wxWindows Unicode
56 //----------------------------------------------------------------------
58 wxPyApp
* wxPythonApp
= NULL
; // Global instance of application object
59 bool wxPyDoCleanup
= false;
60 bool wxPyDoingCleanup
= false;
63 #ifdef WXP_WITH_THREAD
64 #if !wxPyUSE_GIL_STATE
65 struct wxPyThreadState
{
67 PyThreadState
* tstate
;
69 wxPyThreadState(unsigned long _tid
=0, PyThreadState
* _tstate
=NULL
)
70 : tid(_tid
), tstate(_tstate
) {}
73 #include <wx/dynarray.h>
74 WX_DECLARE_OBJARRAY(wxPyThreadState
, wxPyThreadStateArray
);
75 #include <wx/arrimpl.cpp>
76 WX_DEFINE_OBJARRAY(wxPyThreadStateArray
);
78 wxPyThreadStateArray
* wxPyTStates
= NULL
;
79 wxMutex
* wxPyTMutex
= NULL
;
85 #define DEFAULTENCODING_SIZE 64
86 static char wxPyDefaultEncoding
[DEFAULTENCODING_SIZE
] = "ascii";
88 static PyObject
* wxPython_dict
= NULL
;
89 static PyObject
* wxPyAssertionError
= NULL
;
90 static PyObject
* wxPyNoAppError
= NULL
;
92 PyObject
* wxPyPtrTypeMap
= NULL
;
95 #ifdef __WXMSW__ // If building for win32...
96 //----------------------------------------------------------------------
97 // This gets run when the DLL is loaded. We just need to save a handle.
98 //----------------------------------------------------------------------
101 HINSTANCE hinstDLL
, // handle to DLL module
102 DWORD fdwReason
, // reason for calling function
103 LPVOID lpvReserved
// reserved
106 // If wxPython is embedded in another wxWidgets app then
107 // the instance has already been set.
108 if (! wxGetInstance())
109 wxSetInstance(hinstDLL
);
114 //----------------------------------------------------------------------
115 // Classes for implementing the wxp main application shell.
116 //----------------------------------------------------------------------
118 IMPLEMENT_ABSTRACT_CLASS(wxPyApp
, wxApp
);
122 m_assertMode
= wxPYAPP_ASSERT_EXCEPTION
;
123 m_startupComplete
= false;
127 wxPyApp::~wxPyApp() {
131 // This one isn't acutally called... We fake it with _BootstrapApp
132 bool wxPyApp::OnInit() {
137 int wxPyApp::MainLoop() {
140 DeletePendingObjects();
141 bool initialized
= wxTopLevelWindows
.GetCount() != 0;
143 if ( m_exitOnFrameDelete
== Later
) {
144 m_exitOnFrameDelete
= Yes
;
147 retval
= wxApp::MainLoop();
154 bool wxPyApp::OnInitGui() {
156 wxApp::OnInitGui(); // in this case always call the base class version
157 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
158 if (wxPyCBH_findCallback(m_myInst
, "OnInitGui"))
159 rval
= wxPyCBH_callCallback(m_myInst
, Py_BuildValue("()"));
160 wxPyEndBlockThreads(blocked
);
165 int wxPyApp::OnExit() {
167 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
168 if (wxPyCBH_findCallback(m_myInst
, "OnExit"))
169 rval
= wxPyCBH_callCallback(m_myInst
, Py_BuildValue("()"));
170 wxPyEndBlockThreads(blocked
);
171 wxApp::OnExit(); // in this case always call the base class version
177 void wxPyApp::OnAssert(const wxChar
*file
,
182 // if we're not fully initialized then just log the error
183 if (! m_startupComplete
) {
186 buf
.Printf(wxT("%s(%d): assert \"%s\" failed"),
196 // If the OnAssert is overloaded in the Python class then call it...
198 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
199 if ((found
= wxPyCBH_findCallback(m_myInst
, "OnAssert"))) {
200 PyObject
* fso
= wx2PyString(file
);
201 PyObject
* cso
= wx2PyString(file
);
204 mso
= wx2PyString(file
);
206 mso
= Py_None
; Py_INCREF(Py_None
);
208 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OiOO)", fso
, line
, cso
, mso
));
213 wxPyEndBlockThreads(blocked
);
215 // ...otherwise do our own thing with it
218 if (m_assertMode
& wxPYAPP_ASSERT_SUPPRESS
)
221 // turn it into a Python exception?
222 if (m_assertMode
& wxPYAPP_ASSERT_EXCEPTION
) {
225 buf
.Printf(wxT("C++ assertion \"%s\" failed in %s(%d)"), cond
, file
, line
);
232 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
233 PyObject
* s
= wx2PyString(buf
);
234 PyErr_SetObject(wxPyAssertionError
, s
);
236 wxPyEndBlockThreads(blocked
);
238 // Now when control returns to whatever API wrapper was called from
239 // Python it should detect that an exception is set and will return
240 // NULL, signalling the exception to Python.
243 // Send it to the normal log destination, but only if
244 // not _DIALOG because it will call this too
245 if ( (m_assertMode
& wxPYAPP_ASSERT_LOG
) && !(m_assertMode
& wxPYAPP_ASSERT_DIALOG
)) {
248 buf
.Printf(wxT("%s(%d): assert \"%s\" failed"),
257 // do the normal wx assert dialog?
258 if (m_assertMode
& wxPYAPP_ASSERT_DIALOG
)
259 wxApp::OnAssert(file
, line
, cond
, msg
);
264 // For catching Apple Events
265 void wxPyApp::MacOpenFile(const wxString
&fileName
)
267 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
268 if (wxPyCBH_findCallback(m_myInst
, "MacOpenFile")) {
269 PyObject
* s
= wx2PyString(fileName
);
270 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(O)", s
));
273 wxPyEndBlockThreads(blocked
);
276 void wxPyApp::MacPrintFile(const wxString
&fileName
)
278 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
279 if (wxPyCBH_findCallback(m_myInst
, "MacPrintFile")) {
280 PyObject
* s
= wx2PyString(fileName
);
281 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(O)", s
));
284 wxPyEndBlockThreads(blocked
);
287 void wxPyApp::MacNewFile()
289 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
290 if (wxPyCBH_findCallback(m_myInst
, "MacNewFile"))
291 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("()"));
292 wxPyEndBlockThreads(blocked
);
295 void wxPyApp::MacReopenApp()
297 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
298 if (wxPyCBH_findCallback(m_myInst
, "MacReopenApp"))
299 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("()"));
300 wxPyEndBlockThreads(blocked
);
305 bool wxPyApp::GetMacSupportPCMenuShortcuts() {
307 return s_macSupportPCMenuShortcuts
;
314 long wxPyApp::GetMacAboutMenuItemId() {
316 return s_macAboutMenuItemId
;
323 long wxPyApp::GetMacPreferencesMenuItemId() {
325 return s_macPreferencesMenuItemId
;
332 long wxPyApp::GetMacExitMenuItemId() {
334 return s_macExitMenuItemId
;
341 wxString
wxPyApp::GetMacHelpMenuTitleName() {
343 return s_macHelpMenuTitleName
;
345 return wxEmptyString
;
350 void wxPyApp::SetMacSupportPCMenuShortcuts(bool val
) {
352 s_macSupportPCMenuShortcuts
= val
;
357 void wxPyApp::SetMacAboutMenuItemId(long val
) {
359 s_macAboutMenuItemId
= val
;
364 void wxPyApp::SetMacPreferencesMenuItemId(long val
) {
366 s_macPreferencesMenuItemId
= val
;
371 void wxPyApp::SetMacExitMenuItemId(long val
) {
373 s_macExitMenuItemId
= val
;
378 void wxPyApp::SetMacHelpMenuTitleName(const wxString
& val
) {
380 s_macHelpMenuTitleName
= val
;
385 // This finishes the initialization of wxWindows and then calls the OnInit
386 // that should be present in the derived (Python) class.
387 void wxPyApp::_BootstrapApp()
389 static bool haveInitialized
= false;
392 PyObject
* retval
= NULL
;
393 PyObject
* pyint
= NULL
;
396 // Only initialize wxWidgets once
397 if (! haveInitialized
) {
399 // Get any command-line args passed to this program from the sys module
402 blocked
= wxPyBeginBlockThreads();
403 PyObject
* sysargv
= PySys_GetObject("argv");
404 if (sysargv
!= NULL
) {
405 argc
= PyList_Size(sysargv
);
406 argv
= new char*[argc
+1];
408 for(x
=0; x
<argc
; x
++) {
409 PyObject
*pyArg
= PyList_GetItem(sysargv
, x
);
410 argv
[x
] = PyString_AsString(pyArg
);
414 wxPyEndBlockThreads(blocked
);
416 // Initialize wxWidgets
417 result
= wxEntryStart(argc
, argv
);
420 blocked
= wxPyBeginBlockThreads();
422 PyErr_SetString(PyExc_SystemError
,
423 "wxEntryStart failed, unable to initialize wxWidgets!"
425 " (Is DISPLAY set properly?)"
431 // On wxGTK the locale will be changed to match the system settings,
432 // but Python before 2.4 needs to have LC_NUMERIC set to "C" in order
433 // for the floating point conversions and such to work right.
434 #if defined(__WXGTK__) && PY_VERSION_HEX < 0x02040000
435 setlocale(LC_NUMERIC
, "C");
438 // The stock objects were all NULL when they were loaded into
439 // SWIG generated proxies, so re-init those now...
440 wxPy_ReinitStockObjects(3);
442 wxPyEndBlockThreads(blocked
);
443 haveInitialized
= true;
446 // It's now ok to generate exceptions for assertion errors.
447 wxPythonApp
->SetStartupComplete(true);
449 // Call the Python wxApp's OnInit function
450 blocked
= wxPyBeginBlockThreads();
451 if (wxPyCBH_findCallback(m_myInst
, "OnInit")) {
453 PyObject
* method
= m_myInst
.GetLastFound();
454 PyObject
* argTuple
= PyTuple_New(0);
455 retval
= PyEval_CallObject(method
, argTuple
);
461 pyint
= PyNumber_Int(retval
);
463 PyErr_SetString(PyExc_TypeError
, "OnInit should return a boolean value");
466 result
= PyInt_AS_LONG(pyint
);
469 // Is it okay if there is no OnInit? Probably so...
474 PyErr_SetString(PyExc_SystemExit
, "OnInit returned false, exiting...");
481 wxPyEndBlockThreads(blocked
);
484 //---------------------------------------------------------------------
485 //----------------------------------------------------------------------
489 static char* wxPyCopyCString(const wxChar
* src
)
491 wxWX2MBbuf buff
= (wxWX2MBbuf
)wxConvCurrent
->cWX2MB(src
);
492 size_t len
= strlen(buff
);
493 char* dest
= new char[len
+1];
499 static char* wxPyCopyCString(const char* src
) // we need a char version too
501 size_t len
= strlen(src
);
502 char* dest
= new char[len
+1];
508 static wxChar
* wxPyCopyWString(const char *src
)
510 //wxMB2WXbuf buff = wxConvCurrent->cMB2WX(src);
511 wxString
str(src
, *wxConvCurrent
);
512 return copystring(str
);
516 static wxChar
* wxPyCopyWString(const wxChar
*src
)
518 return copystring(src
);
524 inline const char* dropwx(const char* name
) {
525 if (name
[0] == 'w' && name
[1] == 'x')
531 //----------------------------------------------------------------------
533 // This function is called when the wx._core_ module is imported to do some
534 // initial setup. (Before there is a wxApp object.) The rest happens in
535 // wxPyApp::_BootstrapApp
536 void __wxPyPreStart(PyObject
* moduleDict
)
540 // wxCrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF
541 // | _CRTDBG_CHECK_ALWAYS_DF
542 // | _CRTDBG_DELAY_FREE_MEM_DF
546 #ifdef WXP_WITH_THREAD
547 PyEval_InitThreads();
548 #if !wxPyUSE_GIL_STATE
549 wxPyTStates
= new wxPyThreadStateArray
;
550 wxPyTMutex
= new wxMutex
;
552 // Save the current (main) thread state in our array
553 PyThreadState
* tstate
= wxPyBeginAllowThreads();
554 wxPyEndAllowThreads(tstate
);
558 // Ensure that the build options in the DLL (or whatever) match this build
559 wxApp::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE
, "wxPython");
561 // Init the stock objects to a non-NULL value so SWIG doesn't create them as None
562 wxPy_ReinitStockObjects(1);
564 wxInitAllImageHandlers();
569 void __wxPyCleanup() {
570 wxPyDoingCleanup
= true;
572 wxPyDoCleanup
= false;
575 #ifdef WXP_WITH_THREAD
576 #if !wxPyUSE_GIL_STATE
579 wxPyTStates
->Empty();
587 // Save a reference to the dictionary of the wx._core module, and inject
588 // a few more things into it.
589 PyObject
* __wxPySetDictionary(PyObject
* /* self */, PyObject
* args
)
592 if (!PyArg_ParseTuple(args
, "O", &wxPython_dict
))
595 if (!PyDict_Check(wxPython_dict
)) {
596 PyErr_SetString(PyExc_TypeError
,
597 "_wxPySetDictionary must have dictionary object!");
601 if (! wxPyPtrTypeMap
)
602 wxPyPtrTypeMap
= PyDict_New();
603 PyDict_SetItemString(wxPython_dict
, "__wxPyPtrTypeMap", wxPyPtrTypeMap
);
605 // Create an exception object to use for wxASSERTions
606 wxPyAssertionError
= PyErr_NewException("wx._core.PyAssertionError",
607 PyExc_AssertionError
, NULL
);
608 PyDict_SetItemString(wxPython_dict
, "PyAssertionError", wxPyAssertionError
);
610 // Create an exception object to use when the app object hasn't been created yet
611 wxPyNoAppError
= PyErr_NewException("wx._core.PyNoAppError",
612 PyExc_RuntimeError
, NULL
);
613 PyDict_SetItemString(wxPython_dict
, "PyNoAppError", wxPyNoAppError
);
618 #define wxPlatform "__WXMOTIF__"
619 #define wxPlatName "wxMotif"
622 #define wxPlatform "__WXX11__"
623 #define wxPlatName "wxX11"
626 #define wxPlatform "__WXGTK__"
627 #define wxPlatName "wxGTK"
630 #define wxPlatform "__WXMSW__"
631 #define wxPlatName "wxMSW"
634 #define wxPlatform "__WXMAC__"
635 #define wxPlatName "wxMac"
644 // These should be deprecated in favor of the PlatformInfo tuple built below...
645 PyDict_SetItemString(wxPython_dict
, "Platform", PyString_FromString(wxPlatform
));
646 PyDict_SetItemString(wxPython_dict
, "USE_UNICODE", PyInt_FromLong(wxUSE_UNICODE
));
647 PyDict_SetItemString(wxPython_dict
, "__WXDEBUG__", PyInt_FromLong(wxdebug
));
649 // Make a tuple of strings that gives more info about the platform.
650 PyObject
* PlatInfo
= PyList_New(0);
653 #define _AddInfoString(st) \
654 obj = PyString_FromString(st); \
655 PyList_Append(PlatInfo, obj); \
658 _AddInfoString(wxPlatform
);
659 _AddInfoString(wxPlatName
);
661 _AddInfoString("unicode");
663 _AddInfoString("ansi");
667 _AddInfoString("gtk2");
669 _AddInfoString("gtk1");
673 _AddInfoString("wx-assertions-on");
675 _AddInfoString("wx-assertions-off");
678 #undef _AddInfoString
680 PyObject
* PlatInfoTuple
= PyList_AsTuple(PlatInfo
);
682 PyDict_SetItemString(wxPython_dict
, "PlatformInfo", PlatInfoTuple
);
688 //---------------------------------------------------------------------------
690 // Python's PyInstance_Check does not return True for instances of new-style
691 // classes. This should get close enough for both new and old classes but I
692 // should re-evaluate the need for doing instance checks...
693 bool wxPyInstance_Check(PyObject
* obj
) {
694 return PyObject_HasAttrString(obj
, "__class__") != 0;
698 // This one checks if the object is an instance of a SWIG proxy class (it has
699 // a .this attribute)
700 bool wxPySwigInstance_Check(PyObject
* obj
) {
701 return PyObject_HasAttrString(obj
, "this") != 0;
704 //---------------------------------------------------------------------------
706 // The stock objects are no longer created when the wx._core_ module is
707 // imported, but only after the app object has been created. The
708 // wxPy_ReinitStockObjects function will be called 3 times to pass the stock
709 // objects though various stages of evolution:
711 // pass 1: Set all the pointers to a non-NULL value so the Python proxy
712 // object will be created (otherwise SWIG will just use None.)
714 // pass 2: After the module has been imported and the python proxys have
715 // been created, then set the __class__ to be _wxPyUnbornObject so
716 // it will catch any access to the object and will raise an exception.
718 // pass 3: Finally, from BootstrapApp patch things up so the stock objects
722 PyObject
* __wxPyFixStockObjects(PyObject
* /* self */, PyObject
* args
)
724 wxPy_ReinitStockObjects(2);
729 static void rsoPass2(const char* name
)
731 static PyObject
* unbornObjectClass
= NULL
;
734 if (unbornObjectClass
== NULL
) {
735 unbornObjectClass
= PyDict_GetItemString(wxPython_dict
, "_wxPyUnbornObject");
736 Py_INCREF(unbornObjectClass
);
739 // Find the object instance
740 obj
= PyDict_GetItemString(wxPython_dict
, (char*)dropwx(name
));
741 wxCHECK_RET(obj
!= NULL
, wxT("Unable to find stock object"));
742 wxCHECK_RET(wxPySwigInstance_Check(obj
), wxT("Not a swig instance"));
745 PyObject_SetAttrString(obj
, "__class__", unbornObjectClass
);
749 static void rsoPass3(const char* name
, const char* classname
, void* ptr
)
755 // Find the object instance
756 obj
= PyDict_GetItemString(wxPython_dict
, (char*)dropwx(name
));
757 wxCHECK_RET(obj
!= NULL
, wxT("Unable to find stock object"));
758 wxCHECK_RET(wxPySwigInstance_Check(obj
), wxT("Not a swig instance"));
760 // Find the class object and put it back in the instance
761 classobj
= PyDict_GetItemString(wxPython_dict
, (char*)dropwx(classname
));
762 wxCHECK_RET(classobj
!= NULL
, wxT("Unable to find stock class object"));
763 PyObject_SetAttrString(obj
, "__class__", classobj
);
765 // Rebuild the .this swigified pointer with the new value of the C++ pointer
766 ptrobj
= wxPyMakeSwigPtr(ptr
, wxString(classname
, *wxConvCurrent
));
767 PyObject_SetAttrString(obj
, "this", ptrobj
);
773 void wxPy_ReinitStockObjects(int pass
)
776 // If there is already an App object then wxPython is probably embedded in
777 // a wx C++ application, so there is no need to do all this.
778 static bool embedded
= false;
779 if ((pass
== 1 || pass
== 2) && wxTheApp
) {
783 if (pass
== 3 && embedded
)
787 #define REINITOBJ(name, classname) \
788 if (pass == 1) { name = (classname*)0xC0C0C0C0; } \
789 else if (pass == 2) { rsoPass2(#name); } \
790 else if (pass == 3) { rsoPass3(#name, #classname, (void*)name); }
793 #define REINITOBJ2(name, classname) \
795 else if (pass == 2) { rsoPass2(#name); } \
796 else if (pass == 3) { rsoPass3(#name, #classname, (void*)&name); }
799 REINITOBJ(wxNORMAL_FONT
, wxFont
);
800 REINITOBJ(wxSMALL_FONT
, wxFont
);
801 REINITOBJ(wxITALIC_FONT
, wxFont
);
802 REINITOBJ(wxSWISS_FONT
, wxFont
);
804 REINITOBJ(wxRED_PEN
, wxPen
);
805 REINITOBJ(wxCYAN_PEN
, wxPen
);
806 REINITOBJ(wxGREEN_PEN
, wxPen
);
807 REINITOBJ(wxBLACK_PEN
, wxPen
);
808 REINITOBJ(wxWHITE_PEN
, wxPen
);
809 REINITOBJ(wxTRANSPARENT_PEN
, wxPen
);
810 REINITOBJ(wxBLACK_DASHED_PEN
, wxPen
);
811 REINITOBJ(wxGREY_PEN
, wxPen
);
812 REINITOBJ(wxMEDIUM_GREY_PEN
, wxPen
);
813 REINITOBJ(wxLIGHT_GREY_PEN
, wxPen
);
815 REINITOBJ(wxBLUE_BRUSH
, wxBrush
);
816 REINITOBJ(wxGREEN_BRUSH
, wxBrush
);
817 REINITOBJ(wxWHITE_BRUSH
, wxBrush
);
818 REINITOBJ(wxBLACK_BRUSH
, wxBrush
);
819 REINITOBJ(wxTRANSPARENT_BRUSH
, wxBrush
);
820 REINITOBJ(wxCYAN_BRUSH
, wxBrush
);
821 REINITOBJ(wxRED_BRUSH
, wxBrush
);
822 REINITOBJ(wxGREY_BRUSH
, wxBrush
);
823 REINITOBJ(wxMEDIUM_GREY_BRUSH
, wxBrush
);
824 REINITOBJ(wxLIGHT_GREY_BRUSH
, wxBrush
);
826 REINITOBJ(wxBLACK
, wxColour
);
827 REINITOBJ(wxWHITE
, wxColour
);
828 REINITOBJ(wxRED
, wxColour
);
829 REINITOBJ(wxBLUE
, wxColour
);
830 REINITOBJ(wxGREEN
, wxColour
);
831 REINITOBJ(wxCYAN
, wxColour
);
832 REINITOBJ(wxLIGHT_GREY
, wxColour
);
834 REINITOBJ(wxSTANDARD_CURSOR
, wxCursor
);
835 REINITOBJ(wxHOURGLASS_CURSOR
, wxCursor
);
836 REINITOBJ(wxCROSS_CURSOR
, wxCursor
);
838 REINITOBJ2(wxNullBitmap
, wxBitmap
);
839 REINITOBJ2(wxNullIcon
, wxIcon
);
840 REINITOBJ2(wxNullCursor
, wxCursor
);
841 REINITOBJ2(wxNullPen
, wxPen
);
842 REINITOBJ2(wxNullBrush
, wxBrush
);
843 REINITOBJ2(wxNullPalette
, wxPalette
);
844 REINITOBJ2(wxNullFont
, wxFont
);
845 REINITOBJ2(wxNullColour
, wxColour
);
847 REINITOBJ(wxTheFontList
, wxFontList
);
848 REINITOBJ(wxThePenList
, wxPenList
);
849 REINITOBJ(wxTheBrushList
, wxBrushList
);
850 REINITOBJ(wxTheColourDatabase
, wxColourDatabase
);
853 REINITOBJ2(wxDefaultValidator
, wxValidator
);
854 REINITOBJ2(wxNullImage
, wxImage
);
855 REINITOBJ2(wxNullAcceleratorTable
, wxAcceleratorTable
);
861 //---------------------------------------------------------------------------
863 // Check for existence of a wxApp, setting an exception if there isn't one.
864 // This doesn't need to aquire the GIL because it should only be called from
865 // an %exception before the lock is released.
867 bool wxPyCheckForApp() {
868 if (wxTheApp
!= NULL
)
871 PyErr_SetString(wxPyNoAppError
, "The wx.App object must be created first!");
876 //---------------------------------------------------------------------------
878 void wxPyUserData_dtor(wxPyUserData
* self
) {
879 if (! wxPyDoingCleanup
) {
880 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
881 Py_DECREF(self
->m_obj
);
883 wxPyEndBlockThreads(blocked
);
888 void wxPyClientData_dtor(wxPyClientData
* self
) {
889 if (! wxPyDoingCleanup
) { // Don't do it during cleanup as Python
890 // may have already garbage collected the object...
891 if (self
->m_incRef
) {
892 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
893 Py_DECREF(self
->m_obj
);
894 wxPyEndBlockThreads(blocked
);
902 // This is called when an OOR controled object is being destroyed. Although
903 // the C++ object is going away there is no way to force the Python object
904 // (and all references to it) to die too. This causes problems (crashes) in
905 // wxPython when a python shadow object attempts to call a C++ method using
906 // the now bogus pointer... So to try and prevent this we'll do a little black
907 // magic and change the class of the python instance to a class that will
908 // raise an exception for any attempt to call methods with it. See
909 // _wxPyDeadObject in _core_ex.py for the implementation of this class.
910 void wxPyOORClientData_dtor(wxPyOORClientData
* self
) {
912 static PyObject
* deadObjectClass
= NULL
;
914 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
915 if (deadObjectClass
== NULL
) {
916 deadObjectClass
= PyDict_GetItemString(wxPython_dict
, "_wxPyDeadObject");
917 // TODO: Can not wxASSERT here because inside a wxPyBeginBlock Threads,
918 // will lead to a deadlock when it tries to aquire the GIL again.
919 //wxASSERT_MSG(deadObjectClass != NULL, wxT("Can't get _wxPyDeadObject class!"));
920 Py_INCREF(deadObjectClass
);
924 // Only if there is more than one reference to the object and we are
925 // holding the OOR reference:
926 if ( !wxPyDoingCleanup
&& self
->m_obj
->ob_refcnt
> 1 && self
->m_incRef
) {
927 // bool isInstance = wxPyInstance_Check(self->m_obj);
929 //wxASSERT_MSG(isInstance, wxT("m_obj not an instance!?!?!"));
931 // Call __del__, if there is one.
932 PyObject
* func
= PyObject_GetAttrString(self
->m_obj
, "__del__");
934 PyObject
* rv
= PyObject_CallMethod(self
->m_obj
, "__del__", NULL
);
938 if (PyErr_Occurred())
939 PyErr_Clear(); // just ignore it for now
942 PyObject
* dict
= PyObject_GetAttrString(self
->m_obj
, "__dict__");
944 // Clear the instance's dictionary
947 // put the name of the old class into the instance, and then reset the
948 // class to be the dead class.
949 PyObject
* klass
= PyObject_GetAttrString(self
->m_obj
, "__class__");
950 PyObject
* name
= PyObject_GetAttrString(klass
, "__name__");
951 PyDict_SetItemString(dict
, "_name", name
);
952 PyObject_SetAttrString(self
->m_obj
, "__class__", deadObjectClass
);
953 //Py_INCREF(deadObjectClass);
959 // m_obj is DECREF'd in the base class dtor...
960 wxPyEndBlockThreads(blocked
);
964 //---------------------------------------------------------------------------
965 // Stuff used by OOR to find the right wxPython class type to return and to
969 // The pointer type map is used when the "pointer" type name generated by SWIG
970 // is not the same as the shadow class name, for example wxPyTreeCtrl
971 // vs. wxTreeCtrl. It needs to be referenced in Python as well as from C++,
972 // so we'll just make it a Python dictionary in the wx module's namespace.
973 // (See __wxSetDictionary)
974 void wxPyPtrTypeMap_Add(const char* commonName
, const char* ptrName
) {
975 if (! wxPyPtrTypeMap
)
976 wxPyPtrTypeMap
= PyDict_New();
977 PyDict_SetItemString(wxPyPtrTypeMap
,
979 PyString_FromString((char*)ptrName
));
985 PyObject
* wxPyMake_wxObject(wxObject
* source
, bool setThisOwn
, bool checkEvtHandler
) {
986 PyObject
* target
= NULL
;
987 bool isEvtHandler
= false;
990 // If it's derived from wxEvtHandler then there may
991 // already be a pointer to a Python object that we can use
993 if (checkEvtHandler
&& wxIsKindOf(source
, wxEvtHandler
)) {
995 wxEvtHandler
* eh
= (wxEvtHandler
*)source
;
996 wxPyOORClientData
* data
= (wxPyOORClientData
*)eh
->GetClientObject();
998 target
= data
->m_obj
;
1005 // Otherwise make it the old fashioned way by making a new shadow
1006 // object and putting this pointer in it. Look up the class
1007 // heirarchy until we find a class name that is located in the
1009 const wxClassInfo
* info
= source
->GetClassInfo();
1010 wxString name
= info
->GetClassName();
1011 bool exists
= wxPyCheckSwigType(name
);
1012 while (info
&& !exists
) {
1013 info
= info
->GetBaseClass1();
1014 name
= info
->GetClassName();
1015 exists
= wxPyCheckSwigType(name
);
1018 target
= wxPyConstructObject((void*)source
, name
, setThisOwn
);
1019 if (target
&& isEvtHandler
)
1020 ((wxEvtHandler
*)source
)->SetClientObject(new wxPyOORClientData(target
));
1022 wxString
msg(wxT("wxPython class not found for "));
1023 msg
+= source
->GetClassInfo()->GetClassName();
1024 PyErr_SetString(PyExc_NameError
, msg
.mbc_str());
1028 } else { // source was NULL so return None.
1029 Py_INCREF(Py_None
); target
= Py_None
;
1035 PyObject
* wxPyMake_wxSizer(wxSizer
* source
, bool setThisOwn
) {
1036 PyObject
* target
= NULL
;
1038 if (source
&& wxIsKindOf(source
, wxSizer
)) {
1039 // If it's derived from wxSizer then there may already be a pointer to
1040 // a Python object that we can use in the OOR data.
1041 wxSizer
* sz
= (wxSizer
*)source
;
1042 wxPyOORClientData
* data
= (wxPyOORClientData
*)sz
->GetClientObject();
1044 target
= data
->m_obj
;
1050 target
= wxPyMake_wxObject(source
, setThisOwn
, false);
1051 if (target
!= Py_None
)
1052 ((wxSizer
*)source
)->SetClientObject(new wxPyOORClientData(target
));
1058 //---------------------------------------------------------------------------
1061 #ifdef WXP_WITH_THREAD
1062 #if !wxPyUSE_GIL_STATE
1065 unsigned long wxPyGetCurrentThreadId() {
1066 return wxThread::GetCurrentId();
1069 static wxPyThreadState gs_shutdownTState
;
1072 wxPyThreadState
* wxPyGetThreadState() {
1073 if (wxPyTMutex
== NULL
) // Python is shutting down...
1074 return &gs_shutdownTState
;
1076 unsigned long ctid
= wxPyGetCurrentThreadId();
1077 wxPyThreadState
* tstate
= NULL
;
1080 for(size_t i
=0; i
< wxPyTStates
->GetCount(); i
++) {
1081 wxPyThreadState
& info
= wxPyTStates
->Item(i
);
1082 if (info
.tid
== ctid
) {
1087 wxPyTMutex
->Unlock();
1088 wxASSERT_MSG(tstate
, wxT("PyThreadState should not be NULL!"));
1094 void wxPySaveThreadState(PyThreadState
* tstate
) {
1095 if (wxPyTMutex
== NULL
) { // Python is shutting down, assume a single thread...
1096 gs_shutdownTState
.tstate
= tstate
;
1099 unsigned long ctid
= wxPyGetCurrentThreadId();
1101 for(size_t i
=0; i
< wxPyTStates
->GetCount(); i
++) {
1102 wxPyThreadState
& info
= wxPyTStates
->Item(i
);
1103 if (info
.tid
== ctid
) {
1105 if (info
.tstate
!= tstate
)
1106 wxLogMessage("*** tstate mismatch!???");
1108 info
.tstate
= tstate
; // allow for transient tstates
1109 // Normally it will never change, but apparently COM callbacks
1110 // (i.e. ActiveX controls) will (incorrectly IMHO) use a transient
1111 // tstate which will then be garbage the next time we try to use
1114 wxPyTMutex
->Unlock();
1118 // not found, so add it...
1119 wxPyTStates
->Add(new wxPyThreadState(ctid
, tstate
));
1120 wxPyTMutex
->Unlock();
1128 // Calls from Python to wxWindows code are wrapped in calls to these
1131 PyThreadState
* wxPyBeginAllowThreads() {
1132 #ifdef WXP_WITH_THREAD
1133 PyThreadState
* saved
= PyEval_SaveThread(); // Py_BEGIN_ALLOW_THREADS;
1134 #if !wxPyUSE_GIL_STATE
1135 wxPySaveThreadState(saved
);
1143 void wxPyEndAllowThreads(PyThreadState
* saved
) {
1144 #ifdef WXP_WITH_THREAD
1145 PyEval_RestoreThread(saved
); // Py_END_ALLOW_THREADS;
1151 // Calls from wxWindows back to Python code, or even any PyObject
1152 // manipulations, PyDECREF's and etc. are wrapped in calls to these functions:
1154 wxPyBlock_t
wxPyBeginBlockThreads() {
1155 #ifdef WXP_WITH_THREAD
1156 #if wxPyUSE_GIL_STATE
1157 PyGILState_STATE state
= PyGILState_Ensure();
1160 PyThreadState
*current
= _PyThreadState_Current
;
1162 // Only block if there wasn't already a tstate, or if the current one is
1163 // not the one we are wanting to change to. This should prevent deadlock
1164 // if there are nested calls to wxPyBeginBlockThreads
1165 wxPyBlock_t blocked
= false;
1166 wxPyThreadState
* tstate
= wxPyGetThreadState();
1167 if (current
!= tstate
->tstate
) {
1168 PyEval_RestoreThread(tstate
->tstate
);
1179 void wxPyEndBlockThreads(wxPyBlock_t blocked
) {
1180 #ifdef WXP_WITH_THREAD
1181 #if wxPyUSE_GIL_STATE
1182 PyGILState_Release(blocked
);
1184 // Only unblock if we blocked in the last call to wxPyBeginBlockThreads.
1185 // The value of blocked passed in needs to be the same as that returned
1186 // from wxPyBeginBlockThreads at the same nesting level.
1188 PyEval_SaveThread();
1195 //---------------------------------------------------------------------------
1196 // wxPyInputStream and wxPyCBInputStream methods
1199 void wxPyInputStream::close() {
1200 /* do nothing for now */
1203 void wxPyInputStream::flush() {
1204 /* do nothing for now */
1207 bool wxPyInputStream::eof() {
1209 return m_wxis
->Eof();
1214 wxPyInputStream::~wxPyInputStream() {
1222 PyObject
* wxPyInputStream::read(int size
) {
1223 PyObject
* obj
= NULL
;
1225 const int BUFSIZE
= 1024;
1227 // check if we have a real wxInputStream to work with
1229 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1230 PyErr_SetString(PyExc_IOError
, "no valid C-wxInputStream");
1231 wxPyEndBlockThreads(blocked
);
1236 // read while bytes are available on the stream
1237 while ( m_wxis
->CanRead() ) {
1238 m_wxis
->Read(buf
.GetAppendBuf(BUFSIZE
), BUFSIZE
);
1239 buf
.UngetAppendBuf(m_wxis
->LastRead());
1242 } else { // Read only size number of characters
1243 m_wxis
->Read(buf
.GetWriteBuf(size
), size
);
1244 buf
.UngetWriteBuf(m_wxis
->LastRead());
1248 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1249 wxStreamError err
= m_wxis
->GetLastError();
1250 if (err
!= wxSTREAM_NO_ERROR
&& err
!= wxSTREAM_EOF
) {
1251 PyErr_SetString(PyExc_IOError
,"IOError in wxInputStream");
1254 // We use only strings for the streams, not unicode
1255 obj
= PyString_FromStringAndSize(buf
, buf
.GetDataLen());
1257 wxPyEndBlockThreads(blocked
);
1262 PyObject
* wxPyInputStream::readline(int size
) {
1263 PyObject
* obj
= NULL
;
1268 // check if we have a real wxInputStream to work with
1270 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1271 PyErr_SetString(PyExc_IOError
,"no valid C-wxInputStream");
1272 wxPyEndBlockThreads(blocked
);
1276 // read until \n or byte limit reached
1277 for (i
=ch
=0; (ch
!= '\n') && (m_wxis
->CanRead()) && ((size
< 0) || (i
< size
)); i
++) {
1278 ch
= m_wxis
->GetC();
1283 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1284 wxStreamError err
= m_wxis
->GetLastError();
1285 if (err
!= wxSTREAM_NO_ERROR
&& err
!= wxSTREAM_EOF
) {
1286 PyErr_SetString(PyExc_IOError
,"IOError in wxInputStream");
1289 // We use only strings for the streams, not unicode
1290 obj
= PyString_FromStringAndSize((char*)buf
.GetData(), buf
.GetDataLen());
1292 wxPyEndBlockThreads(blocked
);
1297 PyObject
* wxPyInputStream::readlines(int sizehint
) {
1300 // check if we have a real wxInputStream to work with
1302 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1303 PyErr_SetString(PyExc_IOError
,"no valid C-wxInputStream");
1304 wxPyEndBlockThreads(blocked
);
1309 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1310 pylist
= PyList_New(0);
1311 wxPyEndBlockThreads(blocked
);
1314 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1316 wxPyEndBlockThreads(blocked
);
1320 // read sizehint bytes or until EOF
1322 for (i
=0; (m_wxis
->CanRead()) && ((sizehint
< 0) || (i
< sizehint
));) {
1323 PyObject
* s
= this->readline();
1325 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1327 wxPyEndBlockThreads(blocked
);
1330 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1331 PyList_Append(pylist
, s
);
1332 i
+= PyString_Size(s
);
1333 wxPyEndBlockThreads(blocked
);
1337 wxStreamError err
= m_wxis
->GetLastError();
1338 if (err
!= wxSTREAM_NO_ERROR
&& err
!= wxSTREAM_EOF
) {
1339 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1341 PyErr_SetString(PyExc_IOError
,"IOError in wxInputStream");
1342 wxPyEndBlockThreads(blocked
);
1350 void wxPyInputStream::seek(int offset
, int whence
) {
1352 m_wxis
->SeekI(offset
, wxSeekMode(whence
));
1355 int wxPyInputStream::tell(){
1357 return m_wxis
->TellI();
1364 wxPyCBInputStream::wxPyCBInputStream(PyObject
*r
, PyObject
*s
, PyObject
*t
, bool block
)
1365 : wxInputStream(), m_read(r
), m_seek(s
), m_tell(t
), m_block(block
)
1368 wxPyCBInputStream::wxPyCBInputStream(const wxPyCBInputStream
& other
)
1370 m_read
= other
.m_read
;
1371 m_seek
= other
.m_seek
;
1372 m_tell
= other
.m_tell
;
1373 m_block
= other
.m_block
;
1380 wxPyCBInputStream::~wxPyCBInputStream() {
1381 wxPyBlock_t blocked
;
1382 if (m_block
) blocked
= wxPyBeginBlockThreads();
1386 if (m_block
) wxPyEndBlockThreads(blocked
);
1390 wxPyCBInputStream
* wxPyCBInputStream::create(PyObject
*py
, bool block
) {
1391 wxPyBlock_t blocked
;
1392 if (block
) blocked
= wxPyBeginBlockThreads();
1394 PyObject
* read
= getMethod(py
, "read");
1395 PyObject
* seek
= getMethod(py
, "seek");
1396 PyObject
* tell
= getMethod(py
, "tell");
1399 PyErr_SetString(PyExc_TypeError
, "Not a file-like object");
1403 if (block
) wxPyEndBlockThreads(blocked
);
1407 if (block
) wxPyEndBlockThreads(blocked
);
1408 return new wxPyCBInputStream(read
, seek
, tell
, block
);
1412 wxPyCBInputStream
* wxPyCBInputStream_create(PyObject
*py
, bool block
) {
1413 return wxPyCBInputStream::create(py
, block
);
1416 wxPyCBInputStream
* wxPyCBInputStream_copy(wxPyCBInputStream
* other
) {
1417 return new wxPyCBInputStream(*other
);
1420 PyObject
* wxPyCBInputStream::getMethod(PyObject
* py
, char* name
) {
1421 if (!PyObject_HasAttrString(py
, name
))
1423 PyObject
* o
= PyObject_GetAttrString(py
, name
);
1424 if (!PyMethod_Check(o
) && !PyCFunction_Check(o
)) {
1432 wxFileOffset
wxPyCBInputStream::GetLength() const {
1433 wxPyCBInputStream
* self
= (wxPyCBInputStream
*)this; // cast off const
1434 if (m_seek
&& m_tell
) {
1435 wxFileOffset temp
= self
->OnSysTell();
1436 wxFileOffset ret
= self
->OnSysSeek(0, wxFromEnd
);
1437 self
->OnSysSeek(temp
, wxFromStart
);
1441 return wxInvalidOffset
;
1445 size_t wxPyCBInputStream::OnSysRead(void *buffer
, size_t bufsize
) {
1449 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1450 PyObject
* arglist
= Py_BuildValue("(i)", bufsize
);
1451 PyObject
* result
= PyEval_CallObject(m_read
, arglist
);
1455 if ((result
!= NULL
) && PyString_Check(result
)) {
1456 o
= PyString_Size(result
);
1458 m_lasterror
= wxSTREAM_EOF
;
1461 memcpy((char*)buffer
, PyString_AsString(result
), o
); // strings only, not unicode...
1466 m_lasterror
= wxSTREAM_READ_ERROR
;
1467 wxPyEndBlockThreads(blocked
);
1471 size_t wxPyCBInputStream::OnSysWrite(const void *buffer
, size_t bufsize
) {
1472 m_lasterror
= wxSTREAM_WRITE_ERROR
;
1477 wxFileOffset
wxPyCBInputStream::OnSysSeek(wxFileOffset off
, wxSeekMode mode
) {
1478 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1479 PyObject
* arglist
= PyTuple_New(2);
1481 if (sizeof(wxFileOffset
) > sizeof(long))
1482 // wxFileOffset is a 64-bit value...
1483 PyTuple_SET_ITEM(arglist
, 0, PyLong_FromLongLong(off
));
1485 PyTuple_SET_ITEM(arglist
, 0, PyInt_FromLong(off
));
1487 PyTuple_SET_ITEM(arglist
, 1, PyInt_FromLong(mode
));
1490 PyObject
* result
= PyEval_CallObject(m_seek
, arglist
);
1493 wxPyEndBlockThreads(blocked
);
1498 wxFileOffset
wxPyCBInputStream::OnSysTell() const {
1499 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1500 PyObject
* arglist
= Py_BuildValue("()");
1501 PyObject
* result
= PyEval_CallObject(m_tell
, arglist
);
1504 if (result
!= NULL
) {
1505 if (PyLong_Check(result
))
1506 o
= PyLong_AsLongLong(result
);
1508 o
= PyInt_AsLong(result
);
1511 wxPyEndBlockThreads(blocked
);
1515 //----------------------------------------------------------------------
1517 IMPLEMENT_ABSTRACT_CLASS(wxPyCallback
, wxObject
);
1519 wxPyCallback::wxPyCallback(PyObject
* func
) {
1524 wxPyCallback::wxPyCallback(const wxPyCallback
& other
) {
1525 m_func
= other
.m_func
;
1529 wxPyCallback::~wxPyCallback() {
1530 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1532 wxPyEndBlockThreads(blocked
);
1536 #define wxPy_PRECALLINIT "_preCallInit"
1537 #define wxPy_POSTCALLCLEANUP "_postCallCleanup"
1539 // This function is used for all events destined for Python event handlers.
1540 void wxPyCallback::EventThunker(wxEvent
& event
) {
1541 wxPyCallback
* cb
= (wxPyCallback
*)event
.m_callbackUserData
;
1542 PyObject
* func
= cb
->m_func
;
1546 bool checkSkip
= false;
1548 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1549 wxString className
= event
.GetClassInfo()->GetClassName();
1551 // If the event is one of these types then pass the original
1552 // event object instead of the one passed to us.
1553 if ( className
== wxT("wxPyEvent") ) {
1554 arg
= ((wxPyEvent
*)&event
)->GetSelf();
1555 checkSkip
= ((wxPyEvent
*)&event
)->GetCloned();
1557 else if ( className
== wxT("wxPyCommandEvent") ) {
1558 arg
= ((wxPyCommandEvent
*)&event
)->GetSelf();
1559 checkSkip
= ((wxPyCommandEvent
*)&event
)->GetCloned();
1562 arg
= wxPyConstructObject((void*)&event
, className
);
1568 // "intern" the pre/post method names to speed up the HasAttr
1569 static PyObject
* s_preName
= NULL
;
1570 static PyObject
* s_postName
= NULL
;
1571 if (s_preName
== NULL
) {
1572 s_preName
= PyString_FromString(wxPy_PRECALLINIT
);
1573 s_postName
= PyString_FromString(wxPy_POSTCALLCLEANUP
);
1576 // Check if the event object needs some preinitialization
1577 if (PyObject_HasAttr(arg
, s_preName
)) {
1578 result
= PyObject_CallMethodObjArgs(arg
, s_preName
, arg
, NULL
);
1580 Py_DECREF(result
); // result is ignored, but we still need to decref it
1581 PyErr_Clear(); // Just in case...
1587 // Call the event handler, passing the event object
1588 tuple
= PyTuple_New(1);
1589 PyTuple_SET_ITEM(tuple
, 0, arg
); // steals ref to arg
1590 result
= PyEval_CallObject(func
, tuple
);
1592 Py_DECREF(result
); // result is ignored, but we still need to decref it
1593 PyErr_Clear(); // Just in case...
1598 // Check if the event object needs some post cleanup
1599 if (PyObject_HasAttr(arg
, s_postName
)) {
1600 result
= PyObject_CallMethodObjArgs(arg
, s_postName
, arg
, NULL
);
1602 Py_DECREF(result
); // result is ignored, but we still need to decref it
1603 PyErr_Clear(); // Just in case...
1610 // if the event object was one of our special types and
1611 // it had been cloned, then we need to extract the Skipped
1612 // value from the original and set it in the clone.
1613 result
= PyObject_CallMethod(arg
, "GetSkipped", "");
1615 event
.Skip(PyInt_AsLong(result
));
1623 wxPyEndBlockThreads(blocked
);
1627 //----------------------------------------------------------------------
1629 wxPyCallbackHelper::wxPyCallbackHelper(const wxPyCallbackHelper
& other
) {
1631 m_self
= other
.m_self
;
1632 m_class
= other
.m_class
;
1640 void wxPyCallbackHelper::setSelf(PyObject
* self
, PyObject
* klass
, int incref
) {
1651 #if PYTHON_API_VERSION >= 1011
1653 // Prior to Python 2.2 PyMethod_GetClass returned the class object
1654 // in which the method was defined. Starting with 2.2 it returns
1655 // "class that asked for the method" which seems totally bogus to me
1656 // but apprently it fixes some obscure problem waiting to happen in
1657 // Python. Since the API was not documented Guido and the gang felt
1658 // safe in changing it. Needless to say that totally screwed up the
1659 // logic below in wxPyCallbackHelper::findCallback, hence this icky
1660 // code to find the class where the method is actually defined...
1663 PyObject
* PyFindClassWithAttr(PyObject
*klass
, PyObject
*name
)
1667 if (PyType_Check(klass
)) { // new style classes
1668 // This code is borrowed/adapted from _PyType_Lookup in typeobject.c
1669 PyTypeObject
* type
= (PyTypeObject
*)klass
;
1670 PyObject
*mro
, *res
, *base
, *dict
;
1671 /* Look in tp_dict of types in MRO */
1673 assert(PyTuple_Check(mro
));
1674 n
= PyTuple_GET_SIZE(mro
);
1675 for (i
= 0; i
< n
; i
++) {
1676 base
= PyTuple_GET_ITEM(mro
, i
);
1677 if (PyClass_Check(base
))
1678 dict
= ((PyClassObject
*)base
)->cl_dict
;
1680 assert(PyType_Check(base
));
1681 dict
= ((PyTypeObject
*)base
)->tp_dict
;
1683 assert(dict
&& PyDict_Check(dict
));
1684 res
= PyDict_GetItem(dict
, name
);
1691 else if (PyClass_Check(klass
)) { // old style classes
1692 // This code is borrowed/adapted from class_lookup in classobject.c
1693 PyClassObject
* cp
= (PyClassObject
*)klass
;
1694 PyObject
*value
= PyDict_GetItem(cp
->cl_dict
, name
);
1695 if (value
!= NULL
) {
1696 return (PyObject
*)cp
;
1698 n
= PyTuple_Size(cp
->cl_bases
);
1699 for (i
= 0; i
< n
; i
++) {
1700 PyObject
* base
= PyTuple_GetItem(cp
->cl_bases
, i
);
1701 PyObject
*v
= PyFindClassWithAttr(base
, name
);
1713 PyObject
* PyMethod_GetDefiningClass(PyObject
* method
, const char* name
)
1715 PyObject
* mgc
= PyMethod_GET_CLASS(method
);
1717 #if PYTHON_API_VERSION <= 1010 // prior to Python 2.2, the easy way
1719 #else // 2.2 and after, the hard way...
1721 PyObject
* nameo
= PyString_FromString(name
);
1722 PyObject
* klass
= PyFindClassWithAttr(mgc
, nameo
);
1730 bool wxPyCallbackHelper::findCallback(const char* name
) const {
1731 wxPyCallbackHelper
* self
= (wxPyCallbackHelper
*)this; // cast away const
1732 self
->m_lastFound
= NULL
;
1734 // If the object (m_self) has an attibute of the given name...
1735 if (m_self
&& PyObject_HasAttrString(m_self
, (char*)name
)) {
1736 PyObject
*method
, *klass
;
1737 method
= PyObject_GetAttrString(m_self
, (char*)name
);
1739 // ...and if that attribute is a method, and if that method's class is
1740 // not from a base class...
1741 if (PyMethod_Check(method
) &&
1742 (klass
= PyMethod_GetDefiningClass(method
, (char*)name
)) != NULL
&&
1743 ((klass
== m_class
) || PyObject_IsSubclass(klass
, m_class
))) {
1745 // ...then we'll save a pointer to the method so callCallback can call it.
1746 self
->m_lastFound
= method
;
1752 return m_lastFound
!= NULL
;
1756 int wxPyCallbackHelper::callCallback(PyObject
* argTuple
) const {
1760 result
= callCallbackObj(argTuple
);
1761 if (result
) { // Assumes an integer return type...
1762 retval
= PyInt_AsLong(result
);
1764 PyErr_Clear(); // forget about it if it's not...
1769 // Invoke the Python callable object, returning the raw PyObject return
1770 // value. Caller should DECREF the return value and also manage the GIL.
1771 PyObject
* wxPyCallbackHelper::callCallbackObj(PyObject
* argTuple
) const {
1774 // Save a copy of the pointer in case the callback generates another
1775 // callback. In that case m_lastFound will have a different value when
1776 // it gets back here...
1777 PyObject
* method
= m_lastFound
;
1779 result
= PyEval_CallObject(method
, argTuple
);
1780 Py_DECREF(argTuple
);
1789 void wxPyCBH_setCallbackInfo(wxPyCallbackHelper
& cbh
, PyObject
* self
, PyObject
* klass
, int incref
) {
1790 cbh
.setSelf(self
, klass
, incref
);
1793 bool wxPyCBH_findCallback(const wxPyCallbackHelper
& cbh
, const char* name
) {
1794 return cbh
.findCallback(name
);
1797 int wxPyCBH_callCallback(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
) {
1798 return cbh
.callCallback(argTuple
);
1801 PyObject
* wxPyCBH_callCallbackObj(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
) {
1802 return cbh
.callCallbackObj(argTuple
);
1806 void wxPyCBH_delete(wxPyCallbackHelper
* cbh
) {
1807 if (cbh
->m_incRef
) {
1808 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1809 Py_XDECREF(cbh
->m_self
);
1810 Py_XDECREF(cbh
->m_class
);
1811 wxPyEndBlockThreads(blocked
);
1815 //---------------------------------------------------------------------------
1816 //---------------------------------------------------------------------------
1817 // These event classes can be derived from in Python and passed through the event
1818 // system without losing anything. They do this by keeping a reference to
1819 // themselves and some special case handling in wxPyCallback::EventThunker.
1822 wxPyEvtSelfRef::wxPyEvtSelfRef() {
1823 //m_self = Py_None; // **** We don't do normal ref counting to prevent
1824 //Py_INCREF(m_self); // circular loops...
1828 wxPyEvtSelfRef::~wxPyEvtSelfRef() {
1829 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1832 wxPyEndBlockThreads(blocked
);
1835 void wxPyEvtSelfRef::SetSelf(PyObject
* self
, bool clone
) {
1836 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1844 wxPyEndBlockThreads(blocked
);
1847 PyObject
* wxPyEvtSelfRef::GetSelf() const {
1853 IMPLEMENT_ABSTRACT_CLASS(wxPyEvent
, wxEvent
);
1854 IMPLEMENT_ABSTRACT_CLASS(wxPyCommandEvent
, wxCommandEvent
);
1857 wxPyEvent::wxPyEvent(int winid
, wxEventType commandType
)
1858 : wxEvent(winid
, commandType
) {
1862 wxPyEvent::wxPyEvent(const wxPyEvent
& evt
)
1865 SetSelf(evt
.m_self
, true);
1869 wxPyEvent::~wxPyEvent() {
1873 wxPyCommandEvent::wxPyCommandEvent(wxEventType commandType
, int id
)
1874 : wxCommandEvent(commandType
, id
) {
1878 wxPyCommandEvent::wxPyCommandEvent(const wxPyCommandEvent
& evt
)
1879 : wxCommandEvent(evt
)
1881 SetSelf(evt
.m_self
, true);
1885 wxPyCommandEvent::~wxPyCommandEvent() {
1892 //---------------------------------------------------------------------------
1893 //---------------------------------------------------------------------------
1894 // Convert a wxList to a Python List, only works for lists of wxObjects
1896 PyObject
* wxPy_ConvertList(wxListBase
* listbase
) {
1897 wxList
* list
= (wxList
*)listbase
; // this is probably bad...
1901 wxNode
* node
= list
->GetFirst();
1903 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1904 pyList
= PyList_New(0);
1906 wxObj
= node
->GetData();
1907 pyObj
= wxPyMake_wxObject(wxObj
,false);
1908 PyList_Append(pyList
, pyObj
);
1909 node
= node
->GetNext();
1911 wxPyEndBlockThreads(blocked
);
1915 //----------------------------------------------------------------------
1917 long wxPyGetWinHandle(wxWindow
* win
) {
1920 return (long)win
->GetHandle();
1923 #if defined(__WXGTK__) || defined(__WXX11)
1924 return (long)GetXWindow(win
);
1928 //return (long)MAC_WXHWND(win->MacGetTopLevelWindowRef());
1929 return (long)win
->GetHandle();
1935 //----------------------------------------------------------------------
1936 // Some helper functions for typemaps in my_typemaps.i, so they won't be
1937 // included in every file over and over again...
1939 wxString
* wxString_in_helper(PyObject
* source
) {
1940 wxString
* target
= NULL
;
1942 if (!PyString_Check(source
) && !PyUnicode_Check(source
)) {
1943 PyErr_SetString(PyExc_TypeError
, "String or Unicode type required");
1947 PyObject
* uni
= source
;
1948 if (PyString_Check(source
)) {
1949 uni
= PyUnicode_FromEncodedObject(source
, wxPyDefaultEncoding
, "strict");
1950 if (PyErr_Occurred()) return NULL
;
1952 target
= new wxString();
1953 size_t len
= PyUnicode_GET_SIZE(uni
);
1955 PyUnicode_AsWideChar((PyUnicodeObject
*)uni
, target
->GetWriteBuf(len
), len
);
1956 target
->UngetWriteBuf(len
);
1959 if (PyString_Check(source
))
1962 // Convert to a string object if it isn't already, then to wxString
1963 PyObject
* str
= source
;
1964 if (PyUnicode_Check(source
)) {
1965 str
= PyUnicode_AsEncodedString(source
, wxPyDefaultEncoding
, "strict");
1966 if (PyErr_Occurred()) return NULL
;
1968 else if (!PyString_Check(source
)) {
1969 str
= PyObject_Str(source
);
1970 if (PyErr_Occurred()) return NULL
;
1972 char* tmpPtr
; int tmpSize
;
1973 PyString_AsStringAndSize(str
, &tmpPtr
, &tmpSize
);
1974 target
= new wxString(tmpPtr
, tmpSize
);
1976 if (!PyString_Check(source
))
1978 #endif // wxUSE_UNICODE
1984 // Similar to above except doesn't use "new" and doesn't set an exception
1985 wxString
Py2wxString(PyObject
* source
)
1990 // Convert to a unicode object, if not already, then to a wxString
1991 PyObject
* uni
= source
;
1992 if (!PyUnicode_Check(source
)) {
1993 uni
= PyUnicode_FromEncodedObject(source
, wxPyDefaultEncoding
, "strict");
1994 if (PyErr_Occurred()) return wxEmptyString
; // TODO: should we PyErr_Clear?
1996 size_t len
= PyUnicode_GET_SIZE(uni
);
1998 PyUnicode_AsWideChar((PyUnicodeObject
*)uni
, target
.GetWriteBuf(len
), len
);
1999 target
.UngetWriteBuf();
2002 if (!PyUnicode_Check(source
))
2005 // Convert to a string object if it isn't already, then to wxString
2006 PyObject
* str
= source
;
2007 if (PyUnicode_Check(source
)) {
2008 str
= PyUnicode_AsEncodedString(source
, wxPyDefaultEncoding
, "strict");
2009 if (PyErr_Occurred()) return wxEmptyString
; // TODO: should we PyErr_Clear?
2011 else if (!PyString_Check(source
)) {
2012 str
= PyObject_Str(source
);
2013 if (PyErr_Occurred()) return wxEmptyString
; // TODO: should we PyErr_Clear?
2015 char* tmpPtr
; int tmpSize
;
2016 PyString_AsStringAndSize(str
, &tmpPtr
, &tmpSize
);
2017 target
= wxString(tmpPtr
, tmpSize
);
2019 if (!PyString_Check(source
))
2021 #endif // wxUSE_UNICODE
2027 // Make either a Python String or Unicode object, depending on build mode
2028 PyObject
* wx2PyString(const wxString
& src
)
2032 str
= PyUnicode_FromWideChar(src
.c_str(), src
.Len());
2034 str
= PyString_FromStringAndSize(src
.c_str(), src
.Len());
2041 void wxSetDefaultPyEncoding(const char* encoding
)
2043 strncpy(wxPyDefaultEncoding
, encoding
, DEFAULTENCODING_SIZE
);
2046 const char* wxGetDefaultPyEncoding()
2048 return wxPyDefaultEncoding
;
2051 //----------------------------------------------------------------------
2054 byte
* byte_LIST_helper(PyObject
* source
) {
2055 if (!PyList_Check(source
)) {
2056 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2059 int count
= PyList_Size(source
);
2060 byte
* temp
= new byte
[count
];
2062 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2065 for (int x
=0; x
<count
; x
++) {
2066 PyObject
* o
= PyList_GetItem(source
, x
);
2067 if (! PyInt_Check(o
)) {
2068 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
2071 temp
[x
] = (byte
)PyInt_AsLong(o
);
2077 int* int_LIST_helper(PyObject
* source
) {
2078 if (!PyList_Check(source
)) {
2079 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2082 int count
= PyList_Size(source
);
2083 int* temp
= new int[count
];
2085 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2088 for (int x
=0; x
<count
; x
++) {
2089 PyObject
* o
= PyList_GetItem(source
, x
);
2090 if (! PyInt_Check(o
)) {
2091 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
2094 temp
[x
] = PyInt_AsLong(o
);
2100 long* long_LIST_helper(PyObject
* source
) {
2101 if (!PyList_Check(source
)) {
2102 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2105 int count
= PyList_Size(source
);
2106 long* temp
= new long[count
];
2108 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2111 for (int x
=0; x
<count
; x
++) {
2112 PyObject
* o
= PyList_GetItem(source
, x
);
2113 if (! PyInt_Check(o
)) {
2114 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
2117 temp
[x
] = PyInt_AsLong(o
);
2123 char** string_LIST_helper(PyObject
* source
) {
2124 if (!PyList_Check(source
)) {
2125 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2128 int count
= PyList_Size(source
);
2129 char** temp
= new char*[count
];
2131 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2134 for (int x
=0; x
<count
; x
++) {
2135 PyObject
* o
= PyList_GetItem(source
, x
);
2136 if (! PyString_Check(o
)) {
2137 PyErr_SetString(PyExc_TypeError
, "Expected a list of strings.");
2140 temp
[x
] = PyString_AsString(o
);
2145 //--------------------------------
2146 // Part of patch from Tim Hochberg
2147 static inline bool wxPointFromObjects(PyObject
* o1
, PyObject
* o2
, wxPoint
* point
) {
2148 if (PyInt_Check(o1
) && PyInt_Check(o2
)) {
2149 point
->x
= PyInt_AS_LONG(o1
);
2150 point
->y
= PyInt_AS_LONG(o2
);
2153 if (PyFloat_Check(o1
) && PyFloat_Check(o2
)) {
2154 point
->x
= (int)PyFloat_AS_DOUBLE(o1
);
2155 point
->y
= (int)PyFloat_AS_DOUBLE(o2
);
2158 if (wxPySwigInstance_Check(o1
) || wxPySwigInstance_Check(o2
)) { // TODO: Why???
2159 // Disallow instances because they can cause havok
2162 if (PyNumber_Check(o1
) && PyNumber_Check(o2
)) {
2163 // I believe this excludes instances, so this should be safe without INCREFFing o1 and o2
2164 point
->x
= PyInt_AsLong(o1
);
2165 point
->y
= PyInt_AsLong(o2
);
2172 wxPoint
* wxPoint_LIST_helper(PyObject
* source
, int *count
) {
2173 // Putting all of the declarations here allows
2174 // us to put the error handling all in one place.
2177 PyObject
*o
, *o1
, *o2
;
2178 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
2180 if (!PySequence_Check(source
)) {
2184 // The length of the sequence is returned in count.
2185 *count
= PySequence_Length(source
);
2190 temp
= new wxPoint
[*count
];
2192 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2195 for (x
=0; x
<*count
; x
++) {
2196 // Get an item: try fast way first.
2198 o
= PySequence_Fast_GET_ITEM(source
, x
);
2201 o
= PySequence_GetItem(source
, x
);
2207 // Convert o to wxPoint.
2208 if ((PyTuple_Check(o
) && PyTuple_GET_SIZE(o
) == 2) ||
2209 (PyList_Check(o
) && PyList_GET_SIZE(o
) == 2)) {
2210 o1
= PySequence_Fast_GET_ITEM(o
, 0);
2211 o2
= PySequence_Fast_GET_ITEM(o
, 1);
2212 if (!wxPointFromObjects(o1
, o2
, &temp
[x
])) {
2216 else if (wxPySwigInstance_Check(o
)) {
2218 if (! wxPyConvertSwigPtr(o
, (void **)&pt
, wxT("wxPoint"))) {
2223 else if (PySequence_Check(o
) && PySequence_Length(o
) == 2) {
2224 o1
= PySequence_GetItem(o
, 0);
2225 o2
= PySequence_GetItem(o
, 1);
2226 if (!wxPointFromObjects(o1
, o2
, &temp
[x
])) {
2250 PyErr_SetString(PyExc_TypeError
, "Expected a sequence of length-2 sequences or wxPoints.");
2254 //------------------------------
2257 wxBitmap
** wxBitmap_LIST_helper(PyObject
* source
) {
2258 if (!PyList_Check(source
)) {
2259 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2262 int count
= PyList_Size(source
);
2263 wxBitmap
** temp
= new wxBitmap
*[count
];
2265 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2268 for (int x
=0; x
<count
; x
++) {
2269 PyObject
* o
= PyList_GetItem(source
, x
);
2270 if (wxPySwigInstance_Check(o
)) {
2272 if (! wxPyConvertSwigPtr(o
, (void **) &pt
, wxT("wxBitmap"))) {
2273 PyErr_SetString(PyExc_TypeError
,"Expected wxBitmap.");
2279 PyErr_SetString(PyExc_TypeError
, "Expected a list of wxBitmaps.");
2288 wxString
* wxString_LIST_helper(PyObject
* source
) {
2289 if (!PyList_Check(source
)) {
2290 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2293 int count
= PyList_Size(source
);
2294 wxString
* temp
= new wxString
[count
];
2296 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2299 for (int x
=0; x
<count
; x
++) {
2300 PyObject
* o
= PyList_GetItem(source
, x
);
2301 #if PYTHON_API_VERSION >= 1009
2302 if (! PyString_Check(o
) && ! PyUnicode_Check(o
)) {
2303 PyErr_SetString(PyExc_TypeError
, "Expected a list of string or unicode objects.");
2307 if (! PyString_Check(o
)) {
2308 PyErr_SetString(PyExc_TypeError
, "Expected a list of strings.");
2313 wxString
* pStr
= wxString_in_helper(o
);
2321 wxAcceleratorEntry
* wxAcceleratorEntry_LIST_helper(PyObject
* source
) {
2322 if (!PyList_Check(source
)) {
2323 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2326 int count
= PyList_Size(source
);
2327 wxAcceleratorEntry
* temp
= new wxAcceleratorEntry
[count
];
2329 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2332 for (int x
=0; x
<count
; x
++) {
2333 PyObject
* o
= PyList_GetItem(source
, x
);
2334 if (wxPySwigInstance_Check(o
)) {
2335 wxAcceleratorEntry
* ae
;
2336 if (! wxPyConvertSwigPtr(o
, (void **) &ae
, wxT("wxAcceleratorEntry"))) {
2337 PyErr_SetString(PyExc_TypeError
,"Expected wxAcceleratorEntry.");
2342 else if (PyTuple_Check(o
)) {
2343 PyObject
* o1
= PyTuple_GetItem(o
, 0);
2344 PyObject
* o2
= PyTuple_GetItem(o
, 1);
2345 PyObject
* o3
= PyTuple_GetItem(o
, 2);
2346 temp
[x
].Set(PyInt_AsLong(o1
), PyInt_AsLong(o2
), PyInt_AsLong(o3
));
2349 PyErr_SetString(PyExc_TypeError
, "Expected a list of 3-tuples or wxAcceleratorEntry objects.");
2357 wxPen
** wxPen_LIST_helper(PyObject
* source
) {
2358 if (!PyList_Check(source
)) {
2359 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2362 int count
= PyList_Size(source
);
2363 wxPen
** temp
= new wxPen
*[count
];
2365 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2368 for (int x
=0; x
<count
; x
++) {
2369 PyObject
* o
= PyList_GetItem(source
, x
);
2370 if (wxPySwigInstance_Check(o
)) {
2372 if (! wxPyConvertSwigPtr(o
, (void **)&pt
, wxT("wxPen"))) {
2374 PyErr_SetString(PyExc_TypeError
,"Expected wxPen.");
2381 PyErr_SetString(PyExc_TypeError
, "Expected a list of wxPens.");
2389 bool wxPy2int_seq_helper(PyObject
* source
, int* i1
, int* i2
) {
2390 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
2393 if (!PySequence_Check(source
) || PySequence_Length(source
) != 2)
2397 o1
= PySequence_Fast_GET_ITEM(source
, 0);
2398 o2
= PySequence_Fast_GET_ITEM(source
, 1);
2401 o1
= PySequence_GetItem(source
, 0);
2402 o2
= PySequence_GetItem(source
, 1);
2405 *i1
= PyInt_AsLong(o1
);
2406 *i2
= PyInt_AsLong(o2
);
2416 bool wxPy4int_seq_helper(PyObject
* source
, int* i1
, int* i2
, int* i3
, int* i4
) {
2417 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
2418 PyObject
*o1
, *o2
, *o3
, *o4
;
2420 if (!PySequence_Check(source
) || PySequence_Length(source
) != 4)
2424 o1
= PySequence_Fast_GET_ITEM(source
, 0);
2425 o2
= PySequence_Fast_GET_ITEM(source
, 1);
2426 o3
= PySequence_Fast_GET_ITEM(source
, 2);
2427 o4
= PySequence_Fast_GET_ITEM(source
, 3);
2430 o1
= PySequence_GetItem(source
, 0);
2431 o2
= PySequence_GetItem(source
, 1);
2432 o3
= PySequence_GetItem(source
, 2);
2433 o4
= PySequence_GetItem(source
, 3);
2436 *i1
= PyInt_AsLong(o1
);
2437 *i2
= PyInt_AsLong(o2
);
2438 *i3
= PyInt_AsLong(o3
);
2439 *i4
= PyInt_AsLong(o4
);
2451 //----------------------------------------------------------------------
2453 bool wxPySimple_typecheck(PyObject
* source
, const wxChar
* classname
, int seqLen
)
2457 if (wxPySwigInstance_Check(source
) &&
2458 wxPyConvertSwigPtr(source
, (void **)&ptr
, classname
))
2462 if (PySequence_Check(source
) && PySequence_Length(source
) == seqLen
)
2468 bool wxSize_helper(PyObject
* source
, wxSize
** obj
)
2470 if (source
== Py_None
) {
2471 **obj
= wxSize(-1,-1);
2474 return wxPyTwoIntItem_helper(source
, obj
, wxT("wxSize"));
2478 bool wxPoint_helper(PyObject
* source
, wxPoint
** obj
)
2480 if (source
== Py_None
) {
2481 **obj
= wxPoint(-1,-1);
2484 return wxPyTwoIntItem_helper(source
, obj
, wxT("wxPoint"));
2489 bool wxRealPoint_helper(PyObject
* source
, wxRealPoint
** obj
) {
2491 if (source
== Py_None
) {
2492 **obj
= wxRealPoint(-1,-1);
2496 // If source is an object instance then it may already be the right type
2497 if (wxPySwigInstance_Check(source
)) {
2499 if (! wxPyConvertSwigPtr(source
, (void **)&ptr
, wxT("wxRealPoint")))
2504 // otherwise a 2-tuple of floats is expected
2505 else if (PySequence_Check(source
) && PyObject_Length(source
) == 2) {
2506 PyObject
* o1
= PySequence_GetItem(source
, 0);
2507 PyObject
* o2
= PySequence_GetItem(source
, 1);
2508 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
)) {
2513 **obj
= wxRealPoint(PyFloat_AsDouble(o1
), PyFloat_AsDouble(o2
));
2520 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of floats or a wxRealPoint object.");
2526 bool wxRect_helper(PyObject
* source
, wxRect
** obj
) {
2528 if (source
== Py_None
) {
2529 **obj
= wxRect(-1,-1,-1,-1);
2533 // If source is an object instance then it may already be the right type
2534 if (wxPySwigInstance_Check(source
)) {
2536 if (! wxPyConvertSwigPtr(source
, (void **)&ptr
, wxT("wxRect")))
2541 // otherwise a 4-tuple of integers is expected
2542 else if (PySequence_Check(source
) && PyObject_Length(source
) == 4) {
2543 PyObject
* o1
= PySequence_GetItem(source
, 0);
2544 PyObject
* o2
= PySequence_GetItem(source
, 1);
2545 PyObject
* o3
= PySequence_GetItem(source
, 2);
2546 PyObject
* o4
= PySequence_GetItem(source
, 3);
2547 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
) ||
2548 !PyNumber_Check(o3
) || !PyNumber_Check(o4
)) {
2555 **obj
= wxRect(PyInt_AsLong(o1
), PyInt_AsLong(o2
),
2556 PyInt_AsLong(o3
), PyInt_AsLong(o4
));
2565 PyErr_SetString(PyExc_TypeError
, "Expected a 4-tuple of integers or a wxRect object.");
2571 bool wxColour_helper(PyObject
* source
, wxColour
** obj
) {
2573 if (source
== Py_None
) {
2574 **obj
= wxNullColour
;
2578 // If source is an object instance then it may already be the right type
2579 if (wxPySwigInstance_Check(source
)) {
2581 if (! wxPyConvertSwigPtr(source
, (void **)&ptr
, wxT("wxColour")))
2586 // otherwise check for a string
2587 else if (PyString_Check(source
) || PyUnicode_Check(source
)) {
2588 wxString spec
= Py2wxString(source
);
2589 if (spec
.GetChar(0) == '#' && spec
.Length() == 7) { // It's #RRGGBB
2590 long red
, green
, blue
;
2591 red
= green
= blue
= 0;
2592 spec
.Mid(1,2).ToLong(&red
, 16);
2593 spec
.Mid(3,2).ToLong(&green
, 16);
2594 spec
.Mid(5,2).ToLong(&blue
, 16);
2596 **obj
= wxColour(red
, green
, blue
);
2599 else { // it's a colour name
2600 **obj
= wxColour(spec
);
2604 // last chance: 3-tuple of integers is expected
2605 else if (PySequence_Check(source
) && PyObject_Length(source
) == 3) {
2606 PyObject
* o1
= PySequence_GetItem(source
, 0);
2607 PyObject
* o2
= PySequence_GetItem(source
, 1);
2608 PyObject
* o3
= PySequence_GetItem(source
, 2);
2609 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
) || !PyNumber_Check(o3
)) {
2615 **obj
= wxColour(PyInt_AsLong(o1
), PyInt_AsLong(o2
), PyInt_AsLong(o3
));
2623 PyErr_SetString(PyExc_TypeError
,
2624 "Expected a wxColour object or a string containing a colour name or '#RRGGBB'.");
2629 bool wxColour_typecheck(PyObject
* source
) {
2631 if (wxPySimple_typecheck(source
, wxT("wxColour"), 3))
2634 if (PyString_Check(source
) || PyUnicode_Check(source
))
2642 bool wxPoint2D_helper(PyObject
* source
, wxPoint2D
** obj
) {
2644 if (source
== Py_None
) {
2645 **obj
= wxPoint2D(-1,-1);
2649 // If source is an object instance then it may already be the right type
2650 if (wxPySwigInstance_Check(source
)) {
2652 if (! wxPyConvertSwigPtr(source
, (void **)&ptr
, wxT("wxPoint2D")))
2657 // otherwise a length-2 sequence of floats is expected
2658 if (PySequence_Check(source
) && PySequence_Length(source
) == 2) {
2659 PyObject
* o1
= PySequence_GetItem(source
, 0);
2660 PyObject
* o2
= PySequence_GetItem(source
, 1);
2661 // This should really check for floats, not numbers -- but that would break code.
2662 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
)) {
2667 **obj
= wxPoint2D(PyFloat_AsDouble(o1
), PyFloat_AsDouble(o2
));
2673 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of floats or a wxPoint2D object.");
2678 //----------------------------------------------------------------------
2680 PyObject
* wxArrayString2PyList_helper(const wxArrayString
& arr
) {
2682 PyObject
* list
= PyList_New(0);
2683 for (size_t i
=0; i
< arr
.GetCount(); i
++) {
2685 PyObject
* str
= PyUnicode_FromWideChar(arr
[i
].c_str(), arr
[i
].Len());
2687 PyObject
* str
= PyString_FromStringAndSize(arr
[i
].c_str(), arr
[i
].Len());
2689 PyList_Append(list
, str
);
2696 PyObject
* wxArrayInt2PyList_helper(const wxArrayInt
& arr
) {
2698 PyObject
* list
= PyList_New(0);
2699 for (size_t i
=0; i
< arr
.GetCount(); i
++) {
2700 PyObject
* number
= PyInt_FromLong(arr
[i
]);
2701 PyList_Append(list
, number
);
2708 //----------------------------------------------------------------------
2709 //----------------------------------------------------------------------