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 //----------------------------------------------------------------------
102 HINSTANCE hinstDLL
, // handle to DLL module
103 DWORD fdwReason
, // reason for calling function
104 LPVOID lpvReserved
// reserved
107 // If wxPython is embedded in another wxWidgets app then
108 // the instance has already been set.
109 if (! wxGetInstance())
110 wxSetInstance(hinstDLL
);
115 //----------------------------------------------------------------------
116 // Classes for implementing the wxp main application shell.
117 //----------------------------------------------------------------------
119 IMPLEMENT_ABSTRACT_CLASS(wxPyApp
, wxApp
);
123 m_assertMode
= wxPYAPP_ASSERT_EXCEPTION
;
124 m_startupComplete
= false;
128 wxPyApp::~wxPyApp() {
130 wxApp::SetInstance(NULL
);
134 // This one isn't acutally called... We fake it with _BootstrapApp
135 bool wxPyApp::OnInit() {
140 int wxPyApp::MainLoop() {
143 DeletePendingObjects();
144 bool initialized
= wxTopLevelWindows
.GetCount() != 0;
146 if ( m_exitOnFrameDelete
== Later
) {
147 m_exitOnFrameDelete
= Yes
;
150 retval
= wxApp::MainLoop();
157 bool wxPyApp::OnInitGui() {
159 wxApp::OnInitGui(); // in this case always call the base class version
160 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
161 if (wxPyCBH_findCallback(m_myInst
, "OnInitGui"))
162 rval
= wxPyCBH_callCallback(m_myInst
, Py_BuildValue("()"));
163 wxPyEndBlockThreads(blocked
);
168 int wxPyApp::OnExit() {
170 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
171 if (wxPyCBH_findCallback(m_myInst
, "OnExit"))
172 rval
= wxPyCBH_callCallback(m_myInst
, Py_BuildValue("()"));
173 wxPyEndBlockThreads(blocked
);
174 wxApp::OnExit(); // in this case always call the base class version
180 void wxPyApp::OnAssert(const wxChar
*file
,
185 // if we're not fully initialized then just log the error
186 if (! m_startupComplete
) {
189 buf
.Printf(wxT("%s(%d): assert \"%s\" failed"),
199 // If the OnAssert is overloaded in the Python class then call it...
201 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
202 if ((found
= wxPyCBH_findCallback(m_myInst
, "OnAssert"))) {
203 PyObject
* fso
= wx2PyString(file
);
204 PyObject
* cso
= wx2PyString(file
);
207 mso
= wx2PyString(file
);
209 mso
= Py_None
; Py_INCREF(Py_None
);
211 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OiOO)", fso
, line
, cso
, mso
));
216 wxPyEndBlockThreads(blocked
);
218 // ...otherwise do our own thing with it
221 if (m_assertMode
& wxPYAPP_ASSERT_SUPPRESS
)
224 // turn it into a Python exception?
225 if (m_assertMode
& wxPYAPP_ASSERT_EXCEPTION
) {
228 buf
.Printf(wxT("C++ assertion \"%s\" failed in %s(%d)"), cond
, file
, line
);
235 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
236 PyObject
* s
= wx2PyString(buf
);
237 PyErr_SetObject(wxPyAssertionError
, s
);
239 wxPyEndBlockThreads(blocked
);
241 // Now when control returns to whatever API wrapper was called from
242 // Python it should detect that an exception is set and will return
243 // NULL, signalling the exception to Python.
246 // Send it to the normal log destination, but only if
247 // not _DIALOG because it will call this too
248 if ( (m_assertMode
& wxPYAPP_ASSERT_LOG
) && !(m_assertMode
& wxPYAPP_ASSERT_DIALOG
)) {
251 buf
.Printf(wxT("%s(%d): assert \"%s\" failed"),
260 // do the normal wx assert dialog?
261 if (m_assertMode
& wxPYAPP_ASSERT_DIALOG
)
262 wxApp::OnAssert(file
, line
, cond
, msg
);
267 // For catching Apple Events
268 void wxPyApp::MacOpenFile(const wxString
&fileName
)
270 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
271 if (wxPyCBH_findCallback(m_myInst
, "MacOpenFile")) {
272 PyObject
* s
= wx2PyString(fileName
);
273 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(O)", s
));
276 wxPyEndBlockThreads(blocked
);
279 void wxPyApp::MacPrintFile(const wxString
&fileName
)
281 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
282 if (wxPyCBH_findCallback(m_myInst
, "MacPrintFile")) {
283 PyObject
* s
= wx2PyString(fileName
);
284 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(O)", s
));
287 wxPyEndBlockThreads(blocked
);
290 void wxPyApp::MacNewFile()
292 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
293 if (wxPyCBH_findCallback(m_myInst
, "MacNewFile"))
294 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("()"));
295 wxPyEndBlockThreads(blocked
);
298 void wxPyApp::MacReopenApp()
300 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
301 if (wxPyCBH_findCallback(m_myInst
, "MacReopenApp"))
302 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("()"));
303 wxPyEndBlockThreads(blocked
);
308 bool wxPyApp::GetMacSupportPCMenuShortcuts() {
310 return s_macSupportPCMenuShortcuts
;
317 long wxPyApp::GetMacAboutMenuItemId() {
319 return s_macAboutMenuItemId
;
326 long wxPyApp::GetMacPreferencesMenuItemId() {
328 return s_macPreferencesMenuItemId
;
335 long wxPyApp::GetMacExitMenuItemId() {
337 return s_macExitMenuItemId
;
344 wxString
wxPyApp::GetMacHelpMenuTitleName() {
346 return s_macHelpMenuTitleName
;
348 return wxEmptyString
;
353 void wxPyApp::SetMacSupportPCMenuShortcuts(bool val
) {
355 s_macSupportPCMenuShortcuts
= val
;
360 void wxPyApp::SetMacAboutMenuItemId(long val
) {
362 s_macAboutMenuItemId
= val
;
367 void wxPyApp::SetMacPreferencesMenuItemId(long val
) {
369 s_macPreferencesMenuItemId
= val
;
374 void wxPyApp::SetMacExitMenuItemId(long val
) {
376 s_macExitMenuItemId
= val
;
381 void wxPyApp::SetMacHelpMenuTitleName(const wxString
& val
) {
383 s_macHelpMenuTitleName
= val
;
388 // This finishes the initialization of wxWindows and then calls the OnInit
389 // that should be present in the derived (Python) class.
390 void wxPyApp::_BootstrapApp()
392 static bool haveInitialized
= false;
395 PyObject
* retval
= NULL
;
396 PyObject
* pyint
= NULL
;
399 // Only initialize wxWidgets once
400 if (! haveInitialized
) {
402 // Get any command-line args passed to this program from the sys module
405 blocked
= wxPyBeginBlockThreads();
407 PyObject
* sysargv
= PySys_GetObject("argv");
408 PyObject
* executable
= PySys_GetObject("executable");
410 if (sysargv
!= NULL
&& executable
!= NULL
) {
411 argc
= PyList_Size(sysargv
) + 1;
412 argv
= new char*[argc
+1];
413 argv
[0] = strdup(PyString_AsString(executable
));
415 for(x
=1; x
<argc
; x
++) {
416 PyObject
*pyArg
= PyList_GetItem(sysargv
, x
-1);
417 argv
[x
] = strdup(PyString_AsString(pyArg
));
421 wxPyEndBlockThreads(blocked
);
423 // Initialize wxWidgets
424 result
= wxEntryStart(argc
, argv
);
425 // wxApp takes ownership of the argv array, don't delete it here
427 blocked
= wxPyBeginBlockThreads();
429 PyErr_SetString(PyExc_SystemError
,
430 "wxEntryStart failed, unable to initialize wxWidgets!"
432 " (Is DISPLAY set properly?)"
438 // On wxGTK the locale will be changed to match the system settings,
439 // but Python before 2.4 needs to have LC_NUMERIC set to "C" in order
440 // for the floating point conversions and such to work right.
441 #if defined(__WXGTK__) && PY_VERSION_HEX < 0x02040000
442 setlocale(LC_NUMERIC
, "C");
445 wxSystemOptions::SetOption(wxT("mac.textcontrol-use-mlte"), 1);
447 // The stock objects were all NULL when they were loaded into
448 // SWIG generated proxies, so re-init those now...
449 wxPy_ReinitStockObjects(3);
451 wxPyEndBlockThreads(blocked
);
452 haveInitialized
= true;
460 // It's now ok to generate exceptions for assertion errors.
461 wxPythonApp
->SetStartupComplete(true);
463 // Call the Python wxApp's OnInit function
464 blocked
= wxPyBeginBlockThreads();
465 if (wxPyCBH_findCallback(m_myInst
, "OnInit")) {
467 PyObject
* method
= m_myInst
.GetLastFound();
468 PyObject
* argTuple
= PyTuple_New(0);
469 retval
= PyEval_CallObject(method
, argTuple
);
475 pyint
= PyNumber_Int(retval
);
477 PyErr_SetString(PyExc_TypeError
, "OnInit should return a boolean value");
480 result
= PyInt_AS_LONG(pyint
);
483 // Is it okay if there is no OnInit? Probably so...
488 PyErr_SetString(PyExc_SystemExit
, "OnInit returned false, exiting...");
495 wxPyEndBlockThreads(blocked
);
498 //---------------------------------------------------------------------
499 //----------------------------------------------------------------------
503 static char* wxPyCopyCString(const wxChar
* src
)
505 wxWX2MBbuf buff
= (wxWX2MBbuf
)wxConvCurrent
->cWX2MB(src
);
506 size_t len
= strlen(buff
);
507 char* dest
= new char[len
+1];
513 static char* wxPyCopyCString(const char* src
) // we need a char version too
515 size_t len
= strlen(src
);
516 char* dest
= new char[len
+1];
522 static wxChar
* wxPyCopyWString(const char *src
)
524 //wxMB2WXbuf buff = wxConvCurrent->cMB2WX(src);
525 wxString
str(src
, *wxConvCurrent
);
526 return copystring(str
);
530 static wxChar
* wxPyCopyWString(const wxChar
*src
)
532 return copystring(src
);
538 inline const char* dropwx(const char* name
) {
539 if (name
[0] == 'w' && name
[1] == 'x')
545 //----------------------------------------------------------------------
547 // This function is called when the wx._core_ module is imported to do some
548 // initial setup. (Before there is a wxApp object.) The rest happens in
549 // wxPyApp::_BootstrapApp
550 void __wxPyPreStart(PyObject
* moduleDict
)
554 // wxCrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF
555 // | _CRTDBG_CHECK_ALWAYS_DF
556 // | _CRTDBG_DELAY_FREE_MEM_DF
560 #ifdef WXP_WITH_THREAD
561 #if wxPyUSE_GIL_STATE
562 PyEval_InitThreads();
564 PyEval_InitThreads();
565 wxPyTStates
= new wxPyThreadStateArray
;
566 wxPyTMutex
= new wxMutex
;
568 // Save the current (main) thread state in our array
569 PyThreadState
* tstate
= wxPyBeginAllowThreads();
570 wxPyEndAllowThreads(tstate
);
574 // Ensure that the build options in the DLL (or whatever) match this build
575 wxApp::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE
, "wxPython");
577 // Init the stock objects to a non-NULL value so SWIG doesn't create them as None
578 wxPy_ReinitStockObjects(1);
580 wxInitAllImageHandlers();
585 void __wxPyCleanup() {
586 wxPyDoingCleanup
= true;
588 wxPyDoCleanup
= false;
591 #ifdef WXP_WITH_THREAD
592 #if !wxPyUSE_GIL_STATE
595 wxPyTStates
->Empty();
603 // Save a reference to the dictionary of the wx._core module, and inject
604 // a few more things into it.
605 PyObject
* __wxPySetDictionary(PyObject
* /* self */, PyObject
* args
)
608 if (!PyArg_ParseTuple(args
, "O", &wxPython_dict
))
611 if (!PyDict_Check(wxPython_dict
)) {
612 PyErr_SetString(PyExc_TypeError
,
613 "_wxPySetDictionary must have dictionary object!");
617 if (! wxPyPtrTypeMap
)
618 wxPyPtrTypeMap
= PyDict_New();
619 PyDict_SetItemString(wxPython_dict
, "__wxPyPtrTypeMap", wxPyPtrTypeMap
);
621 // Create an exception object to use for wxASSERTions
622 wxPyAssertionError
= PyErr_NewException("wx._core.PyAssertionError",
623 PyExc_AssertionError
, NULL
);
624 PyDict_SetItemString(wxPython_dict
, "PyAssertionError", wxPyAssertionError
);
626 // Create an exception object to use when the app object hasn't been created yet
627 wxPyNoAppError
= PyErr_NewException("wx._core.PyNoAppError",
628 PyExc_RuntimeError
, NULL
);
629 PyDict_SetItemString(wxPython_dict
, "PyNoAppError", wxPyNoAppError
);
634 #define wxPlatform "__WXMOTIF__"
635 #define wxPlatName "wxMotif"
638 #define wxPlatform "__WXX11__"
639 #define wxPlatName "wxX11"
642 #define wxPlatform "__WXGTK__"
643 #define wxPlatName "wxGTK"
646 #define wxPlatform "__WXMSW__"
647 #define wxPlatName "wxMSW"
650 #define wxPlatform "__WXMAC__"
651 #define wxPlatName "wxMac"
660 // These should be deprecated in favor of the PlatformInfo tuple built below...
661 PyDict_SetItemString(wxPython_dict
, "Platform", PyString_FromString(wxPlatform
));
662 PyDict_SetItemString(wxPython_dict
, "USE_UNICODE", PyInt_FromLong(wxUSE_UNICODE
));
663 PyDict_SetItemString(wxPython_dict
, "__WXDEBUG__", PyInt_FromLong(wxdebug
));
665 // Make a tuple of strings that gives more info about the platform.
666 PyObject
* PlatInfo
= PyList_New(0);
669 #define _AddInfoString(st) \
670 obj = PyString_FromString(st); \
671 PyList_Append(PlatInfo, obj); \
674 _AddInfoString(wxPlatform
);
675 _AddInfoString(wxPlatName
);
677 _AddInfoString("unicode");
679 _AddInfoString("ansi");
683 _AddInfoString("gtk2");
685 _AddInfoString("gtk1");
689 _AddInfoString("wx-assertions-on");
691 _AddInfoString("wx-assertions-off");
694 #undef _AddInfoString
696 PyObject
* PlatInfoTuple
= PyList_AsTuple(PlatInfo
);
698 PyDict_SetItemString(wxPython_dict
, "PlatformInfo", PlatInfoTuple
);
704 //---------------------------------------------------------------------------
706 // Python's PyInstance_Check does not return True for instances of new-style
707 // classes. This should get close enough for both new and old classes but I
708 // should re-evaluate the need for doing instance checks...
709 bool wxPyInstance_Check(PyObject
* obj
) {
710 return PyObject_HasAttrString(obj
, "__class__") != 0;
714 // This one checks if the object is an instance of a SWIG proxy class (it has
715 // a .this attribute)
716 bool wxPySwigInstance_Check(PyObject
* obj
) {
717 return PyObject_HasAttrString(obj
, "this") != 0;
720 //---------------------------------------------------------------------------
722 // The stock objects are no longer created when the wx._core_ module is
723 // imported, but only after the app object has been created. The
724 // wxPy_ReinitStockObjects function will be called 3 times to pass the stock
725 // objects though various stages of evolution:
727 // pass 1: Set all the pointers to a non-NULL value so the Python proxy
728 // object will be created (otherwise SWIG will just use None.)
730 // pass 2: After the module has been imported and the python proxys have
731 // been created, then set the __class__ to be _wxPyUnbornObject so
732 // it will catch any access to the object and will raise an exception.
734 // pass 3: Finally, from BootstrapApp patch things up so the stock objects
738 PyObject
* __wxPyFixStockObjects(PyObject
* /* self */, PyObject
* args
)
740 wxPy_ReinitStockObjects(2);
745 static void rsoPass2(const char* name
)
747 static PyObject
* unbornObjectClass
= NULL
;
750 if (unbornObjectClass
== NULL
) {
751 unbornObjectClass
= PyDict_GetItemString(wxPython_dict
, "_wxPyUnbornObject");
752 Py_INCREF(unbornObjectClass
);
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"));
761 PyObject_SetAttrString(obj
, "__class__", unbornObjectClass
);
765 static void rsoPass3(const char* name
, const char* classname
, void* ptr
)
771 // Find the object instance
772 obj
= PyDict_GetItemString(wxPython_dict
, (char*)dropwx(name
));
773 wxCHECK_RET(obj
!= NULL
, wxT("Unable to find stock object"));
774 wxCHECK_RET(wxPySwigInstance_Check(obj
), wxT("Not a swig instance"));
776 // Find the class object and put it back in the instance
777 classobj
= PyDict_GetItemString(wxPython_dict
, (char*)dropwx(classname
));
778 wxCHECK_RET(classobj
!= NULL
, wxT("Unable to find stock class object"));
779 PyObject_SetAttrString(obj
, "__class__", classobj
);
781 // Rebuild the .this swigified pointer with the new value of the C++ pointer
782 ptrobj
= wxPyMakeSwigPtr(ptr
, wxString(classname
, *wxConvCurrent
));
783 PyObject_SetAttrString(obj
, "this", ptrobj
);
789 void wxPy_ReinitStockObjects(int pass
)
792 // If there is already an App object then wxPython is probably embedded in
793 // a wx C++ application, so there is no need to do all this.
794 static bool embedded
= false;
795 if ((pass
== 1 || pass
== 2) && wxTheApp
) {
799 if (pass
== 3 && embedded
)
803 #define REINITOBJ(name, classname) \
804 if (pass == 1) { name = (classname*)0xC0C0C0C0; } \
805 else if (pass == 2) { rsoPass2(#name); } \
806 else if (pass == 3) { rsoPass3(#name, #classname, (void*)name); }
809 #define REINITOBJ2(name, classname) \
811 else if (pass == 2) { rsoPass2(#name); } \
812 else if (pass == 3) { rsoPass3(#name, #classname, (void*)&name); }
815 REINITOBJ(wxNORMAL_FONT
, wxFont
);
816 REINITOBJ(wxSMALL_FONT
, wxFont
);
817 REINITOBJ(wxITALIC_FONT
, wxFont
);
818 REINITOBJ(wxSWISS_FONT
, wxFont
);
820 REINITOBJ(wxRED_PEN
, wxPen
);
821 REINITOBJ(wxCYAN_PEN
, wxPen
);
822 REINITOBJ(wxGREEN_PEN
, wxPen
);
823 REINITOBJ(wxBLACK_PEN
, wxPen
);
824 REINITOBJ(wxWHITE_PEN
, wxPen
);
825 REINITOBJ(wxTRANSPARENT_PEN
, wxPen
);
826 REINITOBJ(wxBLACK_DASHED_PEN
, wxPen
);
827 REINITOBJ(wxGREY_PEN
, wxPen
);
828 REINITOBJ(wxMEDIUM_GREY_PEN
, wxPen
);
829 REINITOBJ(wxLIGHT_GREY_PEN
, wxPen
);
831 REINITOBJ(wxBLUE_BRUSH
, wxBrush
);
832 REINITOBJ(wxGREEN_BRUSH
, wxBrush
);
833 REINITOBJ(wxWHITE_BRUSH
, wxBrush
);
834 REINITOBJ(wxBLACK_BRUSH
, wxBrush
);
835 REINITOBJ(wxTRANSPARENT_BRUSH
, wxBrush
);
836 REINITOBJ(wxCYAN_BRUSH
, wxBrush
);
837 REINITOBJ(wxRED_BRUSH
, wxBrush
);
838 REINITOBJ(wxGREY_BRUSH
, wxBrush
);
839 REINITOBJ(wxMEDIUM_GREY_BRUSH
, wxBrush
);
840 REINITOBJ(wxLIGHT_GREY_BRUSH
, wxBrush
);
842 REINITOBJ(wxBLACK
, wxColour
);
843 REINITOBJ(wxWHITE
, wxColour
);
844 REINITOBJ(wxRED
, wxColour
);
845 REINITOBJ(wxBLUE
, wxColour
);
846 REINITOBJ(wxGREEN
, wxColour
);
847 REINITOBJ(wxCYAN
, wxColour
);
848 REINITOBJ(wxLIGHT_GREY
, wxColour
);
850 REINITOBJ(wxSTANDARD_CURSOR
, wxCursor
);
851 REINITOBJ(wxHOURGLASS_CURSOR
, wxCursor
);
852 REINITOBJ(wxCROSS_CURSOR
, wxCursor
);
854 REINITOBJ2(wxNullBitmap
, wxBitmap
);
855 REINITOBJ2(wxNullIcon
, wxIcon
);
856 REINITOBJ2(wxNullCursor
, wxCursor
);
857 REINITOBJ2(wxNullPen
, wxPen
);
858 REINITOBJ2(wxNullBrush
, wxBrush
);
859 REINITOBJ2(wxNullPalette
, wxPalette
);
860 REINITOBJ2(wxNullFont
, wxFont
);
861 REINITOBJ2(wxNullColour
, wxColour
);
863 REINITOBJ(wxTheFontList
, wxFontList
);
864 REINITOBJ(wxThePenList
, wxPenList
);
865 REINITOBJ(wxTheBrushList
, wxBrushList
);
866 REINITOBJ(wxTheColourDatabase
, wxColourDatabase
);
869 REINITOBJ2(wxDefaultValidator
, wxValidator
);
870 REINITOBJ2(wxNullImage
, wxImage
);
871 REINITOBJ2(wxNullAcceleratorTable
, wxAcceleratorTable
);
877 //---------------------------------------------------------------------------
879 // Check for existence of a wxApp, setting an exception if there isn't one.
880 // This doesn't need to aquire the GIL because it should only be called from
881 // an %exception before the lock is released.
883 bool wxPyCheckForApp() {
884 if (wxTheApp
!= NULL
)
887 PyErr_SetString(wxPyNoAppError
, "The wx.App object must be created first!");
892 //---------------------------------------------------------------------------
894 void wxPyUserData_dtor(wxPyUserData
* self
) {
895 if (! wxPyDoingCleanup
) {
896 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
897 Py_DECREF(self
->m_obj
);
899 wxPyEndBlockThreads(blocked
);
904 void wxPyClientData_dtor(wxPyClientData
* self
) {
905 if (! wxPyDoingCleanup
) { // Don't do it during cleanup as Python
906 // may have already garbage collected the object...
907 if (self
->m_incRef
) {
908 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
909 Py_DECREF(self
->m_obj
);
910 wxPyEndBlockThreads(blocked
);
918 // This is called when an OOR controled object is being destroyed. Although
919 // the C++ object is going away there is no way to force the Python object
920 // (and all references to it) to die too. This causes problems (crashes) in
921 // wxPython when a python shadow object attempts to call a C++ method using
922 // the now bogus pointer... So to try and prevent this we'll do a little black
923 // magic and change the class of the python instance to a class that will
924 // raise an exception for any attempt to call methods with it. See
925 // _wxPyDeadObject in _core_ex.py for the implementation of this class.
926 void wxPyOORClientData_dtor(wxPyOORClientData
* self
) {
928 static PyObject
* deadObjectClass
= NULL
;
930 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
931 if (deadObjectClass
== NULL
) {
932 deadObjectClass
= PyDict_GetItemString(wxPython_dict
, "_wxPyDeadObject");
933 // TODO: Can not wxASSERT here because inside a wxPyBeginBlock Threads,
934 // will lead to a deadlock when it tries to aquire the GIL again.
935 //wxASSERT_MSG(deadObjectClass != NULL, wxT("Can't get _wxPyDeadObject class!"));
936 Py_INCREF(deadObjectClass
);
940 // Only if there is more than one reference to the object and we are
941 // holding the OOR reference:
942 if ( !wxPyDoingCleanup
&& self
->m_obj
->ob_refcnt
> 1 && self
->m_incRef
) {
943 // bool isInstance = wxPyInstance_Check(self->m_obj);
945 //wxASSERT_MSG(isInstance, wxT("m_obj not an instance!?!?!"));
947 // Call __del__, if there is one.
948 PyObject
* func
= PyObject_GetAttrString(self
->m_obj
, "__del__");
950 PyObject
* rv
= PyObject_CallMethod(self
->m_obj
, "__del__", NULL
);
954 if (PyErr_Occurred())
955 PyErr_Clear(); // just ignore it for now
958 PyObject
* dict
= PyObject_GetAttrString(self
->m_obj
, "__dict__");
960 // Clear the instance's dictionary
963 // put the name of the old class into the instance, and then reset the
964 // class to be the dead class.
965 PyObject
* klass
= PyObject_GetAttrString(self
->m_obj
, "__class__");
966 PyObject
* name
= PyObject_GetAttrString(klass
, "__name__");
967 PyDict_SetItemString(dict
, "_name", name
);
968 PyObject_SetAttrString(self
->m_obj
, "__class__", deadObjectClass
);
969 //Py_INCREF(deadObjectClass);
975 // m_obj is DECREF'd in the base class dtor...
976 wxPyEndBlockThreads(blocked
);
980 //---------------------------------------------------------------------------
981 // Stuff used by OOR to find the right wxPython class type to return and to
985 // The pointer type map is used when the "pointer" type name generated by SWIG
986 // is not the same as the shadow class name, for example wxPyTreeCtrl
987 // vs. wxTreeCtrl. It needs to be referenced in Python as well as from C++,
988 // so we'll just make it a Python dictionary in the wx module's namespace.
989 // (See __wxSetDictionary)
990 void wxPyPtrTypeMap_Add(const char* commonName
, const char* ptrName
) {
991 if (! wxPyPtrTypeMap
)
992 wxPyPtrTypeMap
= PyDict_New();
993 PyDict_SetItemString(wxPyPtrTypeMap
,
995 PyString_FromString((char*)ptrName
));
1001 PyObject
* wxPyMake_wxObject(wxObject
* source
, bool setThisOwn
, bool checkEvtHandler
) {
1002 PyObject
* target
= NULL
;
1003 bool isEvtHandler
= false;
1006 // If it's derived from wxEvtHandler then there may
1007 // already be a pointer to a Python object that we can use
1009 if (checkEvtHandler
&& wxIsKindOf(source
, wxEvtHandler
)) {
1010 isEvtHandler
= true;
1011 wxEvtHandler
* eh
= (wxEvtHandler
*)source
;
1012 wxPyOORClientData
* data
= (wxPyOORClientData
*)eh
->GetClientObject();
1014 target
= data
->m_obj
;
1021 // Otherwise make it the old fashioned way by making a new shadow
1022 // object and putting this pointer in it. Look up the class
1023 // heirarchy until we find a class name that is located in the
1025 const wxClassInfo
* info
= source
->GetClassInfo();
1026 wxString name
= info
->GetClassName();
1027 bool exists
= wxPyCheckSwigType(name
);
1028 while (info
&& !exists
) {
1029 info
= info
->GetBaseClass1();
1030 name
= info
->GetClassName();
1031 exists
= wxPyCheckSwigType(name
);
1034 target
= wxPyConstructObject((void*)source
, name
, setThisOwn
);
1035 if (target
&& isEvtHandler
)
1036 ((wxEvtHandler
*)source
)->SetClientObject(new wxPyOORClientData(target
));
1038 wxString
msg(wxT("wxPython class not found for "));
1039 msg
+= source
->GetClassInfo()->GetClassName();
1040 PyErr_SetString(PyExc_NameError
, msg
.mbc_str());
1044 } else { // source was NULL so return None.
1045 Py_INCREF(Py_None
); target
= Py_None
;
1051 PyObject
* wxPyMake_wxSizer(wxSizer
* source
, bool setThisOwn
) {
1052 PyObject
* target
= NULL
;
1054 if (source
&& wxIsKindOf(source
, wxSizer
)) {
1055 // If it's derived from wxSizer then there may already be a pointer to
1056 // a Python object that we can use in the OOR data.
1057 wxSizer
* sz
= (wxSizer
*)source
;
1058 wxPyOORClientData
* data
= (wxPyOORClientData
*)sz
->GetClientObject();
1060 target
= data
->m_obj
;
1066 target
= wxPyMake_wxObject(source
, setThisOwn
, false);
1067 if (target
!= Py_None
)
1068 ((wxSizer
*)source
)->SetClientObject(new wxPyOORClientData(target
));
1074 //---------------------------------------------------------------------------
1077 #ifdef WXP_WITH_THREAD
1078 #if !wxPyUSE_GIL_STATE
1081 unsigned long wxPyGetCurrentThreadId() {
1082 return wxThread::GetCurrentId();
1085 static wxPyThreadState gs_shutdownTState
;
1088 wxPyThreadState
* wxPyGetThreadState() {
1089 if (wxPyTMutex
== NULL
) // Python is shutting down...
1090 return &gs_shutdownTState
;
1092 unsigned long ctid
= wxPyGetCurrentThreadId();
1093 wxPyThreadState
* tstate
= NULL
;
1096 for(size_t i
=0; i
< wxPyTStates
->GetCount(); i
++) {
1097 wxPyThreadState
& info
= wxPyTStates
->Item(i
);
1098 if (info
.tid
== ctid
) {
1103 wxPyTMutex
->Unlock();
1104 wxASSERT_MSG(tstate
, wxT("PyThreadState should not be NULL!"));
1110 void wxPySaveThreadState(PyThreadState
* tstate
) {
1111 if (wxPyTMutex
== NULL
) { // Python is shutting down, assume a single thread...
1112 gs_shutdownTState
.tstate
= tstate
;
1115 unsigned long ctid
= wxPyGetCurrentThreadId();
1117 for(size_t i
=0; i
< wxPyTStates
->GetCount(); i
++) {
1118 wxPyThreadState
& info
= wxPyTStates
->Item(i
);
1119 if (info
.tid
== ctid
) {
1121 if (info
.tstate
!= tstate
)
1122 wxLogMessage("*** tstate mismatch!???");
1124 info
.tstate
= tstate
; // allow for transient tstates
1125 // Normally it will never change, but apparently COM callbacks
1126 // (i.e. ActiveX controls) will (incorrectly IMHO) use a transient
1127 // tstate which will then be garbage the next time we try to use
1130 wxPyTMutex
->Unlock();
1134 // not found, so add it...
1135 wxPyTStates
->Add(new wxPyThreadState(ctid
, tstate
));
1136 wxPyTMutex
->Unlock();
1144 // Calls from Python to wxWindows code are wrapped in calls to these
1147 PyThreadState
* wxPyBeginAllowThreads() {
1148 #ifdef WXP_WITH_THREAD
1149 PyThreadState
* saved
= PyEval_SaveThread(); // Py_BEGIN_ALLOW_THREADS;
1150 #if !wxPyUSE_GIL_STATE
1151 wxPySaveThreadState(saved
);
1159 void wxPyEndAllowThreads(PyThreadState
* saved
) {
1160 #ifdef WXP_WITH_THREAD
1161 PyEval_RestoreThread(saved
); // Py_END_ALLOW_THREADS;
1167 // Calls from wxWindows back to Python code, or even any PyObject
1168 // manipulations, PyDECREF's and etc. are wrapped in calls to these functions:
1170 wxPyBlock_t
wxPyBeginBlockThreads() {
1171 #ifdef WXP_WITH_THREAD
1172 #if wxPyUSE_GIL_STATE
1173 PyGILState_STATE state
= PyGILState_Ensure();
1176 PyThreadState
*current
= _PyThreadState_Current
;
1178 // Only block if there wasn't already a tstate, or if the current one is
1179 // not the one we are wanting to change to. This should prevent deadlock
1180 // if there are nested calls to wxPyBeginBlockThreads
1181 wxPyBlock_t blocked
= false;
1182 wxPyThreadState
* tstate
= wxPyGetThreadState();
1183 if (current
!= tstate
->tstate
) {
1184 PyEval_RestoreThread(tstate
->tstate
);
1195 void wxPyEndBlockThreads(wxPyBlock_t blocked
) {
1196 #ifdef WXP_WITH_THREAD
1197 #if wxPyUSE_GIL_STATE
1198 PyGILState_Release(blocked
);
1200 // Only unblock if we blocked in the last call to wxPyBeginBlockThreads.
1201 // The value of blocked passed in needs to be the same as that returned
1202 // from wxPyBeginBlockThreads at the same nesting level.
1204 PyEval_SaveThread();
1211 //---------------------------------------------------------------------------
1212 // wxPyInputStream and wxPyCBInputStream methods
1215 void wxPyInputStream::close() {
1216 /* do nothing for now */
1219 void wxPyInputStream::flush() {
1220 /* do nothing for now */
1223 bool wxPyInputStream::eof() {
1225 return m_wxis
->Eof();
1230 wxPyInputStream::~wxPyInputStream() {
1238 PyObject
* wxPyInputStream::read(int size
) {
1239 PyObject
* obj
= NULL
;
1241 const int BUFSIZE
= 1024;
1243 // check if we have a real wxInputStream to work with
1245 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1246 PyErr_SetString(PyExc_IOError
, "no valid C-wxInputStream");
1247 wxPyEndBlockThreads(blocked
);
1252 // read while bytes are available on the stream
1253 while ( m_wxis
->CanRead() ) {
1254 m_wxis
->Read(buf
.GetAppendBuf(BUFSIZE
), BUFSIZE
);
1255 buf
.UngetAppendBuf(m_wxis
->LastRead());
1258 } else { // Read only size number of characters
1259 m_wxis
->Read(buf
.GetWriteBuf(size
), size
);
1260 buf
.UngetWriteBuf(m_wxis
->LastRead());
1264 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1265 wxStreamError err
= m_wxis
->GetLastError();
1266 if (err
!= wxSTREAM_NO_ERROR
&& err
!= wxSTREAM_EOF
) {
1267 PyErr_SetString(PyExc_IOError
,"IOError in wxInputStream");
1270 // We use only strings for the streams, not unicode
1271 obj
= PyString_FromStringAndSize(buf
, buf
.GetDataLen());
1273 wxPyEndBlockThreads(blocked
);
1278 PyObject
* wxPyInputStream::readline(int size
) {
1279 PyObject
* obj
= NULL
;
1284 // check if we have a real wxInputStream to work with
1286 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1287 PyErr_SetString(PyExc_IOError
,"no valid C-wxInputStream");
1288 wxPyEndBlockThreads(blocked
);
1292 // read until \n or byte limit reached
1293 for (i
=ch
=0; (ch
!= '\n') && (m_wxis
->CanRead()) && ((size
< 0) || (i
< size
)); i
++) {
1294 ch
= m_wxis
->GetC();
1299 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1300 wxStreamError err
= m_wxis
->GetLastError();
1301 if (err
!= wxSTREAM_NO_ERROR
&& err
!= wxSTREAM_EOF
) {
1302 PyErr_SetString(PyExc_IOError
,"IOError in wxInputStream");
1305 // We use only strings for the streams, not unicode
1306 obj
= PyString_FromStringAndSize((char*)buf
.GetData(), buf
.GetDataLen());
1308 wxPyEndBlockThreads(blocked
);
1313 PyObject
* wxPyInputStream::readlines(int sizehint
) {
1316 // check if we have a real wxInputStream to work with
1318 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1319 PyErr_SetString(PyExc_IOError
,"no valid C-wxInputStream");
1320 wxPyEndBlockThreads(blocked
);
1325 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1326 pylist
= PyList_New(0);
1327 wxPyEndBlockThreads(blocked
);
1330 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1332 wxPyEndBlockThreads(blocked
);
1336 // read sizehint bytes or until EOF
1338 for (i
=0; (m_wxis
->CanRead()) && ((sizehint
< 0) || (i
< sizehint
));) {
1339 PyObject
* s
= this->readline();
1341 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1343 wxPyEndBlockThreads(blocked
);
1346 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1347 PyList_Append(pylist
, s
);
1348 i
+= PyString_Size(s
);
1349 wxPyEndBlockThreads(blocked
);
1353 wxStreamError err
= m_wxis
->GetLastError();
1354 if (err
!= wxSTREAM_NO_ERROR
&& err
!= wxSTREAM_EOF
) {
1355 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1357 PyErr_SetString(PyExc_IOError
,"IOError in wxInputStream");
1358 wxPyEndBlockThreads(blocked
);
1366 void wxPyInputStream::seek(int offset
, int whence
) {
1368 m_wxis
->SeekI(offset
, wxSeekMode(whence
));
1371 int wxPyInputStream::tell(){
1373 return m_wxis
->TellI();
1380 wxPyCBInputStream::wxPyCBInputStream(PyObject
*r
, PyObject
*s
, PyObject
*t
, bool block
)
1381 : wxInputStream(), m_read(r
), m_seek(s
), m_tell(t
), m_block(block
)
1384 wxPyCBInputStream::wxPyCBInputStream(const wxPyCBInputStream
& other
)
1386 m_read
= other
.m_read
;
1387 m_seek
= other
.m_seek
;
1388 m_tell
= other
.m_tell
;
1389 m_block
= other
.m_block
;
1396 wxPyCBInputStream::~wxPyCBInputStream() {
1397 wxPyBlock_t blocked
;
1398 if (m_block
) blocked
= wxPyBeginBlockThreads();
1402 if (m_block
) wxPyEndBlockThreads(blocked
);
1406 wxPyCBInputStream
* wxPyCBInputStream::create(PyObject
*py
, bool block
) {
1407 wxPyBlock_t blocked
;
1408 if (block
) blocked
= wxPyBeginBlockThreads();
1410 PyObject
* read
= getMethod(py
, "read");
1411 PyObject
* seek
= getMethod(py
, "seek");
1412 PyObject
* tell
= getMethod(py
, "tell");
1415 PyErr_SetString(PyExc_TypeError
, "Not a file-like object");
1419 if (block
) wxPyEndBlockThreads(blocked
);
1423 if (block
) wxPyEndBlockThreads(blocked
);
1424 return new wxPyCBInputStream(read
, seek
, tell
, block
);
1428 wxPyCBInputStream
* wxPyCBInputStream_create(PyObject
*py
, bool block
) {
1429 return wxPyCBInputStream::create(py
, block
);
1432 wxPyCBInputStream
* wxPyCBInputStream_copy(wxPyCBInputStream
* other
) {
1433 return new wxPyCBInputStream(*other
);
1436 PyObject
* wxPyCBInputStream::getMethod(PyObject
* py
, char* name
) {
1437 if (!PyObject_HasAttrString(py
, name
))
1439 PyObject
* o
= PyObject_GetAttrString(py
, name
);
1440 if (!PyMethod_Check(o
) && !PyCFunction_Check(o
)) {
1448 wxFileOffset
wxPyCBInputStream::GetLength() const {
1449 wxPyCBInputStream
* self
= (wxPyCBInputStream
*)this; // cast off const
1450 if (m_seek
&& m_tell
) {
1451 wxFileOffset temp
= self
->OnSysTell();
1452 wxFileOffset ret
= self
->OnSysSeek(0, wxFromEnd
);
1453 self
->OnSysSeek(temp
, wxFromStart
);
1457 return wxInvalidOffset
;
1461 size_t wxPyCBInputStream::OnSysRead(void *buffer
, size_t bufsize
) {
1465 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1466 PyObject
* arglist
= Py_BuildValue("(i)", bufsize
);
1467 PyObject
* result
= PyEval_CallObject(m_read
, arglist
);
1471 if ((result
!= NULL
) && PyString_Check(result
)) {
1472 o
= PyString_Size(result
);
1474 m_lasterror
= wxSTREAM_EOF
;
1477 memcpy((char*)buffer
, PyString_AsString(result
), o
); // strings only, not unicode...
1482 m_lasterror
= wxSTREAM_READ_ERROR
;
1483 wxPyEndBlockThreads(blocked
);
1487 size_t wxPyCBInputStream::OnSysWrite(const void *buffer
, size_t bufsize
) {
1488 m_lasterror
= wxSTREAM_WRITE_ERROR
;
1493 wxFileOffset
wxPyCBInputStream::OnSysSeek(wxFileOffset off
, wxSeekMode mode
) {
1494 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1495 PyObject
* arglist
= PyTuple_New(2);
1497 if (sizeof(wxFileOffset
) > sizeof(long))
1498 // wxFileOffset is a 64-bit value...
1499 PyTuple_SET_ITEM(arglist
, 0, PyLong_FromLongLong(off
));
1501 PyTuple_SET_ITEM(arglist
, 0, PyInt_FromLong(off
));
1503 PyTuple_SET_ITEM(arglist
, 1, PyInt_FromLong(mode
));
1506 PyObject
* result
= PyEval_CallObject(m_seek
, arglist
);
1509 wxPyEndBlockThreads(blocked
);
1514 wxFileOffset
wxPyCBInputStream::OnSysTell() const {
1515 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1516 PyObject
* arglist
= Py_BuildValue("()");
1517 PyObject
* result
= PyEval_CallObject(m_tell
, arglist
);
1520 if (result
!= NULL
) {
1521 if (PyLong_Check(result
))
1522 o
= PyLong_AsLongLong(result
);
1524 o
= PyInt_AsLong(result
);
1527 wxPyEndBlockThreads(blocked
);
1531 //----------------------------------------------------------------------
1533 IMPLEMENT_ABSTRACT_CLASS(wxPyCallback
, wxObject
);
1535 wxPyCallback::wxPyCallback(PyObject
* func
) {
1540 wxPyCallback::wxPyCallback(const wxPyCallback
& other
) {
1541 m_func
= other
.m_func
;
1545 wxPyCallback::~wxPyCallback() {
1546 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1548 wxPyEndBlockThreads(blocked
);
1552 #define wxPy_PRECALLINIT "_preCallInit"
1553 #define wxPy_POSTCALLCLEANUP "_postCallCleanup"
1555 // This function is used for all events destined for Python event handlers.
1556 void wxPyCallback::EventThunker(wxEvent
& event
) {
1557 wxPyCallback
* cb
= (wxPyCallback
*)event
.m_callbackUserData
;
1558 PyObject
* func
= cb
->m_func
;
1562 bool checkSkip
= false;
1564 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1565 wxString className
= event
.GetClassInfo()->GetClassName();
1567 // If the event is one of these types then pass the original
1568 // event object instead of the one passed to us.
1569 if ( className
== wxT("wxPyEvent") ) {
1570 arg
= ((wxPyEvent
*)&event
)->GetSelf();
1571 checkSkip
= ((wxPyEvent
*)&event
)->GetCloned();
1573 else if ( className
== wxT("wxPyCommandEvent") ) {
1574 arg
= ((wxPyCommandEvent
*)&event
)->GetSelf();
1575 checkSkip
= ((wxPyCommandEvent
*)&event
)->GetCloned();
1578 arg
= wxPyConstructObject((void*)&event
, className
);
1584 // "intern" the pre/post method names to speed up the HasAttr
1585 static PyObject
* s_preName
= NULL
;
1586 static PyObject
* s_postName
= NULL
;
1587 if (s_preName
== NULL
) {
1588 s_preName
= PyString_FromString(wxPy_PRECALLINIT
);
1589 s_postName
= PyString_FromString(wxPy_POSTCALLCLEANUP
);
1592 // Check if the event object needs some preinitialization
1593 if (PyObject_HasAttr(arg
, s_preName
)) {
1594 result
= PyObject_CallMethodObjArgs(arg
, s_preName
, arg
, NULL
);
1596 Py_DECREF(result
); // result is ignored, but we still need to decref it
1597 PyErr_Clear(); // Just in case...
1603 // Call the event handler, passing the event object
1604 tuple
= PyTuple_New(1);
1605 PyTuple_SET_ITEM(tuple
, 0, arg
); // steals ref to arg
1606 result
= PyEval_CallObject(func
, tuple
);
1608 Py_DECREF(result
); // result is ignored, but we still need to decref it
1609 PyErr_Clear(); // Just in case...
1614 // Check if the event object needs some post cleanup
1615 if (PyObject_HasAttr(arg
, s_postName
)) {
1616 result
= PyObject_CallMethodObjArgs(arg
, s_postName
, arg
, NULL
);
1618 Py_DECREF(result
); // result is ignored, but we still need to decref it
1619 PyErr_Clear(); // Just in case...
1626 // if the event object was one of our special types and
1627 // it had been cloned, then we need to extract the Skipped
1628 // value from the original and set it in the clone.
1629 result
= PyObject_CallMethod(arg
, "GetSkipped", "");
1631 event
.Skip(PyInt_AsLong(result
));
1639 wxPyEndBlockThreads(blocked
);
1643 //----------------------------------------------------------------------
1645 wxPyCallbackHelper::wxPyCallbackHelper(const wxPyCallbackHelper
& other
) {
1647 m_self
= other
.m_self
;
1648 m_class
= other
.m_class
;
1656 void wxPyCallbackHelper::setSelf(PyObject
* self
, PyObject
* klass
, int incref
) {
1667 #if PYTHON_API_VERSION >= 1011
1669 // Prior to Python 2.2 PyMethod_GetClass returned the class object
1670 // in which the method was defined. Starting with 2.2 it returns
1671 // "class that asked for the method" which seems totally bogus to me
1672 // but apprently it fixes some obscure problem waiting to happen in
1673 // Python. Since the API was not documented Guido and the gang felt
1674 // safe in changing it. Needless to say that totally screwed up the
1675 // logic below in wxPyCallbackHelper::findCallback, hence this icky
1676 // code to find the class where the method is actually defined...
1679 PyObject
* PyFindClassWithAttr(PyObject
*klass
, PyObject
*name
)
1683 if (PyType_Check(klass
)) { // new style classes
1684 // This code is borrowed/adapted from _PyType_Lookup in typeobject.c
1685 PyTypeObject
* type
= (PyTypeObject
*)klass
;
1686 PyObject
*mro
, *res
, *base
, *dict
;
1687 /* Look in tp_dict of types in MRO */
1689 assert(PyTuple_Check(mro
));
1690 n
= PyTuple_GET_SIZE(mro
);
1691 for (i
= 0; i
< n
; i
++) {
1692 base
= PyTuple_GET_ITEM(mro
, i
);
1693 if (PyClass_Check(base
))
1694 dict
= ((PyClassObject
*)base
)->cl_dict
;
1696 assert(PyType_Check(base
));
1697 dict
= ((PyTypeObject
*)base
)->tp_dict
;
1699 assert(dict
&& PyDict_Check(dict
));
1700 res
= PyDict_GetItem(dict
, name
);
1707 else if (PyClass_Check(klass
)) { // old style classes
1708 // This code is borrowed/adapted from class_lookup in classobject.c
1709 PyClassObject
* cp
= (PyClassObject
*)klass
;
1710 PyObject
*value
= PyDict_GetItem(cp
->cl_dict
, name
);
1711 if (value
!= NULL
) {
1712 return (PyObject
*)cp
;
1714 n
= PyTuple_Size(cp
->cl_bases
);
1715 for (i
= 0; i
< n
; i
++) {
1716 PyObject
* base
= PyTuple_GetItem(cp
->cl_bases
, i
);
1717 PyObject
*v
= PyFindClassWithAttr(base
, name
);
1729 PyObject
* PyMethod_GetDefiningClass(PyObject
* method
, const char* name
)
1731 PyObject
* mgc
= PyMethod_GET_CLASS(method
);
1733 #if PYTHON_API_VERSION <= 1010 // prior to Python 2.2, the easy way
1735 #else // 2.2 and after, the hard way...
1737 PyObject
* nameo
= PyString_FromString(name
);
1738 PyObject
* klass
= PyFindClassWithAttr(mgc
, nameo
);
1746 bool wxPyCallbackHelper::findCallback(const char* name
) const {
1747 wxPyCallbackHelper
* self
= (wxPyCallbackHelper
*)this; // cast away const
1748 self
->m_lastFound
= NULL
;
1750 // If the object (m_self) has an attibute of the given name...
1751 if (m_self
&& PyObject_HasAttrString(m_self
, (char*)name
)) {
1752 PyObject
*method
, *klass
;
1753 method
= PyObject_GetAttrString(m_self
, (char*)name
);
1755 // ...and if that attribute is a method, and if that method's class is
1756 // not from a base class...
1757 if (PyMethod_Check(method
) &&
1758 (klass
= PyMethod_GetDefiningClass(method
, (char*)name
)) != NULL
&&
1759 ((klass
== m_class
) || PyObject_IsSubclass(klass
, m_class
))) {
1761 // ...then we'll save a pointer to the method so callCallback can call it.
1762 self
->m_lastFound
= method
;
1768 return m_lastFound
!= NULL
;
1772 int wxPyCallbackHelper::callCallback(PyObject
* argTuple
) const {
1776 result
= callCallbackObj(argTuple
);
1777 if (result
) { // Assumes an integer return type...
1778 retval
= PyInt_AsLong(result
);
1780 PyErr_Clear(); // forget about it if it's not...
1785 // Invoke the Python callable object, returning the raw PyObject return
1786 // value. Caller should DECREF the return value and also manage the GIL.
1787 PyObject
* wxPyCallbackHelper::callCallbackObj(PyObject
* argTuple
) const {
1790 // Save a copy of the pointer in case the callback generates another
1791 // callback. In that case m_lastFound will have a different value when
1792 // it gets back here...
1793 PyObject
* method
= m_lastFound
;
1795 result
= PyEval_CallObject(method
, argTuple
);
1796 Py_DECREF(argTuple
);
1805 void wxPyCBH_setCallbackInfo(wxPyCallbackHelper
& cbh
, PyObject
* self
, PyObject
* klass
, int incref
) {
1806 cbh
.setSelf(self
, klass
, incref
);
1809 bool wxPyCBH_findCallback(const wxPyCallbackHelper
& cbh
, const char* name
) {
1810 return cbh
.findCallback(name
);
1813 int wxPyCBH_callCallback(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
) {
1814 return cbh
.callCallback(argTuple
);
1817 PyObject
* wxPyCBH_callCallbackObj(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
) {
1818 return cbh
.callCallbackObj(argTuple
);
1822 void wxPyCBH_delete(wxPyCallbackHelper
* cbh
) {
1823 if (cbh
->m_incRef
) {
1824 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1825 Py_XDECREF(cbh
->m_self
);
1826 Py_XDECREF(cbh
->m_class
);
1827 wxPyEndBlockThreads(blocked
);
1831 //---------------------------------------------------------------------------
1832 //---------------------------------------------------------------------------
1833 // These event classes can be derived from in Python and passed through the event
1834 // system without losing anything. They do this by keeping a reference to
1835 // themselves and some special case handling in wxPyCallback::EventThunker.
1838 wxPyEvtSelfRef::wxPyEvtSelfRef() {
1839 //m_self = Py_None; // **** We don't do normal ref counting to prevent
1840 //Py_INCREF(m_self); // circular loops...
1844 wxPyEvtSelfRef::~wxPyEvtSelfRef() {
1845 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1848 wxPyEndBlockThreads(blocked
);
1851 void wxPyEvtSelfRef::SetSelf(PyObject
* self
, bool clone
) {
1852 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1860 wxPyEndBlockThreads(blocked
);
1863 PyObject
* wxPyEvtSelfRef::GetSelf() const {
1869 IMPLEMENT_ABSTRACT_CLASS(wxPyEvent
, wxEvent
);
1870 IMPLEMENT_ABSTRACT_CLASS(wxPyCommandEvent
, wxCommandEvent
);
1873 wxPyEvent::wxPyEvent(int winid
, wxEventType commandType
)
1874 : wxEvent(winid
, commandType
) {
1878 wxPyEvent::wxPyEvent(const wxPyEvent
& evt
)
1881 SetSelf(evt
.m_self
, true);
1885 wxPyEvent::~wxPyEvent() {
1889 wxPyCommandEvent::wxPyCommandEvent(wxEventType commandType
, int id
)
1890 : wxCommandEvent(commandType
, id
) {
1894 wxPyCommandEvent::wxPyCommandEvent(const wxPyCommandEvent
& evt
)
1895 : wxCommandEvent(evt
)
1897 SetSelf(evt
.m_self
, true);
1901 wxPyCommandEvent::~wxPyCommandEvent() {
1908 //---------------------------------------------------------------------------
1909 //---------------------------------------------------------------------------
1910 // Convert a wxList to a Python List, only works for lists of wxObjects
1912 PyObject
* wxPy_ConvertList(wxListBase
* listbase
) {
1913 wxList
* list
= (wxList
*)listbase
; // this is probably bad...
1917 wxNode
* node
= list
->GetFirst();
1919 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1920 pyList
= PyList_New(0);
1922 wxObj
= node
->GetData();
1923 pyObj
= wxPyMake_wxObject(wxObj
,false);
1924 PyList_Append(pyList
, pyObj
);
1925 node
= node
->GetNext();
1927 wxPyEndBlockThreads(blocked
);
1931 //----------------------------------------------------------------------
1933 long wxPyGetWinHandle(wxWindow
* win
) {
1936 return (long)win
->GetHandle();
1939 #if defined(__WXGTK__) || defined(__WXX11)
1940 return (long)GetXWindow(win
);
1944 //return (long)MAC_WXHWND(win->MacGetTopLevelWindowRef());
1945 return (long)win
->GetHandle();
1951 //----------------------------------------------------------------------
1952 // Some helper functions for typemaps in my_typemaps.i, so they won't be
1953 // included in every file over and over again...
1955 wxString
* wxString_in_helper(PyObject
* source
) {
1956 wxString
* target
= NULL
;
1958 if (!PyString_Check(source
) && !PyUnicode_Check(source
)) {
1959 PyErr_SetString(PyExc_TypeError
, "String or Unicode type required");
1963 PyObject
* uni
= source
;
1964 if (PyString_Check(source
)) {
1965 uni
= PyUnicode_FromEncodedObject(source
, wxPyDefaultEncoding
, "strict");
1966 if (PyErr_Occurred()) return NULL
;
1968 target
= new wxString();
1969 size_t len
= PyUnicode_GET_SIZE(uni
);
1971 PyUnicode_AsWideChar((PyUnicodeObject
*)uni
, target
->GetWriteBuf(len
), len
);
1972 target
->UngetWriteBuf(len
);
1975 if (PyString_Check(source
))
1978 // Convert to a string object if it isn't already, then to wxString
1979 PyObject
* str
= source
;
1980 if (PyUnicode_Check(source
)) {
1981 str
= PyUnicode_AsEncodedString(source
, wxPyDefaultEncoding
, "strict");
1982 if (PyErr_Occurred()) return NULL
;
1984 else if (!PyString_Check(source
)) {
1985 str
= PyObject_Str(source
);
1986 if (PyErr_Occurred()) return NULL
;
1988 char* tmpPtr
; int tmpSize
;
1989 PyString_AsStringAndSize(str
, &tmpPtr
, &tmpSize
);
1990 target
= new wxString(tmpPtr
, tmpSize
);
1992 if (!PyString_Check(source
))
1994 #endif // wxUSE_UNICODE
2000 // Similar to above except doesn't use "new" and doesn't set an exception
2001 wxString
Py2wxString(PyObject
* source
)
2006 // Convert to a unicode object, if not already, then to a wxString
2007 PyObject
* uni
= source
;
2008 if (!PyUnicode_Check(source
)) {
2009 uni
= PyUnicode_FromEncodedObject(source
, wxPyDefaultEncoding
, "strict");
2010 if (PyErr_Occurred()) return wxEmptyString
; // TODO: should we PyErr_Clear?
2012 size_t len
= PyUnicode_GET_SIZE(uni
);
2014 PyUnicode_AsWideChar((PyUnicodeObject
*)uni
, target
.GetWriteBuf(len
), len
);
2015 target
.UngetWriteBuf();
2018 if (!PyUnicode_Check(source
))
2021 // Convert to a string object if it isn't already, then to wxString
2022 PyObject
* str
= source
;
2023 if (PyUnicode_Check(source
)) {
2024 str
= PyUnicode_AsEncodedString(source
, wxPyDefaultEncoding
, "strict");
2025 if (PyErr_Occurred()) return wxEmptyString
; // TODO: should we PyErr_Clear?
2027 else if (!PyString_Check(source
)) {
2028 str
= PyObject_Str(source
);
2029 if (PyErr_Occurred()) return wxEmptyString
; // TODO: should we PyErr_Clear?
2031 char* tmpPtr
; int tmpSize
;
2032 PyString_AsStringAndSize(str
, &tmpPtr
, &tmpSize
);
2033 target
= wxString(tmpPtr
, tmpSize
);
2035 if (!PyString_Check(source
))
2037 #endif // wxUSE_UNICODE
2043 // Make either a Python String or Unicode object, depending on build mode
2044 PyObject
* wx2PyString(const wxString
& src
)
2048 str
= PyUnicode_FromWideChar(src
.c_str(), src
.Len());
2050 str
= PyString_FromStringAndSize(src
.c_str(), src
.Len());
2057 void wxSetDefaultPyEncoding(const char* encoding
)
2059 strncpy(wxPyDefaultEncoding
, encoding
, DEFAULTENCODING_SIZE
);
2062 const char* wxGetDefaultPyEncoding()
2064 return wxPyDefaultEncoding
;
2067 //----------------------------------------------------------------------
2070 byte
* byte_LIST_helper(PyObject
* source
) {
2071 if (!PyList_Check(source
)) {
2072 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2075 int count
= PyList_Size(source
);
2076 byte
* temp
= new byte
[count
];
2078 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2081 for (int x
=0; x
<count
; x
++) {
2082 PyObject
* o
= PyList_GetItem(source
, x
);
2083 if (! PyInt_Check(o
)) {
2084 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
2087 temp
[x
] = (byte
)PyInt_AsLong(o
);
2093 int* int_LIST_helper(PyObject
* source
) {
2094 if (!PyList_Check(source
)) {
2095 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2098 int count
= PyList_Size(source
);
2099 int* temp
= new int[count
];
2101 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2104 for (int x
=0; x
<count
; x
++) {
2105 PyObject
* o
= PyList_GetItem(source
, x
);
2106 if (! PyInt_Check(o
)) {
2107 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
2110 temp
[x
] = PyInt_AsLong(o
);
2116 long* long_LIST_helper(PyObject
* source
) {
2117 if (!PyList_Check(source
)) {
2118 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2121 int count
= PyList_Size(source
);
2122 long* temp
= new long[count
];
2124 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2127 for (int x
=0; x
<count
; x
++) {
2128 PyObject
* o
= PyList_GetItem(source
, x
);
2129 if (! PyInt_Check(o
)) {
2130 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
2133 temp
[x
] = PyInt_AsLong(o
);
2139 char** string_LIST_helper(PyObject
* source
) {
2140 if (!PyList_Check(source
)) {
2141 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2144 int count
= PyList_Size(source
);
2145 char** temp
= new char*[count
];
2147 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2150 for (int x
=0; x
<count
; x
++) {
2151 PyObject
* o
= PyList_GetItem(source
, x
);
2152 if (! PyString_Check(o
)) {
2153 PyErr_SetString(PyExc_TypeError
, "Expected a list of strings.");
2156 temp
[x
] = PyString_AsString(o
);
2161 //--------------------------------
2162 // Part of patch from Tim Hochberg
2163 static inline bool wxPointFromObjects(PyObject
* o1
, PyObject
* o2
, wxPoint
* point
) {
2164 if (PyInt_Check(o1
) && PyInt_Check(o2
)) {
2165 point
->x
= PyInt_AS_LONG(o1
);
2166 point
->y
= PyInt_AS_LONG(o2
);
2169 if (PyFloat_Check(o1
) && PyFloat_Check(o2
)) {
2170 point
->x
= (int)PyFloat_AS_DOUBLE(o1
);
2171 point
->y
= (int)PyFloat_AS_DOUBLE(o2
);
2174 if (wxPySwigInstance_Check(o1
) || wxPySwigInstance_Check(o2
)) { // TODO: Why???
2175 // Disallow instances because they can cause havok
2178 if (PyNumber_Check(o1
) && PyNumber_Check(o2
)) {
2179 // I believe this excludes instances, so this should be safe without INCREFFing o1 and o2
2180 point
->x
= PyInt_AsLong(o1
);
2181 point
->y
= PyInt_AsLong(o2
);
2188 wxPoint
* wxPoint_LIST_helper(PyObject
* source
, int *count
) {
2189 // Putting all of the declarations here allows
2190 // us to put the error handling all in one place.
2193 PyObject
*o
, *o1
, *o2
;
2194 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
2196 if (!PySequence_Check(source
)) {
2200 // The length of the sequence is returned in count.
2201 *count
= PySequence_Length(source
);
2206 temp
= new wxPoint
[*count
];
2208 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2211 for (x
=0; x
<*count
; x
++) {
2212 // Get an item: try fast way first.
2214 o
= PySequence_Fast_GET_ITEM(source
, x
);
2217 o
= PySequence_GetItem(source
, x
);
2223 // Convert o to wxPoint.
2224 if ((PyTuple_Check(o
) && PyTuple_GET_SIZE(o
) == 2) ||
2225 (PyList_Check(o
) && PyList_GET_SIZE(o
) == 2)) {
2226 o1
= PySequence_Fast_GET_ITEM(o
, 0);
2227 o2
= PySequence_Fast_GET_ITEM(o
, 1);
2228 if (!wxPointFromObjects(o1
, o2
, &temp
[x
])) {
2232 else if (wxPySwigInstance_Check(o
)) {
2234 if (! wxPyConvertSwigPtr(o
, (void **)&pt
, wxT("wxPoint"))) {
2239 else if (PySequence_Check(o
) && PySequence_Length(o
) == 2) {
2240 o1
= PySequence_GetItem(o
, 0);
2241 o2
= PySequence_GetItem(o
, 1);
2242 if (!wxPointFromObjects(o1
, o2
, &temp
[x
])) {
2266 PyErr_SetString(PyExc_TypeError
, "Expected a sequence of length-2 sequences or wxPoints.");
2270 //------------------------------
2273 wxBitmap
** wxBitmap_LIST_helper(PyObject
* source
) {
2274 if (!PyList_Check(source
)) {
2275 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2278 int count
= PyList_Size(source
);
2279 wxBitmap
** temp
= new wxBitmap
*[count
];
2281 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2284 for (int x
=0; x
<count
; x
++) {
2285 PyObject
* o
= PyList_GetItem(source
, x
);
2286 if (wxPySwigInstance_Check(o
)) {
2288 if (! wxPyConvertSwigPtr(o
, (void **) &pt
, wxT("wxBitmap"))) {
2289 PyErr_SetString(PyExc_TypeError
,"Expected wxBitmap.");
2295 PyErr_SetString(PyExc_TypeError
, "Expected a list of wxBitmaps.");
2304 wxString
* wxString_LIST_helper(PyObject
* source
) {
2305 if (!PyList_Check(source
)) {
2306 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2309 int count
= PyList_Size(source
);
2310 wxString
* temp
= new wxString
[count
];
2312 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2315 for (int x
=0; x
<count
; x
++) {
2316 PyObject
* o
= PyList_GetItem(source
, x
);
2317 #if PYTHON_API_VERSION >= 1009
2318 if (! PyString_Check(o
) && ! PyUnicode_Check(o
)) {
2319 PyErr_SetString(PyExc_TypeError
, "Expected a list of string or unicode objects.");
2323 if (! PyString_Check(o
)) {
2324 PyErr_SetString(PyExc_TypeError
, "Expected a list of strings.");
2329 wxString
* pStr
= wxString_in_helper(o
);
2337 wxAcceleratorEntry
* wxAcceleratorEntry_LIST_helper(PyObject
* source
) {
2338 if (!PyList_Check(source
)) {
2339 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2342 int count
= PyList_Size(source
);
2343 wxAcceleratorEntry
* temp
= new wxAcceleratorEntry
[count
];
2345 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2348 for (int x
=0; x
<count
; x
++) {
2349 PyObject
* o
= PyList_GetItem(source
, x
);
2350 if (wxPySwigInstance_Check(o
)) {
2351 wxAcceleratorEntry
* ae
;
2352 if (! wxPyConvertSwigPtr(o
, (void **) &ae
, wxT("wxAcceleratorEntry"))) {
2353 PyErr_SetString(PyExc_TypeError
,"Expected wxAcceleratorEntry.");
2358 else if (PyTuple_Check(o
)) {
2359 PyObject
* o1
= PyTuple_GetItem(o
, 0);
2360 PyObject
* o2
= PyTuple_GetItem(o
, 1);
2361 PyObject
* o3
= PyTuple_GetItem(o
, 2);
2362 temp
[x
].Set(PyInt_AsLong(o1
), PyInt_AsLong(o2
), PyInt_AsLong(o3
));
2365 PyErr_SetString(PyExc_TypeError
, "Expected a list of 3-tuples or wxAcceleratorEntry objects.");
2373 wxPen
** wxPen_LIST_helper(PyObject
* source
) {
2374 if (!PyList_Check(source
)) {
2375 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
2378 int count
= PyList_Size(source
);
2379 wxPen
** temp
= new wxPen
*[count
];
2381 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
2384 for (int x
=0; x
<count
; x
++) {
2385 PyObject
* o
= PyList_GetItem(source
, x
);
2386 if (wxPySwigInstance_Check(o
)) {
2388 if (! wxPyConvertSwigPtr(o
, (void **)&pt
, wxT("wxPen"))) {
2390 PyErr_SetString(PyExc_TypeError
,"Expected wxPen.");
2397 PyErr_SetString(PyExc_TypeError
, "Expected a list of wxPens.");
2405 bool wxPy2int_seq_helper(PyObject
* source
, int* i1
, int* i2
) {
2406 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
2409 if (!PySequence_Check(source
) || PySequence_Length(source
) != 2)
2413 o1
= PySequence_Fast_GET_ITEM(source
, 0);
2414 o2
= PySequence_Fast_GET_ITEM(source
, 1);
2417 o1
= PySequence_GetItem(source
, 0);
2418 o2
= PySequence_GetItem(source
, 1);
2421 *i1
= PyInt_AsLong(o1
);
2422 *i2
= PyInt_AsLong(o2
);
2432 bool wxPy4int_seq_helper(PyObject
* source
, int* i1
, int* i2
, int* i3
, int* i4
) {
2433 bool isFast
= PyList_Check(source
) || PyTuple_Check(source
);
2434 PyObject
*o1
, *o2
, *o3
, *o4
;
2436 if (!PySequence_Check(source
) || PySequence_Length(source
) != 4)
2440 o1
= PySequence_Fast_GET_ITEM(source
, 0);
2441 o2
= PySequence_Fast_GET_ITEM(source
, 1);
2442 o3
= PySequence_Fast_GET_ITEM(source
, 2);
2443 o4
= PySequence_Fast_GET_ITEM(source
, 3);
2446 o1
= PySequence_GetItem(source
, 0);
2447 o2
= PySequence_GetItem(source
, 1);
2448 o3
= PySequence_GetItem(source
, 2);
2449 o4
= PySequence_GetItem(source
, 3);
2452 *i1
= PyInt_AsLong(o1
);
2453 *i2
= PyInt_AsLong(o2
);
2454 *i3
= PyInt_AsLong(o3
);
2455 *i4
= PyInt_AsLong(o4
);
2467 //----------------------------------------------------------------------
2469 bool wxPySimple_typecheck(PyObject
* source
, const wxChar
* classname
, int seqLen
)
2473 if (wxPySwigInstance_Check(source
) &&
2474 wxPyConvertSwigPtr(source
, (void **)&ptr
, classname
))
2478 if (PySequence_Check(source
) && PySequence_Length(source
) == seqLen
)
2484 bool wxSize_helper(PyObject
* source
, wxSize
** obj
)
2486 if (source
== Py_None
) {
2487 **obj
= wxSize(-1,-1);
2490 return wxPyTwoIntItem_helper(source
, obj
, wxT("wxSize"));
2494 bool wxPoint_helper(PyObject
* source
, wxPoint
** obj
)
2496 if (source
== Py_None
) {
2497 **obj
= wxPoint(-1,-1);
2500 return wxPyTwoIntItem_helper(source
, obj
, wxT("wxPoint"));
2505 bool wxRealPoint_helper(PyObject
* source
, wxRealPoint
** obj
) {
2507 if (source
== Py_None
) {
2508 **obj
= wxRealPoint(-1,-1);
2512 // If source is an object instance then it may already be the right type
2513 if (wxPySwigInstance_Check(source
)) {
2515 if (! wxPyConvertSwigPtr(source
, (void **)&ptr
, wxT("wxRealPoint")))
2520 // otherwise a 2-tuple of floats is expected
2521 else if (PySequence_Check(source
) && PyObject_Length(source
) == 2) {
2522 PyObject
* o1
= PySequence_GetItem(source
, 0);
2523 PyObject
* o2
= PySequence_GetItem(source
, 1);
2524 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
)) {
2529 **obj
= wxRealPoint(PyFloat_AsDouble(o1
), PyFloat_AsDouble(o2
));
2536 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of floats or a wxRealPoint object.");
2542 bool wxRect_helper(PyObject
* source
, wxRect
** obj
) {
2544 if (source
== Py_None
) {
2545 **obj
= wxRect(-1,-1,-1,-1);
2549 // If source is an object instance then it may already be the right type
2550 if (wxPySwigInstance_Check(source
)) {
2552 if (! wxPyConvertSwigPtr(source
, (void **)&ptr
, wxT("wxRect")))
2557 // otherwise a 4-tuple of integers is expected
2558 else if (PySequence_Check(source
) && PyObject_Length(source
) == 4) {
2559 PyObject
* o1
= PySequence_GetItem(source
, 0);
2560 PyObject
* o2
= PySequence_GetItem(source
, 1);
2561 PyObject
* o3
= PySequence_GetItem(source
, 2);
2562 PyObject
* o4
= PySequence_GetItem(source
, 3);
2563 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
) ||
2564 !PyNumber_Check(o3
) || !PyNumber_Check(o4
)) {
2571 **obj
= wxRect(PyInt_AsLong(o1
), PyInt_AsLong(o2
),
2572 PyInt_AsLong(o3
), PyInt_AsLong(o4
));
2581 PyErr_SetString(PyExc_TypeError
, "Expected a 4-tuple of integers or a wxRect object.");
2587 bool wxColour_helper(PyObject
* source
, wxColour
** obj
) {
2589 if (source
== Py_None
) {
2590 **obj
= wxNullColour
;
2594 // If source is an object instance then it may already be the right type
2595 if (wxPySwigInstance_Check(source
)) {
2597 if (! wxPyConvertSwigPtr(source
, (void **)&ptr
, wxT("wxColour")))
2602 // otherwise check for a string
2603 else if (PyString_Check(source
) || PyUnicode_Check(source
)) {
2604 wxString spec
= Py2wxString(source
);
2605 if (spec
.GetChar(0) == '#' && spec
.Length() == 7) { // It's #RRGGBB
2606 long red
, green
, blue
;
2607 red
= green
= blue
= 0;
2608 spec
.Mid(1,2).ToLong(&red
, 16);
2609 spec
.Mid(3,2).ToLong(&green
, 16);
2610 spec
.Mid(5,2).ToLong(&blue
, 16);
2612 **obj
= wxColour(red
, green
, blue
);
2615 else { // it's a colour name
2616 **obj
= wxColour(spec
);
2620 // last chance: 3-tuple of integers is expected
2621 else if (PySequence_Check(source
) && PyObject_Length(source
) == 3) {
2622 PyObject
* o1
= PySequence_GetItem(source
, 0);
2623 PyObject
* o2
= PySequence_GetItem(source
, 1);
2624 PyObject
* o3
= PySequence_GetItem(source
, 2);
2625 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
) || !PyNumber_Check(o3
)) {
2631 **obj
= wxColour(PyInt_AsLong(o1
), PyInt_AsLong(o2
), PyInt_AsLong(o3
));
2639 PyErr_SetString(PyExc_TypeError
,
2640 "Expected a wxColour object or a string containing a colour name or '#RRGGBB'.");
2645 bool wxColour_typecheck(PyObject
* source
) {
2647 if (wxPySimple_typecheck(source
, wxT("wxColour"), 3))
2650 if (PyString_Check(source
) || PyUnicode_Check(source
))
2658 bool wxPoint2D_helper(PyObject
* source
, wxPoint2D
** obj
) {
2660 if (source
== Py_None
) {
2661 **obj
= wxPoint2D(-1,-1);
2665 // If source is an object instance then it may already be the right type
2666 if (wxPySwigInstance_Check(source
)) {
2668 if (! wxPyConvertSwigPtr(source
, (void **)&ptr
, wxT("wxPoint2D")))
2673 // otherwise a length-2 sequence of floats is expected
2674 if (PySequence_Check(source
) && PySequence_Length(source
) == 2) {
2675 PyObject
* o1
= PySequence_GetItem(source
, 0);
2676 PyObject
* o2
= PySequence_GetItem(source
, 1);
2677 // This should really check for floats, not numbers -- but that would break code.
2678 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
)) {
2683 **obj
= wxPoint2D(PyFloat_AsDouble(o1
), PyFloat_AsDouble(o2
));
2689 PyErr_SetString(PyExc_TypeError
, "Expected a 2-tuple of floats or a wxPoint2D object.");
2694 //----------------------------------------------------------------------
2696 PyObject
* wxArrayString2PyList_helper(const wxArrayString
& arr
) {
2698 PyObject
* list
= PyList_New(0);
2699 for (size_t i
=0; i
< arr
.GetCount(); i
++) {
2701 PyObject
* str
= PyUnicode_FromWideChar(arr
[i
].c_str(), arr
[i
].Len());
2703 PyObject
* str
= PyString_FromStringAndSize(arr
[i
].c_str(), arr
[i
].Len());
2705 PyList_Append(list
, str
);
2712 PyObject
* wxArrayInt2PyList_helper(const wxArrayInt
& arr
) {
2714 PyObject
* list
= PyList_New(0);
2715 for (size_t i
=0; i
< arr
.GetCount(); i
++) {
2716 PyObject
* number
= PyInt_FromLong(arr
[i
]);
2717 PyList_Append(list
, number
);
2724 //----------------------------------------------------------------------
2725 //----------------------------------------------------------------------