]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/helpers.cpp
Two more typos.
[wxWidgets.git] / wxPython / src / helpers.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: helpers.cpp
3 // Purpose: Helper functions/classes for the wxPython extension module
4 //
5 // Author: Robin Dunn
6 //
7 // Created: 1-July-1997
8 // RCS-ID: $Id$
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
12
13
14 #undef DEBUG
15 #include <Python.h>
16 #include "wx/wxPython/wxPython_int.h"
17 #include "wx/wxPython/pyistream.h"
18 #include "wx/wxPython/swigver.h"
19 #include "wx/wxPython/twoitem.h"
20
21 #ifdef __WXMSW__
22 #include <wx/msw/private.h>
23 #include <wx/msw/winundef.h>
24 #include <wx/msw/msvcrt.h>
25 #endif
26
27 #ifdef __WXGTK__
28 #include <gdk/gdk.h>
29 #include <gdk/gdkx.h>
30 #include <gtk/gtk.h>
31 #include <gdk/gdkprivate.h>
32 #include <wx/gtk/win_gtk.h>
33 #define GetXWindow(wxwin) (wxwin)->m_wxwindow ? \
34 GDK_WINDOW_XWINDOW(GTK_PIZZA((wxwin)->m_wxwindow)->bin_window) : \
35 GDK_WINDOW_XWINDOW((wxwin)->m_widget->window)
36 #include <locale.h>
37 #endif
38
39 #ifdef __WXX11__
40 #include "wx/x11/privx.h"
41 #define GetXWindow(wxwin) ((Window)(wxwin)->GetHandle())
42 #endif
43
44 #ifdef __WXMAC__
45 #include <wx/mac/private.h>
46 #endif
47
48 #include <wx/clipbrd.h>
49 #include <wx/mimetype.h>
50 #include <wx/image.h>
51
52 //----------------------------------------------------------------------
53
54 #if PYTHON_API_VERSION < 1009 && wxUSE_UNICODE
55 #error Python must support Unicode to use wxWindows Unicode
56 #endif
57
58 //----------------------------------------------------------------------
59
60 wxPyApp* wxPythonApp = NULL; // Global instance of application object
61 bool wxPyDoCleanup = false;
62 bool wxPyDoingCleanup = false;
63
64
65 #ifdef WXP_WITH_THREAD
66 #if !wxPyUSE_GIL_STATE
67 struct wxPyThreadState {
68 unsigned long tid;
69 PyThreadState* tstate;
70
71 wxPyThreadState(unsigned long _tid=0, PyThreadState* _tstate=NULL)
72 : tid(_tid), tstate(_tstate) {}
73 };
74
75 #include <wx/dynarray.h>
76 WX_DECLARE_OBJARRAY(wxPyThreadState, wxPyThreadStateArray);
77 #include <wx/arrimpl.cpp>
78 WX_DEFINE_OBJARRAY(wxPyThreadStateArray);
79
80 wxPyThreadStateArray* wxPyTStates = NULL;
81 wxMutex* wxPyTMutex = NULL;
82
83 #endif
84 #endif
85
86
87 #define DEFAULTENCODING_SIZE 64
88 static char wxPyDefaultEncoding[DEFAULTENCODING_SIZE] = "ascii";
89
90 static PyObject* wxPython_dict = NULL;
91 static PyObject* wxPyAssertionError = NULL;
92 static PyObject* wxPyNoAppError = NULL;
93
94 PyObject* wxPyPtrTypeMap = NULL;
95
96
97 #ifdef __WXMSW__ // If building for win32...
98 //----------------------------------------------------------------------
99 // This gets run when the DLL is loaded. We just need to save a handle.
100 //----------------------------------------------------------------------
101
102 extern "C"
103 BOOL WINAPI DllMain(
104 HINSTANCE hinstDLL, // handle to DLL module
105 DWORD fdwReason, // reason for calling function
106 LPVOID lpvReserved // reserved
107 )
108 {
109 // If wxPython is embedded in another wxWidgets app then
110 // the instance has already been set.
111 if (! wxGetInstance())
112 wxSetInstance(hinstDLL);
113 return true;
114 }
115 #endif
116
117 //----------------------------------------------------------------------
118 // Classes for implementing the wxp main application shell.
119 //----------------------------------------------------------------------
120
121 IMPLEMENT_ABSTRACT_CLASS(wxPyApp, wxApp);
122
123
124 wxPyApp::wxPyApp() {
125 m_assertMode = wxPYAPP_ASSERT_EXCEPTION;
126 m_startupComplete = false;
127 }
128
129
130 wxPyApp::~wxPyApp() {
131 wxPythonApp = NULL;
132 wxApp::SetInstance(NULL);
133 }
134
135
136 // This one isn't acutally called... We fake it with _BootstrapApp
137 bool wxPyApp::OnInit() {
138 return false;
139 }
140
141
142 int wxPyApp::MainLoop() {
143 int retval = 0;
144
145 DeletePendingObjects();
146 bool initialized = wxTopLevelWindows.GetCount() != 0;
147 if (initialized) {
148 if ( m_exitOnFrameDelete == Later ) {
149 m_exitOnFrameDelete = Yes;
150 }
151
152 retval = wxApp::MainLoop();
153 OnExit();
154 }
155 return retval;
156 }
157
158
159 bool wxPyApp::OnInitGui() {
160 bool rval=true;
161 wxApp::OnInitGui(); // in this case always call the base class version
162 wxPyBlock_t blocked = wxPyBeginBlockThreads();
163 if (wxPyCBH_findCallback(m_myInst, "OnInitGui"))
164 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()"));
165 wxPyEndBlockThreads(blocked);
166 return rval;
167 }
168
169
170 int wxPyApp::OnExit() {
171 int rval=0;
172 wxPyBlock_t blocked = wxPyBeginBlockThreads();
173 if (wxPyCBH_findCallback(m_myInst, "OnExit"))
174 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()"));
175 wxPyEndBlockThreads(blocked);
176 wxApp::OnExit(); // in this case always call the base class version
177 return rval;
178 }
179
180
181
182 void wxPyApp::ExitMainLoop() {
183 bool found;
184 wxPyBlock_t blocked = wxPyBeginBlockThreads();
185 if ((found = wxPyCBH_findCallback(m_myInst, "ExitMainLoop")))
186 wxPyCBH_callCallback(m_myInst, Py_BuildValue("()"));
187 wxPyEndBlockThreads(blocked);
188 if (! found)
189 wxApp::ExitMainLoop();
190 }
191
192
193 #ifdef __WXDEBUG__
194 void wxPyApp::OnAssertFailure(const wxChar *file,
195 int line,
196 const wxChar *func,
197 const wxChar *cond,
198 const wxChar *msg)
199 {
200 // if we're not fully initialized then just log the error
201 if (! m_startupComplete) {
202 wxString buf;
203 buf.Alloc(4096);
204 buf.Printf(wxT("%s(%d): assert \"%s\" failed"),
205 file, line, cond);
206 if ( func && *func )
207 buf << wxT(" in ") << func << wxT("()");
208 if (msg != NULL)
209 buf << wxT(": ") << msg;
210
211 wxLogDebug(buf);
212 return;
213 }
214
215 // If the OnAssert is overloaded in the Python class then call it...
216 bool found;
217 wxPyBlock_t blocked = wxPyBeginBlockThreads();
218 if ((found = wxPyCBH_findCallback(m_myInst, "OnAssert"))) {
219 PyObject* fso = wx2PyString(file);
220 PyObject* cso = wx2PyString(file);
221 PyObject* mso;
222 if (msg != NULL)
223 mso = wx2PyString(file);
224 else {
225 mso = Py_None; Py_INCREF(Py_None);
226 }
227 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OiOO)", fso, line, cso, mso));
228 Py_DECREF(fso);
229 Py_DECREF(cso);
230 Py_DECREF(mso);
231 }
232 wxPyEndBlockThreads(blocked);
233
234 // ...otherwise do our own thing with it
235 if (! found) {
236 // ignore it?
237 if (m_assertMode & wxPYAPP_ASSERT_SUPPRESS)
238 return;
239
240 // turn it into a Python exception?
241 if (m_assertMode & wxPYAPP_ASSERT_EXCEPTION) {
242 wxString buf;
243 buf.Alloc(4096);
244 buf.Printf(wxT("C++ assertion \"%s\" failed at %s(%d)"), cond, file, line);
245 if ( func && *func )
246 buf << wxT(" in ") << func << wxT("()");
247 if (msg != NULL)
248 buf << wxT(": ") << msg;
249
250
251 // set the exception
252 wxPyBlock_t blocked = wxPyBeginBlockThreads();
253 PyObject* s = wx2PyString(buf);
254 PyErr_SetObject(wxPyAssertionError, s);
255 Py_DECREF(s);
256 wxPyEndBlockThreads(blocked);
257
258 // Now when control returns to whatever API wrapper was called from
259 // Python it should detect that an exception is set and will return
260 // NULL, signalling the exception to Python.
261 }
262
263 // Send it to the normal log destination, but only if
264 // not _DIALOG because it will call this too
265 if ( (m_assertMode & wxPYAPP_ASSERT_LOG) && !(m_assertMode & wxPYAPP_ASSERT_DIALOG)) {
266 wxString buf;
267 buf.Alloc(4096);
268 buf.Printf(wxT("%s(%d): assert \"%s\" failed"),
269 file, line, cond);
270 if ( func && *func )
271 buf << wxT(" in ") << func << wxT("()");
272 if (msg != NULL)
273 buf << wxT(": ") << msg;
274 wxLogDebug(buf);
275 }
276
277 // do the normal wx assert dialog?
278 if (m_assertMode & wxPYAPP_ASSERT_DIALOG)
279 wxApp::OnAssertFailure(file, line, func, cond, msg);
280 }
281 }
282 #endif
283
284 // For catching Apple Events
285 void wxPyApp::MacOpenFile(const wxString &fileName)
286 {
287 wxPyBlock_t blocked = wxPyBeginBlockThreads();
288 if (wxPyCBH_findCallback(m_myInst, "MacOpenFile")) {
289 PyObject* s = wx2PyString(fileName);
290 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", s));
291 Py_DECREF(s);
292 }
293 wxPyEndBlockThreads(blocked);
294 }
295
296 void wxPyApp::MacPrintFile(const wxString &fileName)
297 {
298 wxPyBlock_t blocked = wxPyBeginBlockThreads();
299 if (wxPyCBH_findCallback(m_myInst, "MacPrintFile")) {
300 PyObject* s = wx2PyString(fileName);
301 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", s));
302 Py_DECREF(s);
303 }
304 wxPyEndBlockThreads(blocked);
305 }
306
307 void wxPyApp::MacNewFile()
308 {
309 wxPyBlock_t blocked = wxPyBeginBlockThreads();
310 if (wxPyCBH_findCallback(m_myInst, "MacNewFile"))
311 wxPyCBH_callCallback(m_myInst, Py_BuildValue("()"));
312 wxPyEndBlockThreads(blocked);
313 }
314
315 void wxPyApp::MacReopenApp()
316 {
317 wxPyBlock_t blocked = wxPyBeginBlockThreads();
318 if (wxPyCBH_findCallback(m_myInst, "MacReopenApp"))
319 wxPyCBH_callCallback(m_myInst, Py_BuildValue("()"));
320 wxPyEndBlockThreads(blocked);
321 }
322
323
324 /*static*/
325 bool wxPyApp::GetMacSupportPCMenuShortcuts() {
326 return 0;
327 }
328
329 /*static*/
330 long wxPyApp::GetMacAboutMenuItemId() {
331 #ifdef __WXMAC__
332 return s_macAboutMenuItemId;
333 #else
334 return 0;
335 #endif
336 }
337
338 /*static*/
339 long wxPyApp::GetMacPreferencesMenuItemId() {
340 #ifdef __WXMAC__
341 return s_macPreferencesMenuItemId;
342 #else
343 return 0;
344 #endif
345 }
346
347 /*static*/
348 long wxPyApp::GetMacExitMenuItemId() {
349 #ifdef __WXMAC__
350 return s_macExitMenuItemId;
351 #else
352 return 0;
353 #endif
354 }
355
356 /*static*/
357 wxString wxPyApp::GetMacHelpMenuTitleName() {
358 #ifdef __WXMAC__
359 return s_macHelpMenuTitleName;
360 #else
361 return wxEmptyString;
362 #endif
363 }
364
365 /*static*/
366 void wxPyApp::SetMacSupportPCMenuShortcuts(bool) {
367 }
368
369 /*static*/
370 void wxPyApp::SetMacAboutMenuItemId(long val) {
371 #ifdef __WXMAC__
372 s_macAboutMenuItemId = val;
373 #endif
374 }
375
376 /*static*/
377 void wxPyApp::SetMacPreferencesMenuItemId(long val) {
378 #ifdef __WXMAC__
379 s_macPreferencesMenuItemId = val;
380 #endif
381 }
382
383 /*static*/
384 void wxPyApp::SetMacExitMenuItemId(long val) {
385 #ifdef __WXMAC__
386 s_macExitMenuItemId = val;
387 #endif
388 }
389
390 /*static*/
391 void wxPyApp::SetMacHelpMenuTitleName(const wxString& val) {
392 #ifdef __WXMAC__
393 s_macHelpMenuTitleName = val;
394 #endif
395 }
396
397
398 // This finishes the initialization of wxWindows and then calls the OnInit
399 // that should be present in the derived (Python) class.
400 void wxPyApp::_BootstrapApp()
401 {
402 static bool haveInitialized = false;
403 bool result;
404 wxPyBlock_t blocked;
405 PyObject* retval = NULL;
406 PyObject* pyint = NULL;
407
408
409 // Only initialize wxWidgets once
410 if (! haveInitialized) {
411
412 // Get any command-line args passed to this program from the sys module
413 int argc = 0;
414 char** argv = NULL;
415 blocked = wxPyBeginBlockThreads();
416
417 PyObject* sysargv = PySys_GetObject("argv");
418 PyObject* executable = PySys_GetObject("executable");
419
420 if (sysargv != NULL && executable != NULL) {
421 argc = PyList_Size(sysargv) + 1;
422 argv = new char*[argc+1];
423 argv[0] = strdup(PyString_AsString(executable));
424 int x;
425 for(x=1; x<argc; x++) {
426 PyObject *pyArg = PyList_GetItem(sysargv, x-1);
427 argv[x] = strdup(PyString_AsString(pyArg));
428 }
429 argv[argc] = NULL;
430 }
431 wxPyEndBlockThreads(blocked);
432
433 // Initialize wxWidgets
434 result = wxEntryStart(argc, argv);
435 // wxApp takes ownership of the argv array, don't delete it here
436
437 blocked = wxPyBeginBlockThreads();
438 if (! result) {
439 PyErr_SetString(PyExc_SystemError,
440 "wxEntryStart failed, unable to initialize wxWidgets!"
441 #ifdef __WXGTK__
442 " (Is DISPLAY set properly?)"
443 #endif
444 );
445 goto error;
446 }
447
448 // On wxGTK the locale will be changed to match the system settings,
449 // but Python before 2.4 needs to have LC_NUMERIC set to "C" in order
450 // for the floating point conversions and such to work right.
451 #if defined(__WXGTK__) && PY_VERSION_HEX < 0x02040000
452 setlocale(LC_NUMERIC, "C");
453 #endif
454
455 // wxSystemOptions::SetOption(wxT("mac.textcontrol-use-mlte"), 1);
456
457 wxPyEndBlockThreads(blocked);
458 haveInitialized = true;
459 }
460 else {
461 this->argc = 0;
462 this->argv = NULL;
463 }
464
465
466 // It's now ok to generate exceptions for assertion errors.
467 wxPythonApp->SetStartupComplete(true);
468
469
470 // Call the Python wxApp's OnPreInit and OnInit functions
471 blocked = wxPyBeginBlockThreads();
472 if (wxPyCBH_findCallback(m_myInst, "OnPreInit")) {
473 PyObject* method = m_myInst.GetLastFound();
474 PyObject* argTuple = PyTuple_New(0);
475 retval = PyEval_CallObject(method, argTuple);
476 m_myInst.clearRecursionGuard(method);
477 Py_DECREF(argTuple);
478 Py_DECREF(method);
479 if (retval == NULL)
480 goto error;
481 }
482 if (wxPyCBH_findCallback(m_myInst, "OnInit")) {
483
484 PyObject* method = m_myInst.GetLastFound();
485 PyObject* argTuple = PyTuple_New(0);
486 retval = PyEval_CallObject(method, argTuple);
487 m_myInst.clearRecursionGuard(method);
488 Py_DECREF(argTuple);
489 Py_DECREF(method);
490 if (retval == NULL)
491 // Don't PyErr_Print here, let the exception in this case go back
492 // up to the wx.PyApp.__init__ scope.
493 goto error;
494
495 pyint = PyNumber_Int(retval);
496 if (! pyint) {
497 PyErr_SetString(PyExc_TypeError, "OnInit should return a boolean value");
498 goto error;
499 }
500 result = PyInt_AS_LONG(pyint);
501 }
502 else {
503 // Is it okay if there is no OnInit? Probably so...
504 result = true;
505 }
506
507 if (! result) {
508 PyErr_SetString(PyExc_SystemExit, "OnInit returned false, exiting...");
509 }
510
511 error:
512 Py_XDECREF(retval);
513 Py_XDECREF(pyint);
514
515 wxPyEndBlockThreads(blocked);
516 };
517
518 //---------------------------------------------------------------------
519 //----------------------------------------------------------------------
520
521
522 #if 0
523 static char* wxPyCopyCString(const wxChar* src)
524 {
525 wxWX2MBbuf buff = (wxWX2MBbuf)wxConvCurrent->cWX2MB(src);
526 size_t len = strlen(buff);
527 char* dest = new char[len+1];
528 strcpy(dest, buff);
529 return dest;
530 }
531
532 #if wxUSE_UNICODE
533 static char* wxPyCopyCString(const char* src) // we need a char version too
534 {
535 size_t len = strlen(src);
536 char* dest = new char[len+1];
537 strcpy(dest, src);
538 return dest;
539 }
540 #endif
541
542 static wxChar* wxPyCopyWString(const char *src)
543 {
544 //wxMB2WXbuf buff = wxConvCurrent->cMB2WX(src);
545 wxString str(src, *wxConvCurrent);
546 return copystring(str);
547 }
548
549 #if wxUSE_UNICODE
550 static wxChar* wxPyCopyWString(const wxChar *src)
551 {
552 return copystring(src);
553 }
554 #endif
555 #endif
556
557
558 inline const char* dropwx(const char* name) {
559 if (name[0] == 'w' && name[1] == 'x')
560 return name+2;
561 else
562 return name;
563 }
564
565 //----------------------------------------------------------------------
566
567 // This function is called when the wx._core_ module is imported to do some
568 // initial setup. (Before there is a wxApp object.) The rest happens in
569 // wxPyApp::_BootstrapApp
570 void __wxPyPreStart(PyObject* moduleDict)
571 {
572
573 #ifdef __WXMSW__
574 // wxCrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF
575 // | _CRTDBG_CHECK_ALWAYS_DF
576 // | _CRTDBG_DELAY_FREE_MEM_DF
577 // );
578 #endif
579
580 #ifdef WXP_WITH_THREAD
581 #if wxPyUSE_GIL_STATE
582 PyEval_InitThreads();
583 #else
584 PyEval_InitThreads();
585 wxPyTStates = new wxPyThreadStateArray;
586 wxPyTMutex = new wxMutex;
587
588 // Save the current (main) thread state in our array
589 PyThreadState* tstate = wxPyBeginAllowThreads();
590 wxPyEndAllowThreads(tstate);
591 #endif
592 #endif
593
594 // Ensure that the build options in the DLL (or whatever) match this build
595 wxApp::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE, "wxPython");
596
597 wxInitAllImageHandlers();
598 }
599
600
601
602 void __wxPyCleanup() {
603 wxPyDoingCleanup = true;
604 if (wxPyDoCleanup) {
605 wxPyDoCleanup = false;
606 wxEntryCleanup();
607 }
608 #ifdef WXP_WITH_THREAD
609 #if !wxPyUSE_GIL_STATE
610 delete wxPyTMutex;
611 wxPyTMutex = NULL;
612 wxPyTStates->Empty();
613 delete wxPyTStates;
614 wxPyTStates = NULL;
615 #endif
616 #endif
617 }
618
619
620 // Save a reference to the dictionary of the wx._core module, and inject
621 // a few more things into it.
622 PyObject* __wxPySetDictionary(PyObject* /* self */, PyObject* args)
623 {
624
625 if (!PyArg_ParseTuple(args, "O", &wxPython_dict))
626 return NULL;
627
628 if (!PyDict_Check(wxPython_dict)) {
629 PyErr_SetString(PyExc_TypeError,
630 "_wxPySetDictionary must have dictionary object!");
631 return NULL;
632 }
633
634 if (! wxPyPtrTypeMap)
635 wxPyPtrTypeMap = PyDict_New();
636 PyDict_SetItemString(wxPython_dict, "__wxPyPtrTypeMap", wxPyPtrTypeMap);
637
638 // Create an exception object to use for wxASSERTions
639 wxPyAssertionError = PyErr_NewException("wx._core.PyAssertionError",
640 PyExc_AssertionError, NULL);
641 PyDict_SetItemString(wxPython_dict, "PyAssertionError", wxPyAssertionError);
642
643 // Create an exception object to use when the app object hasn't been created yet
644 wxPyNoAppError = PyErr_NewException("wx._core.PyNoAppError",
645 PyExc_RuntimeError, NULL);
646 PyDict_SetItemString(wxPython_dict, "PyNoAppError", wxPyNoAppError);
647
648
649
650 #ifdef __WXMOTIF__
651 #define wxPlatform "__WXMOTIF__"
652 #define wxPlatName "wxMotif"
653 #endif
654 #ifdef __WXX11__
655 #define wxPlatform "__WXX11__"
656 #define wxPlatName "wxX11"
657 #endif
658 #ifdef __WXGTK__
659 #define wxPlatform "__WXGTK__"
660 #define wxPlatName "wxGTK"
661 #endif
662 #ifdef __WXMSW__
663 #define wxPlatform "__WXMSW__"
664 #define wxPlatName "wxMSW"
665 #endif
666 #ifdef __WXMAC__
667 #define wxPlatform "__WXMAC__"
668 #define wxPlatName "wxMac"
669 #endif
670
671 #ifdef __WXDEBUG__
672 int wxdebug = 1;
673 #else
674 int wxdebug = 0;
675 #endif
676
677 // These should be deprecated in favor of the PlatformInfo tuple built below...
678 PyDict_SetItemString(wxPython_dict, "Platform", PyString_FromString(wxPlatform));
679 PyDict_SetItemString(wxPython_dict, "USE_UNICODE", PyInt_FromLong(wxUSE_UNICODE));
680 PyDict_SetItemString(wxPython_dict, "__WXDEBUG__", PyInt_FromLong(wxdebug));
681
682 // Make a tuple of strings that gives more info about the platform.
683 PyObject* PlatInfo = PyList_New(0);
684 PyObject* obj;
685
686 #define _AddInfoString(st) \
687 obj = PyString_FromString(st); \
688 PyList_Append(PlatInfo, obj); \
689 Py_DECREF(obj)
690
691 _AddInfoString(wxPlatform);
692 _AddInfoString(wxPlatName);
693 #if wxUSE_UNICODE
694 _AddInfoString("unicode");
695 #else
696 _AddInfoString("ansi");
697 #endif
698 #ifdef __WXGTK__
699 #ifdef __WXGTK20__
700 _AddInfoString("gtk2");
701 #else
702 _AddInfoString("gtk1");
703 #endif
704 #endif
705 #ifdef __WXDEBUG__
706 _AddInfoString("wx-assertions-on");
707 #else
708 _AddInfoString("wx-assertions-off");
709 #endif
710 _AddInfoString(wxPy_SWIG_VERSION);
711 #ifdef __WXMAC__
712 #if wxMAC_USE_CORE_GRAPHICS
713 _AddInfoString("mac-cg");
714 #else
715 _AddInfoString("mac-qd");
716 #endif
717 #if wxMAC_USE_NATIVE_TOOLBAR
718 _AddInfoString("mac-native-tb");
719 #else
720 _AddInfoString("mac-no-native-tb");
721 #endif
722 #endif
723
724 #undef _AddInfoString
725
726 PyObject* PlatInfoTuple = PyList_AsTuple(PlatInfo);
727 Py_DECREF(PlatInfo);
728 PyDict_SetItemString(wxPython_dict, "PlatformInfo", PlatInfoTuple);
729
730 RETURN_NONE();
731 }
732
733
734
735 //---------------------------------------------------------------------------
736
737 // Check for existence of a wxApp, setting an exception if there isn't one.
738 // This doesn't need to aquire the GIL because it should only be called from
739 // an %exception before the lock is released.
740
741 bool wxPyCheckForApp() {
742 if (wxTheApp != NULL)
743 return true;
744 else {
745 PyErr_SetString(wxPyNoAppError, "The wx.App object must be created first!");
746 return false;
747 }
748 }
749
750 //---------------------------------------------------------------------------
751
752 void wxPyUserData_dtor(wxPyUserData* self) {
753 if (! wxPyDoingCleanup) {
754 wxPyBlock_t blocked = wxPyBeginBlockThreads();
755 Py_DECREF(self->m_obj);
756 self->m_obj = NULL;
757 wxPyEndBlockThreads(blocked);
758 }
759 }
760
761
762 void wxPyClientData_dtor(wxPyClientData* self) {
763 if (! wxPyDoingCleanup) { // Don't do it during cleanup as Python
764 // may have already garbage collected the object...
765 if (self->m_incRef) {
766 wxPyBlock_t blocked = wxPyBeginBlockThreads();
767 Py_DECREF(self->m_obj);
768 wxPyEndBlockThreads(blocked);
769 }
770 self->m_obj = NULL;
771 }
772 }
773
774
775
776 // This is called when an OOR controled object is being destroyed. Although
777 // the C++ object is going away there is no way to force the Python object
778 // (and all references to it) to die too. This causes problems (crashes) in
779 // wxPython when a python shadow object attempts to call a C++ method using
780 // the now bogus pointer... So to try and prevent this we'll do a little black
781 // magic and change the class of the python instance to a class that will
782 // raise an exception for any attempt to call methods with it. See
783 // _wxPyDeadObject in _core_ex.py for the implementation of this class.
784 void wxPyOORClientData_dtor(wxPyOORClientData* self) {
785
786 static PyObject* deadObjectClass = NULL;
787
788 wxPyBlock_t blocked = wxPyBeginBlockThreads();
789 if (deadObjectClass == NULL) {
790 deadObjectClass = PyDict_GetItemString(wxPython_dict, "_wxPyDeadObject");
791 // TODO: Can not wxASSERT here because inside a wxPyBeginBlock Threads,
792 // will lead to a deadlock when it tries to aquire the GIL again.
793 //wxASSERT_MSG(deadObjectClass != NULL, wxT("Can't get _wxPyDeadObject class!"));
794 Py_INCREF(deadObjectClass);
795 }
796
797
798 // Only if there is more than one reference to the object and we are
799 // holding the OOR reference:
800 if ( !wxPyDoingCleanup && self->m_obj->ob_refcnt > 1 && self->m_incRef) {
801 // bool isInstance = wxPyInstance_Check(self->m_obj);
802 // TODO same here
803 //wxASSERT_MSG(isInstance, wxT("m_obj not an instance!?!?!"));
804
805 // Call __del__, if there is one.
806 PyObject* func = PyObject_GetAttrString(self->m_obj, "__del__");
807 if (func) {
808 PyObject* rv = PyObject_CallMethod(self->m_obj, "__del__", NULL);
809 Py_XDECREF(rv);
810 Py_DECREF(func);
811 }
812 if (PyErr_Occurred())
813 PyErr_Clear(); // just ignore it for now
814
815
816 PyObject* dict = PyObject_GetAttrString(self->m_obj, "__dict__");
817 if (dict) {
818 // Clear the instance's dictionary
819 PyDict_Clear(dict);
820
821 // put the name of the old class into the instance, and then reset the
822 // class to be the dead class.
823 PyObject* klass = PyObject_GetAttrString(self->m_obj, "__class__");
824 PyObject* name = PyObject_GetAttrString(klass, "__name__");
825 PyDict_SetItemString(dict, "_name", name);
826 PyObject_SetAttrString(self->m_obj, "__class__", deadObjectClass);
827 //Py_INCREF(deadObjectClass);
828 Py_DECREF(klass);
829 Py_DECREF(name);
830 }
831 }
832
833 // m_obj is DECREF'd in the base class dtor...
834 wxPyEndBlockThreads(blocked);
835 }
836
837
838 //---------------------------------------------------------------------------
839 // Stuff used by OOR to find the right wxPython class type to return and to
840 // build it.
841
842
843 // The pointer type map is used when the "pointer" type name generated by SWIG
844 // is not the same as the shadow class name, for example wxPyTreeCtrl
845 // vs. wxTreeCtrl. It needs to be referenced in Python as well as from C++,
846 // so we'll just make it a Python dictionary in the wx module's namespace.
847 // (See __wxSetDictionary)
848 void wxPyPtrTypeMap_Add(const char* commonName, const char* ptrName) {
849 if (! wxPyPtrTypeMap)
850 wxPyPtrTypeMap = PyDict_New();
851 PyDict_SetItemString(wxPyPtrTypeMap,
852 (char*)commonName,
853 PyString_FromString((char*)ptrName));
854 }
855
856
857
858
859 PyObject* wxPyMake_wxObject(wxObject* source, bool setThisOwn, bool checkEvtHandler) {
860 PyObject* target = NULL;
861 bool isEvtHandler = false;
862 bool isSizer = false;
863
864 if (source) {
865 // If it's derived from wxEvtHandler then there may
866 // already be a pointer to a Python object that we can use
867 // in the OOR data.
868 if (checkEvtHandler && wxIsKindOf(source, wxEvtHandler)) {
869 isEvtHandler = true;
870 wxEvtHandler* eh = (wxEvtHandler*)source;
871 wxPyOORClientData* data = (wxPyOORClientData*)eh->GetClientObject();
872 if (data) {
873 target = data->m_obj;
874 if (target)
875 Py_INCREF(target);
876 }
877 }
878
879 // Also check for wxSizer
880 if (!target && wxIsKindOf(source, wxSizer)) {
881 isSizer = true;
882 wxSizer* sz = (wxSizer*)source;
883 wxPyOORClientData* data = (wxPyOORClientData*)sz->GetClientObject();
884 if (data) {
885 target = data->m_obj;
886 if (target)
887 Py_INCREF(target);
888 }
889 }
890
891 if (! target) {
892 // Otherwise make it the old fashioned way by making a new shadow
893 // object and putting this pointer in it. Look up the class
894 // heirarchy until we find a class name that is located in the
895 // python module.
896 const wxClassInfo* info = source->GetClassInfo();
897 wxString name = info->GetClassName();
898 bool exists = wxPyCheckSwigType(name);
899 while (info && !exists) {
900 info = info->GetBaseClass1();
901 name = info->GetClassName();
902 exists = wxPyCheckSwigType(name);
903 }
904 if (info) {
905 target = wxPyConstructObject((void*)source, name, setThisOwn);
906 if (target && isEvtHandler)
907 ((wxEvtHandler*)source)->SetClientObject(new wxPyOORClientData(target));
908 if (target && isSizer)
909 ((wxSizer*)source)->SetClientObject(new wxPyOORClientData(target));
910 } else {
911 wxString msg(wxT("wxPython class not found for "));
912 msg += source->GetClassInfo()->GetClassName();
913 PyErr_SetString(PyExc_NameError, msg.mbc_str());
914 target = NULL;
915 }
916 }
917 } else { // source was NULL so return None.
918 Py_INCREF(Py_None); target = Py_None;
919 }
920 return target;
921 }
922
923
924 PyObject* wxPyMake_wxSizer(wxSizer* source, bool setThisOwn) {
925
926 return wxPyMake_wxObject(source, setThisOwn);
927 }
928
929
930 //---------------------------------------------------------------------------
931
932
933 #ifdef WXP_WITH_THREAD
934 #if !wxPyUSE_GIL_STATE
935
936 inline
937 unsigned long wxPyGetCurrentThreadId() {
938 return wxThread::GetCurrentId();
939 }
940
941 static wxPyThreadState gs_shutdownTState;
942
943 static
944 wxPyThreadState* wxPyGetThreadState() {
945 if (wxPyTMutex == NULL) // Python is shutting down...
946 return &gs_shutdownTState;
947
948 unsigned long ctid = wxPyGetCurrentThreadId();
949 wxPyThreadState* tstate = NULL;
950
951 wxPyTMutex->Lock();
952 for(size_t i=0; i < wxPyTStates->GetCount(); i++) {
953 wxPyThreadState& info = wxPyTStates->Item(i);
954 if (info.tid == ctid) {
955 tstate = &info;
956 break;
957 }
958 }
959 wxPyTMutex->Unlock();
960 wxASSERT_MSG(tstate, wxT("PyThreadState should not be NULL!"));
961 return tstate;
962 }
963
964
965 static
966 void wxPySaveThreadState(PyThreadState* tstate) {
967 if (wxPyTMutex == NULL) { // Python is shutting down, assume a single thread...
968 gs_shutdownTState.tstate = tstate;
969 return;
970 }
971 unsigned long ctid = wxPyGetCurrentThreadId();
972 wxPyTMutex->Lock();
973 for(size_t i=0; i < wxPyTStates->GetCount(); i++) {
974 wxPyThreadState& info = wxPyTStates->Item(i);
975 if (info.tid == ctid) {
976 #if 0
977 if (info.tstate != tstate)
978 wxLogMessage("*** tstate mismatch!???");
979 #endif
980 info.tstate = tstate; // allow for transient tstates
981 // Normally it will never change, but apparently COM callbacks
982 // (i.e. ActiveX controls) will (incorrectly IMHO) use a transient
983 // tstate which will then be garbage the next time we try to use
984 // it...
985
986 wxPyTMutex->Unlock();
987 return;
988 }
989 }
990 // not found, so add it...
991 wxPyTStates->Add(new wxPyThreadState(ctid, tstate));
992 wxPyTMutex->Unlock();
993 }
994
995 #endif
996 #endif
997
998
999
1000 // Calls from Python to wxWindows code are wrapped in calls to these
1001 // functions:
1002
1003 PyThreadState* wxPyBeginAllowThreads() {
1004 #ifdef WXP_WITH_THREAD
1005 PyThreadState* saved = PyEval_SaveThread(); // Py_BEGIN_ALLOW_THREADS;
1006 #if !wxPyUSE_GIL_STATE
1007 wxPySaveThreadState(saved);
1008 #endif
1009 return saved;
1010 #else
1011 return NULL;
1012 #endif
1013 }
1014
1015 void wxPyEndAllowThreads(PyThreadState* saved) {
1016 #ifdef WXP_WITH_THREAD
1017 PyEval_RestoreThread(saved); // Py_END_ALLOW_THREADS;
1018 #endif
1019 }
1020
1021
1022
1023 // Calls from wxWindows back to Python code, or even any PyObject
1024 // manipulations, PyDECREF's and etc. are wrapped in calls to these functions:
1025
1026 wxPyBlock_t wxPyBeginBlockThreads() {
1027 #ifdef WXP_WITH_THREAD
1028 if (! Py_IsInitialized()) {
1029 return (wxPyBlock_t)0;
1030 }
1031 #if wxPyUSE_GIL_STATE
1032 PyGILState_STATE state = PyGILState_Ensure();
1033 return state;
1034 #else
1035 PyThreadState *current = _PyThreadState_Current;
1036
1037 // Only block if there wasn't already a tstate, or if the current one is
1038 // not the one we are wanting to change to. This should prevent deadlock
1039 // if there are nested calls to wxPyBeginBlockThreads
1040 wxPyBlock_t blocked = false;
1041 wxPyThreadState* tstate = wxPyGetThreadState();
1042 if (current != tstate->tstate) {
1043 PyEval_RestoreThread(tstate->tstate);
1044 blocked = true;
1045 }
1046 return blocked;
1047 #endif
1048 #else
1049 return (wxPyBlock_t)0;
1050 #endif
1051 }
1052
1053
1054 void wxPyEndBlockThreads(wxPyBlock_t blocked) {
1055 #ifdef WXP_WITH_THREAD
1056 if (! Py_IsInitialized()) {
1057 return;
1058 }
1059 #if wxPyUSE_GIL_STATE
1060 PyGILState_Release(blocked);
1061 #else
1062 // Only unblock if we blocked in the last call to wxPyBeginBlockThreads.
1063 // The value of blocked passed in needs to be the same as that returned
1064 // from wxPyBeginBlockThreads at the same nesting level.
1065 if ( blocked ) {
1066 PyEval_SaveThread();
1067 }
1068 #endif
1069 #endif
1070 }
1071
1072
1073 //---------------------------------------------------------------------------
1074 // wxPyInputStream and wxPyCBInputStream methods
1075
1076
1077 void wxPyInputStream::close() {
1078 /* do nothing for now */
1079 }
1080
1081 void wxPyInputStream::flush() {
1082 /* do nothing for now */
1083 }
1084
1085 bool wxPyInputStream::eof() {
1086 if (m_wxis)
1087 return m_wxis->Eof();
1088 else
1089 return true;
1090 }
1091
1092 wxPyInputStream::~wxPyInputStream() {
1093 if (m_wxis)
1094 delete m_wxis;
1095 }
1096
1097
1098
1099
1100 PyObject* wxPyInputStream::read(int size) {
1101 PyObject* obj = NULL;
1102 wxMemoryBuffer buf;
1103 const int BUFSIZE = 1024;
1104
1105 // check if we have a real wxInputStream to work with
1106 if (!m_wxis) {
1107 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1108 PyErr_SetString(PyExc_IOError, "no valid C-wxInputStream");
1109 wxPyEndBlockThreads(blocked);
1110 return NULL;
1111 }
1112
1113 if (size < 0) {
1114 // read while bytes are available on the stream
1115 while ( m_wxis->CanRead() ) {
1116 m_wxis->Read(buf.GetAppendBuf(BUFSIZE), BUFSIZE);
1117 buf.UngetAppendBuf(m_wxis->LastRead());
1118 }
1119
1120 } else { // Read only size number of characters
1121 m_wxis->Read(buf.GetWriteBuf(size), size);
1122 buf.UngetWriteBuf(m_wxis->LastRead());
1123 }
1124
1125 // error check
1126 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1127 wxStreamError err = m_wxis->GetLastError();
1128 if (err != wxSTREAM_NO_ERROR && err != wxSTREAM_EOF) {
1129 PyErr_SetString(PyExc_IOError,"IOError in wxInputStream");
1130 }
1131 else {
1132 // We use only strings for the streams, not unicode
1133 obj = PyString_FromStringAndSize(buf, buf.GetDataLen());
1134 }
1135 wxPyEndBlockThreads(blocked);
1136 return obj;
1137 }
1138
1139
1140 PyObject* wxPyInputStream::readline(int size) {
1141 PyObject* obj = NULL;
1142 wxMemoryBuffer buf;
1143 int i;
1144 char ch;
1145
1146 // check if we have a real wxInputStream to work with
1147 if (!m_wxis) {
1148 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1149 PyErr_SetString(PyExc_IOError,"no valid C-wxInputStream");
1150 wxPyEndBlockThreads(blocked);
1151 return NULL;
1152 }
1153
1154 // read until \n or byte limit reached
1155 for (i=ch=0; (ch != '\n') && (m_wxis->CanRead()) && ((size < 0) || (i < size)); i++) {
1156 ch = m_wxis->GetC();
1157 buf.AppendByte(ch);
1158 }
1159
1160 // errorcheck
1161 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1162 wxStreamError err = m_wxis->GetLastError();
1163 if (err != wxSTREAM_NO_ERROR && err != wxSTREAM_EOF) {
1164 PyErr_SetString(PyExc_IOError,"IOError in wxInputStream");
1165 }
1166 else {
1167 // We use only strings for the streams, not unicode
1168 obj = PyString_FromStringAndSize((char*)buf.GetData(), buf.GetDataLen());
1169 }
1170 wxPyEndBlockThreads(blocked);
1171 return obj;
1172 }
1173
1174
1175 PyObject* wxPyInputStream::readlines(int sizehint) {
1176 PyObject* pylist;
1177
1178 // check if we have a real wxInputStream to work with
1179 if (!m_wxis) {
1180 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1181 PyErr_SetString(PyExc_IOError,"no valid C-wxInputStream");
1182 wxPyEndBlockThreads(blocked);
1183 return NULL;
1184 }
1185
1186 // init list
1187 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1188 pylist = PyList_New(0);
1189 wxPyEndBlockThreads(blocked);
1190
1191 if (!pylist) {
1192 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1193 PyErr_NoMemory();
1194 wxPyEndBlockThreads(blocked);
1195 return NULL;
1196 }
1197
1198 // read sizehint bytes or until EOF
1199 int i;
1200 for (i=0; (m_wxis->CanRead()) && ((sizehint < 0) || (i < sizehint));) {
1201 PyObject* s = this->readline();
1202 if (s == NULL) {
1203 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1204 Py_DECREF(pylist);
1205 wxPyEndBlockThreads(blocked);
1206 return NULL;
1207 }
1208 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1209 PyList_Append(pylist, s);
1210 i += PyString_Size(s);
1211 wxPyEndBlockThreads(blocked);
1212 }
1213
1214 // error check
1215 wxStreamError err = m_wxis->GetLastError();
1216 if (err != wxSTREAM_NO_ERROR && err != wxSTREAM_EOF) {
1217 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1218 Py_DECREF(pylist);
1219 PyErr_SetString(PyExc_IOError,"IOError in wxInputStream");
1220 wxPyEndBlockThreads(blocked);
1221 return NULL;
1222 }
1223
1224 return pylist;
1225 }
1226
1227
1228 void wxPyInputStream::seek(int offset, int whence) {
1229 if (m_wxis)
1230 m_wxis->SeekI(offset, wxSeekMode(whence));
1231 }
1232
1233 int wxPyInputStream::tell(){
1234 if (m_wxis)
1235 return m_wxis->TellI();
1236 else return 0;
1237 }
1238
1239
1240
1241
1242 wxPyCBInputStream::wxPyCBInputStream(PyObject *r, PyObject *s, PyObject *t, bool block)
1243 : wxInputStream(), m_read(r), m_seek(s), m_tell(t), m_block(block)
1244 {}
1245
1246 wxPyCBInputStream::wxPyCBInputStream(const wxPyCBInputStream& other)
1247 {
1248 m_read = other.m_read;
1249 m_seek = other.m_seek;
1250 m_tell = other.m_tell;
1251 m_block = other.m_block;
1252 Py_INCREF(m_read);
1253 Py_INCREF(m_seek);
1254 Py_INCREF(m_tell);
1255 }
1256
1257
1258 wxPyCBInputStream::~wxPyCBInputStream() {
1259 wxPyBlock_t blocked;
1260 if (m_block) blocked = wxPyBeginBlockThreads();
1261 Py_XDECREF(m_read);
1262 Py_XDECREF(m_seek);
1263 Py_XDECREF(m_tell);
1264 if (m_block) wxPyEndBlockThreads(blocked);
1265 }
1266
1267
1268 wxPyCBInputStream* wxPyCBInputStream::create(PyObject *py, bool block) {
1269 wxPyBlock_t blocked;
1270 if (block) blocked = wxPyBeginBlockThreads();
1271
1272 PyObject* read = getMethod(py, "read");
1273 PyObject* seek = getMethod(py, "seek");
1274 PyObject* tell = getMethod(py, "tell");
1275
1276 if (!read) {
1277 PyErr_SetString(PyExc_TypeError, "Not a file-like object");
1278 Py_XDECREF(read);
1279 Py_XDECREF(seek);
1280 Py_XDECREF(tell);
1281 if (block) wxPyEndBlockThreads(blocked);
1282 return NULL;
1283 }
1284
1285 if (block) wxPyEndBlockThreads(blocked);
1286 return new wxPyCBInputStream(read, seek, tell, block);
1287 }
1288
1289
1290 wxPyCBInputStream* wxPyCBInputStream_create(PyObject *py, bool block) {
1291 return wxPyCBInputStream::create(py, block);
1292 }
1293
1294 wxPyCBInputStream* wxPyCBInputStream_copy(wxPyCBInputStream* other) {
1295 return new wxPyCBInputStream(*other);
1296 }
1297
1298 PyObject* wxPyCBInputStream::getMethod(PyObject* py, char* name) {
1299 if (!PyObject_HasAttrString(py, name))
1300 return NULL;
1301 PyObject* o = PyObject_GetAttrString(py, name);
1302 if (!PyMethod_Check(o) && !PyCFunction_Check(o)) {
1303 Py_DECREF(o);
1304 return NULL;
1305 }
1306 return o;
1307 }
1308
1309
1310 wxFileOffset wxPyCBInputStream::GetLength() const {
1311 wxPyCBInputStream* self = (wxPyCBInputStream*)this; // cast off const
1312 if (m_seek && m_tell) {
1313 wxFileOffset temp = self->OnSysTell();
1314 wxFileOffset ret = self->OnSysSeek(0, wxFromEnd);
1315 self->OnSysSeek(temp, wxFromStart);
1316 return ret;
1317 }
1318 else
1319 return wxInvalidOffset;
1320 }
1321
1322
1323 size_t wxPyCBInputStream::OnSysRead(void *buffer, size_t bufsize) {
1324 if (bufsize == 0)
1325 return 0;
1326
1327 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1328 PyObject* arglist = Py_BuildValue("(i)", bufsize);
1329 PyObject* result = PyEval_CallObject(m_read, arglist);
1330 Py_DECREF(arglist);
1331
1332 size_t o = 0;
1333 if ((result != NULL) && PyString_Check(result)) {
1334 o = PyString_Size(result);
1335 if (o == 0)
1336 m_lasterror = wxSTREAM_EOF;
1337 if (o > bufsize)
1338 o = bufsize;
1339 memcpy((char*)buffer, PyString_AsString(result), o); // strings only, not unicode...
1340 Py_DECREF(result);
1341
1342 }
1343 else
1344 m_lasterror = wxSTREAM_READ_ERROR;
1345 wxPyEndBlockThreads(blocked);
1346 return o;
1347 }
1348
1349 size_t wxPyCBInputStream::OnSysWrite(const void *buffer, size_t bufsize) {
1350 m_lasterror = wxSTREAM_WRITE_ERROR;
1351 return 0;
1352 }
1353
1354
1355 wxFileOffset wxPyCBInputStream::OnSysSeek(wxFileOffset off, wxSeekMode mode) {
1356 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1357 PyObject* arglist = PyTuple_New(2);
1358
1359 if (sizeof(wxFileOffset) > sizeof(long))
1360 // wxFileOffset is a 64-bit value...
1361 PyTuple_SET_ITEM(arglist, 0, PyLong_FromLongLong(off));
1362 else
1363 PyTuple_SET_ITEM(arglist, 0, PyInt_FromLong(off));
1364
1365 PyTuple_SET_ITEM(arglist, 1, PyInt_FromLong(mode));
1366
1367
1368 PyObject* result = PyEval_CallObject(m_seek, arglist);
1369 Py_DECREF(arglist);
1370 Py_XDECREF(result);
1371 wxPyEndBlockThreads(blocked);
1372 return OnSysTell();
1373 }
1374
1375
1376 wxFileOffset wxPyCBInputStream::OnSysTell() const {
1377 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1378 PyObject* arglist = Py_BuildValue("()");
1379 PyObject* result = PyEval_CallObject(m_tell, arglist);
1380 Py_DECREF(arglist);
1381 wxFileOffset o = 0;
1382 if (result != NULL) {
1383 if (PyLong_Check(result))
1384 o = PyLong_AsLongLong(result);
1385 else
1386 o = PyInt_AsLong(result);
1387 Py_DECREF(result);
1388 };
1389 wxPyEndBlockThreads(blocked);
1390 return o;
1391 }
1392
1393 //----------------------------------------------------------------------
1394
1395 IMPLEMENT_ABSTRACT_CLASS(wxPyCallback, wxObject);
1396
1397 wxPyCallback::wxPyCallback(PyObject* func) {
1398 m_func = func;
1399 Py_INCREF(m_func);
1400 }
1401
1402 wxPyCallback::wxPyCallback(const wxPyCallback& other) {
1403 m_func = other.m_func;
1404 Py_INCREF(m_func);
1405 }
1406
1407 wxPyCallback::~wxPyCallback() {
1408 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1409 Py_DECREF(m_func);
1410 wxPyEndBlockThreads(blocked);
1411 }
1412
1413
1414 #define wxPy_PRECALLINIT "_preCallInit"
1415 #define wxPy_POSTCALLCLEANUP "_postCallCleanup"
1416
1417 // This function is used for all events destined for Python event handlers.
1418 void wxPyCallback::EventThunker(wxEvent& event) {
1419 wxPyCallback* cb = (wxPyCallback*)event.m_callbackUserData;
1420 PyObject* func = cb->m_func;
1421 PyObject* result;
1422 PyObject* arg;
1423 PyObject* tuple;
1424 bool checkSkip = false;
1425
1426 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1427 wxString className = event.GetClassInfo()->GetClassName();
1428
1429 // If the event is one of these types then pass the original
1430 // event object instead of the one passed to us.
1431 if ( className == wxT("wxPyEvent") ) {
1432 arg = ((wxPyEvent*)&event)->GetSelf();
1433 checkSkip = ((wxPyEvent*)&event)->GetCloned();
1434 }
1435 else if ( className == wxT("wxPyCommandEvent") ) {
1436 arg = ((wxPyCommandEvent*)&event)->GetSelf();
1437 checkSkip = ((wxPyCommandEvent*)&event)->GetCloned();
1438 }
1439 else {
1440 arg = wxPyConstructObject((void*)&event, className);
1441 }
1442
1443 if (!arg) {
1444 PyErr_Print();
1445 } else {
1446 // "intern" the pre/post method names to speed up the HasAttr
1447 static PyObject* s_preName = NULL;
1448 static PyObject* s_postName = NULL;
1449 if (s_preName == NULL) {
1450 s_preName = PyString_FromString(wxPy_PRECALLINIT);
1451 s_postName = PyString_FromString(wxPy_POSTCALLCLEANUP);
1452 }
1453
1454 // Check if the event object needs some preinitialization
1455 if (PyObject_HasAttr(arg, s_preName)) {
1456 result = PyObject_CallMethodObjArgs(arg, s_preName, arg, NULL);
1457 if ( result ) {
1458 Py_DECREF(result); // result is ignored, but we still need to decref it
1459 PyErr_Clear(); // Just in case...
1460 } else {
1461 PyErr_Print();
1462 }
1463 }
1464
1465 // Call the event handler, passing the event object
1466 tuple = PyTuple_New(1);
1467 PyTuple_SET_ITEM(tuple, 0, arg); // steals ref to arg
1468 result = PyEval_CallObject(func, tuple);
1469 if ( result ) {
1470 Py_DECREF(result); // result is ignored, but we still need to decref it
1471 PyErr_Clear(); // Just in case...
1472 } else {
1473 PyErr_Print();
1474 }
1475
1476 // Check if the event object needs some post cleanup
1477 if (PyObject_HasAttr(arg, s_postName)) {
1478 result = PyObject_CallMethodObjArgs(arg, s_postName, arg, NULL);
1479 if ( result ) {
1480 Py_DECREF(result); // result is ignored, but we still need to decref it
1481 PyErr_Clear(); // Just in case...
1482 } else {
1483 PyErr_Print();
1484 }
1485 }
1486
1487 if ( checkSkip ) {
1488 // if the event object was one of our special types and
1489 // it had been cloned, then we need to extract the Skipped
1490 // value from the original and set it in the clone.
1491 result = PyObject_CallMethod(arg, "GetSkipped", "");
1492 if ( result ) {
1493 event.Skip(PyInt_AsLong(result));
1494 Py_DECREF(result);
1495 } else {
1496 PyErr_Print();
1497 }
1498 }
1499 Py_DECREF(tuple);
1500 }
1501 wxPyEndBlockThreads(blocked);
1502 }
1503
1504
1505 //----------------------------------------------------------------------
1506
1507 wxPyCallbackHelper::wxPyCallbackHelper(const wxPyCallbackHelper& other) {
1508 m_lastFound = NULL;
1509 m_self = other.m_self;
1510 m_class = other.m_class;
1511 if (m_self) {
1512 Py_INCREF(m_self);
1513 Py_INCREF(m_class);
1514 }
1515 }
1516
1517
1518 void wxPyCallbackHelper::setSelf(PyObject* self, PyObject* klass, int incref) {
1519 m_self = self;
1520 m_class = klass;
1521 m_incRef = incref;
1522 if (incref) {
1523 Py_INCREF(m_self);
1524 Py_INCREF(m_class);
1525 }
1526 }
1527
1528
1529 #if PYTHON_API_VERSION >= 1011
1530
1531 // Prior to Python 2.2 PyMethod_GetClass returned the class object
1532 // in which the method was defined. Starting with 2.2 it returns
1533 // "class that asked for the method" which seems totally bogus to me
1534 // but apprently it fixes some obscure problem waiting to happen in
1535 // Python. Since the API was not documented Guido and the gang felt
1536 // safe in changing it. Needless to say that totally screwed up the
1537 // logic below in wxPyCallbackHelper::findCallback, hence this icky
1538 // code to find the class where the method is actually defined...
1539
1540 static
1541 PyObject* PyFindClassWithAttr(PyObject *klass, PyObject *name)
1542 {
1543 int i, n;
1544
1545 if (PyType_Check(klass)) { // new style classes
1546 // This code is borrowed/adapted from _PyType_Lookup in typeobject.c
1547 PyTypeObject* type = (PyTypeObject*)klass;
1548 PyObject *mro, *res, *base, *dict;
1549 /* Look in tp_dict of types in MRO */
1550 mro = type->tp_mro;
1551 assert(PyTuple_Check(mro));
1552 n = PyTuple_GET_SIZE(mro);
1553 for (i = 0; i < n; i++) {
1554 base = PyTuple_GET_ITEM(mro, i);
1555 if (PyClass_Check(base))
1556 dict = ((PyClassObject *)base)->cl_dict;
1557 else {
1558 assert(PyType_Check(base));
1559 dict = ((PyTypeObject *)base)->tp_dict;
1560 }
1561 assert(dict && PyDict_Check(dict));
1562 res = PyDict_GetItem(dict, name);
1563 if (res != NULL)
1564 return base;
1565 }
1566 return NULL;
1567 }
1568
1569 else if (PyClass_Check(klass)) { // old style classes
1570 // This code is borrowed/adapted from class_lookup in classobject.c
1571 PyClassObject* cp = (PyClassObject*)klass;
1572 PyObject *value = PyDict_GetItem(cp->cl_dict, name);
1573 if (value != NULL) {
1574 return (PyObject*)cp;
1575 }
1576 n = PyTuple_Size(cp->cl_bases);
1577 for (i = 0; i < n; i++) {
1578 PyObject* base = PyTuple_GetItem(cp->cl_bases, i);
1579 PyObject *v = PyFindClassWithAttr(base, name);
1580 if (v != NULL)
1581 return v;
1582 }
1583 return NULL;
1584 }
1585 return NULL;
1586 }
1587 #endif
1588
1589
1590 static
1591 PyObject* PyMethod_GetDefiningClass(PyObject* method, PyObject* nameo)
1592 {
1593 PyObject* mgc = PyMethod_GET_CLASS(method);
1594
1595 #if PYTHON_API_VERSION <= 1010 // prior to Python 2.2, the easy way
1596 return mgc;
1597 #else // 2.2 and after, the hard way...
1598 return PyFindClassWithAttr(mgc, nameo);
1599 #endif
1600 }
1601
1602
1603
1604 // To avoid recursion when an overridden virtual method wants to call the base
1605 // class version, temporarily set an attribute in the instance with the same
1606 // name as the method. Then the PyObject_GetAttr in the next findCallback
1607 // will return this attribute and the PyMethod_Check will fail.
1608
1609 void wxPyCallbackHelper::setRecursionGuard(PyObject* method) const
1610 {
1611 PyFunctionObject* func = (PyFunctionObject*)PyMethod_Function(method);
1612 PyObject_SetAttr(m_self, func->func_name, Py_None);
1613 }
1614
1615 void wxPyCallbackHelper::clearRecursionGuard(PyObject* method) const
1616 {
1617 PyFunctionObject* func = (PyFunctionObject*)PyMethod_Function(method);
1618 if (PyObject_HasAttr(m_self, func->func_name)) {
1619 PyObject_DelAttr(m_self, func->func_name);
1620 }
1621 }
1622
1623 // bool wxPyCallbackHelper::hasRecursionGuard(PyObject* method) const
1624 // {
1625 // PyFunctionObject* func = (PyFunctionObject*)PyMethod_Function(method);
1626 // if (PyObject_HasAttr(m_self, func->func_name)) {
1627 // PyObject* attr = PyObject_GetAttr(m_self, func->func_name);
1628 // bool retval = (attr == Py_None);
1629 // Py_DECREF(attr);
1630 // return retval;
1631 // }
1632 // return false;
1633 // }
1634
1635
1636 bool wxPyCallbackHelper::findCallback(const char* name, bool setGuard) const {
1637 wxPyCallbackHelper* self = (wxPyCallbackHelper*)this; // cast away const
1638 PyObject *method, *klass;
1639 PyObject* nameo = PyString_FromString(name);
1640 self->m_lastFound = NULL;
1641
1642 // If the object (m_self) has an attibute of the given name...
1643 if (m_self && PyObject_HasAttr(m_self, nameo)) {
1644 method = PyObject_GetAttr(m_self, nameo);
1645
1646 // ...and if that attribute is a method, and if that method's class is
1647 // not from the registered class or a base class...
1648 if (PyMethod_Check(method) &&
1649 (klass = PyMethod_GetDefiningClass(method, nameo)) != NULL &&
1650 (klass != m_class) &&
1651 PyObject_IsSubclass(klass, m_class)) {
1652
1653 // ...then we'll save a pointer to the method so callCallback can
1654 // call it. But first, set a recursion guard in case the
1655 // overridden method wants to call the base class version.
1656 if (setGuard)
1657 setRecursionGuard(method);
1658 self->m_lastFound = method;
1659 }
1660 else {
1661 Py_DECREF(method);
1662 }
1663 }
1664
1665 Py_DECREF(nameo);
1666 return m_lastFound != NULL;
1667 }
1668
1669
1670 int wxPyCallbackHelper::callCallback(PyObject* argTuple) const {
1671 PyObject* result;
1672 int retval = false;
1673
1674 result = callCallbackObj(argTuple);
1675 if (result) { // Assumes an integer return type...
1676 retval = PyInt_AsLong(result);
1677 Py_DECREF(result);
1678 PyErr_Clear(); // forget about it if it's not...
1679 }
1680 return retval;
1681 }
1682
1683 // Invoke the Python callable object, returning the raw PyObject return
1684 // value. Caller should DECREF the return value and also manage the GIL.
1685 PyObject* wxPyCallbackHelper::callCallbackObj(PyObject* argTuple) const {
1686 PyObject* result;
1687
1688 // Save a copy of the pointer in case the callback generates another
1689 // callback. In that case m_lastFound will have a different value when
1690 // it gets back here...
1691 PyObject* method = m_lastFound;
1692
1693 result = PyEval_CallObject(method, argTuple);
1694 clearRecursionGuard(method);
1695
1696 Py_DECREF(argTuple);
1697 Py_DECREF(method);
1698 if (!result) {
1699 PyErr_Print();
1700 }
1701 return result;
1702 }
1703
1704
1705 void wxPyCBH_setCallbackInfo(wxPyCallbackHelper& cbh, PyObject* self, PyObject* klass, int incref) {
1706 cbh.setSelf(self, klass, incref);
1707 }
1708
1709 bool wxPyCBH_findCallback(const wxPyCallbackHelper& cbh, const char* name, bool setGuard) {
1710 return cbh.findCallback(name, setGuard);
1711 }
1712
1713 int wxPyCBH_callCallback(const wxPyCallbackHelper& cbh, PyObject* argTuple) {
1714 return cbh.callCallback(argTuple);
1715 }
1716
1717 PyObject* wxPyCBH_callCallbackObj(const wxPyCallbackHelper& cbh, PyObject* argTuple) {
1718 return cbh.callCallbackObj(argTuple);
1719 }
1720
1721
1722 void wxPyCBH_delete(wxPyCallbackHelper* cbh) {
1723 if (cbh->m_incRef) {
1724 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1725 Py_XDECREF(cbh->m_self);
1726 Py_XDECREF(cbh->m_class);
1727 wxPyEndBlockThreads(blocked);
1728 }
1729 }
1730
1731 //---------------------------------------------------------------------------
1732 //---------------------------------------------------------------------------
1733 // These event classes can be derived from in Python and passed through the event
1734 // system without losing anything. They do this by keeping a reference to
1735 // themselves and some special case handling in wxPyCallback::EventThunker.
1736
1737
1738 wxPyEvtSelfRef::wxPyEvtSelfRef() {
1739 //m_self = Py_None; // **** We don't do normal ref counting to prevent
1740 //Py_INCREF(m_self); // circular loops...
1741 m_cloned = false;
1742 }
1743
1744 wxPyEvtSelfRef::~wxPyEvtSelfRef() {
1745 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1746 if (m_cloned)
1747 Py_DECREF(m_self);
1748 wxPyEndBlockThreads(blocked);
1749 }
1750
1751 void wxPyEvtSelfRef::SetSelf(PyObject* self, bool clone) {
1752 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1753 if (m_cloned)
1754 Py_DECREF(m_self);
1755 m_self = self;
1756 if (clone) {
1757 Py_INCREF(m_self);
1758 m_cloned = true;
1759 }
1760 wxPyEndBlockThreads(blocked);
1761 }
1762
1763 PyObject* wxPyEvtSelfRef::GetSelf() const {
1764 Py_INCREF(m_self);
1765 return m_self;
1766 }
1767
1768
1769 IMPLEMENT_ABSTRACT_CLASS(wxPyEvent, wxEvent);
1770 IMPLEMENT_ABSTRACT_CLASS(wxPyCommandEvent, wxCommandEvent);
1771
1772
1773 wxPyEvent::wxPyEvent(int winid, wxEventType commandType)
1774 : wxEvent(winid, commandType) {
1775 }
1776
1777
1778 wxPyEvent::wxPyEvent(const wxPyEvent& evt)
1779 : wxEvent(evt)
1780 {
1781 SetSelf(evt.m_self, true);
1782 }
1783
1784
1785 wxPyEvent::~wxPyEvent() {
1786 }
1787
1788
1789 wxPyCommandEvent::wxPyCommandEvent(wxEventType commandType, int id)
1790 : wxCommandEvent(commandType, id) {
1791 }
1792
1793
1794 wxPyCommandEvent::wxPyCommandEvent(const wxPyCommandEvent& evt)
1795 : wxCommandEvent(evt)
1796 {
1797 SetSelf(evt.m_self, true);
1798 }
1799
1800
1801 wxPyCommandEvent::~wxPyCommandEvent() {
1802 }
1803
1804
1805
1806
1807
1808 //---------------------------------------------------------------------------
1809 //---------------------------------------------------------------------------
1810 // Convert a wxList to a Python List, only works for lists of wxObjects
1811
1812 PyObject* wxPy_ConvertList(wxListBase* listbase) {
1813 wxList* list = (wxList*)listbase; // this is probably bad...
1814 PyObject* pyList;
1815 PyObject* pyObj;
1816 wxObject* wxObj;
1817 wxNode* node = list->GetFirst();
1818
1819 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1820 pyList = PyList_New(0);
1821 while (node) {
1822 wxObj = node->GetData();
1823 pyObj = wxPyMake_wxObject(wxObj,false);
1824 PyList_Append(pyList, pyObj);
1825 node = node->GetNext();
1826 }
1827 wxPyEndBlockThreads(blocked);
1828 return pyList;
1829 }
1830
1831 //----------------------------------------------------------------------
1832
1833 long wxPyGetWinHandle(wxWindow* win) {
1834
1835 #ifdef __WXMSW__
1836 return (long)win->GetHandle();
1837 #endif
1838
1839 #if defined(__WXGTK__) || defined(__WXX11)
1840 return (long)GetXWindow(win);
1841 #endif
1842
1843 #ifdef __WXMAC__
1844 //return (long)MAC_WXHWND(win->MacGetTopLevelWindowRef());
1845 return (long)win->GetHandle();
1846 #endif
1847
1848 return 0;
1849 }
1850
1851 //----------------------------------------------------------------------
1852 // Some helper functions for typemaps in my_typemaps.i, so they won't be
1853 // included in every file over and over again...
1854
1855 wxString* wxString_in_helper(PyObject* source) {
1856 wxString* target = NULL;
1857
1858 if (!PyString_Check(source) && !PyUnicode_Check(source)) {
1859 PyErr_SetString(PyExc_TypeError, "String or Unicode type required");
1860 return NULL;
1861 }
1862 #if wxUSE_UNICODE
1863 PyObject* uni = source;
1864 if (PyString_Check(source)) {
1865 uni = PyUnicode_FromEncodedObject(source, wxPyDefaultEncoding, "strict");
1866 if (PyErr_Occurred()) return NULL;
1867 }
1868 target = new wxString();
1869 size_t len = PyUnicode_GET_SIZE(uni);
1870 if (len) {
1871 PyUnicode_AsWideChar((PyUnicodeObject*)uni, target->GetWriteBuf(len), len);
1872 target->UngetWriteBuf(len);
1873 }
1874
1875 if (PyString_Check(source))
1876 Py_DECREF(uni);
1877 #else
1878 // Convert to a string object if it isn't already, then to wxString
1879 PyObject* str = source;
1880 if (PyUnicode_Check(source)) {
1881 str = PyUnicode_AsEncodedString(source, wxPyDefaultEncoding, "strict");
1882 if (PyErr_Occurred()) return NULL;
1883 }
1884 else if (!PyString_Check(source)) {
1885 str = PyObject_Str(source);
1886 if (PyErr_Occurred()) return NULL;
1887 }
1888 char* tmpPtr; Py_ssize_t tmpSize;
1889 PyString_AsStringAndSize(str, &tmpPtr, &tmpSize);
1890 target = new wxString(tmpPtr, tmpSize);
1891
1892 if (!PyString_Check(source))
1893 Py_DECREF(str);
1894 #endif // wxUSE_UNICODE
1895
1896 return target;
1897 }
1898
1899
1900 // Similar to above except doesn't use "new" and doesn't set an exception
1901 wxString Py2wxString(PyObject* source)
1902 {
1903 wxString target;
1904
1905 #if wxUSE_UNICODE
1906 // Convert to a unicode object, if not already, then to a wxString
1907 PyObject* uni = source;
1908 if (!PyUnicode_Check(source)) {
1909 uni = PyUnicode_FromEncodedObject(source, wxPyDefaultEncoding, "strict");
1910 if (PyErr_Occurred()) return wxEmptyString; // TODO: should we PyErr_Clear?
1911 }
1912 size_t len = PyUnicode_GET_SIZE(uni);
1913 if (len) {
1914 PyUnicode_AsWideChar((PyUnicodeObject*)uni, target.GetWriteBuf(len), len);
1915 target.UngetWriteBuf();
1916 }
1917
1918 if (!PyUnicode_Check(source))
1919 Py_DECREF(uni);
1920 #else
1921 // Convert to a string object if it isn't already, then to wxString
1922 PyObject* str = source;
1923 if (PyUnicode_Check(source)) {
1924 str = PyUnicode_AsEncodedString(source, wxPyDefaultEncoding, "strict");
1925 if (PyErr_Occurred()) return wxEmptyString; // TODO: should we PyErr_Clear?
1926 }
1927 else if (!PyString_Check(source)) {
1928 str = PyObject_Str(source);
1929 if (PyErr_Occurred()) return wxEmptyString; // TODO: should we PyErr_Clear?
1930 }
1931 char* tmpPtr; Py_ssize_t tmpSize;
1932 PyString_AsStringAndSize(str, &tmpPtr, &tmpSize);
1933 target = wxString(tmpPtr, tmpSize);
1934
1935 if (!PyString_Check(source))
1936 Py_DECREF(str);
1937 #endif // wxUSE_UNICODE
1938
1939 return target;
1940 }
1941
1942
1943 // Make either a Python String or Unicode object, depending on build mode
1944 PyObject* wx2PyString(const wxString& src)
1945 {
1946 PyObject* str;
1947 #if wxUSE_UNICODE
1948 str = PyUnicode_FromWideChar(src.c_str(), src.Len());
1949 #else
1950 str = PyString_FromStringAndSize(src.c_str(), src.Len());
1951 #endif
1952 return str;
1953 }
1954
1955
1956
1957 void wxSetDefaultPyEncoding(const char* encoding)
1958 {
1959 strncpy(wxPyDefaultEncoding, encoding, DEFAULTENCODING_SIZE);
1960 }
1961
1962 const char* wxGetDefaultPyEncoding()
1963 {
1964 return wxPyDefaultEncoding;
1965 }
1966
1967 //----------------------------------------------------------------------
1968
1969
1970 byte* byte_LIST_helper(PyObject* source) {
1971 if (!PyList_Check(source)) {
1972 PyErr_SetString(PyExc_TypeError, "Expected a list object.");
1973 return NULL;
1974 }
1975 int count = PyList_Size(source);
1976 byte* temp = new byte[count];
1977 if (! temp) {
1978 PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array");
1979 return NULL;
1980 }
1981 for (int x=0; x<count; x++) {
1982 PyObject* o = PyList_GetItem(source, x);
1983 if (! PyInt_Check(o)) {
1984 PyErr_SetString(PyExc_TypeError, "Expected a list of integers.");
1985 return NULL;
1986 }
1987 temp[x] = (byte)PyInt_AsLong(o);
1988 }
1989 return temp;
1990 }
1991
1992
1993 int* int_LIST_helper(PyObject* source) {
1994 if (!PyList_Check(source)) {
1995 PyErr_SetString(PyExc_TypeError, "Expected a list object.");
1996 return NULL;
1997 }
1998 int count = PyList_Size(source);
1999 int* temp = new int[count];
2000 if (! temp) {
2001 PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array");
2002 return NULL;
2003 }
2004 for (int x=0; x<count; x++) {
2005 PyObject* o = PyList_GetItem(source, x);
2006 if (! PyInt_Check(o)) {
2007 PyErr_SetString(PyExc_TypeError, "Expected a list of integers.");
2008 return NULL;
2009 }
2010 temp[x] = PyInt_AsLong(o);
2011 }
2012 return temp;
2013 }
2014
2015
2016 long* long_LIST_helper(PyObject* source) {
2017 if (!PyList_Check(source)) {
2018 PyErr_SetString(PyExc_TypeError, "Expected a list object.");
2019 return NULL;
2020 }
2021 int count = PyList_Size(source);
2022 long* temp = new long[count];
2023 if (! temp) {
2024 PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array");
2025 return NULL;
2026 }
2027 for (int x=0; x<count; x++) {
2028 PyObject* o = PyList_GetItem(source, x);
2029 if (! PyInt_Check(o)) {
2030 PyErr_SetString(PyExc_TypeError, "Expected a list of integers.");
2031 return NULL;
2032 }
2033 temp[x] = PyInt_AsLong(o);
2034 }
2035 return temp;
2036 }
2037
2038
2039 char** string_LIST_helper(PyObject* source) {
2040 if (!PyList_Check(source)) {
2041 PyErr_SetString(PyExc_TypeError, "Expected a list object.");
2042 return NULL;
2043 }
2044 int count = PyList_Size(source);
2045 char** temp = new char*[count];
2046 if (! temp) {
2047 PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array");
2048 return NULL;
2049 }
2050 for (int x=0; x<count; x++) {
2051 PyObject* o = PyList_GetItem(source, x);
2052 if (! PyString_Check(o)) {
2053 PyErr_SetString(PyExc_TypeError, "Expected a list of strings.");
2054 return NULL;
2055 }
2056 temp[x] = PyString_AsString(o);
2057 }
2058 return temp;
2059 }
2060
2061 //--------------------------------
2062 // Part of patch from Tim Hochberg
2063 static inline bool wxPointFromObjects(PyObject* o1, PyObject* o2, wxPoint* point) {
2064 if (PyInt_Check(o1) && PyInt_Check(o2)) {
2065 point->x = PyInt_AS_LONG(o1);
2066 point->y = PyInt_AS_LONG(o2);
2067 return true;
2068 }
2069 if (PyFloat_Check(o1) && PyFloat_Check(o2)) {
2070 point->x = (int)PyFloat_AS_DOUBLE(o1);
2071 point->y = (int)PyFloat_AS_DOUBLE(o2);
2072 return true;
2073 }
2074 if (wxPySwigInstance_Check(o1) || wxPySwigInstance_Check(o2)) { // TODO: Why???
2075 // Disallow instances because they can cause havok
2076 return false;
2077 }
2078 if (PyNumber_Check(o1) && PyNumber_Check(o2)) {
2079 // I believe this excludes instances, so this should be safe without INCREFFing o1 and o2
2080 point->x = PyInt_AsLong(o1);
2081 point->y = PyInt_AsLong(o2);
2082 return true;
2083 }
2084 return false;
2085 }
2086
2087
2088 wxPoint* wxPoint_LIST_helper(PyObject* source, int *count) {
2089 // Putting all of the declarations here allows
2090 // us to put the error handling all in one place.
2091 int x;
2092 wxPoint* temp;
2093 PyObject *o, *o1, *o2;
2094 bool isFast = PyList_Check(source) || PyTuple_Check(source);
2095
2096 if (!PySequence_Check(source)) {
2097 goto error0;
2098 }
2099
2100 // The length of the sequence is returned in count.
2101 *count = PySequence_Length(source);
2102 if (*count < 0) {
2103 goto error0;
2104 }
2105
2106 temp = new wxPoint[*count];
2107 if (!temp) {
2108 PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array");
2109 return NULL;
2110 }
2111 for (x=0; x<*count; x++) {
2112 // Get an item: try fast way first.
2113 if (isFast) {
2114 o = PySequence_Fast_GET_ITEM(source, x);
2115 }
2116 else {
2117 o = PySequence_GetItem(source, x);
2118 if (o == NULL) {
2119 goto error1;
2120 }
2121 }
2122
2123 // Convert o to wxPoint.
2124 if ((PyTuple_Check(o) && PyTuple_GET_SIZE(o) == 2) ||
2125 (PyList_Check(o) && PyList_GET_SIZE(o) == 2)) {
2126 o1 = PySequence_Fast_GET_ITEM(o, 0);
2127 o2 = PySequence_Fast_GET_ITEM(o, 1);
2128 if (!wxPointFromObjects(o1, o2, &temp[x])) {
2129 goto error2;
2130 }
2131 }
2132 else if (wxPySwigInstance_Check(o)) {
2133 wxPoint* pt;
2134 if (! wxPyConvertSwigPtr(o, (void **)&pt, wxT("wxPoint"))) {
2135 goto error2;
2136 }
2137 temp[x] = *pt;
2138 }
2139 else if (PySequence_Check(o) && PySequence_Length(o) == 2) {
2140 o1 = PySequence_GetItem(o, 0);
2141 o2 = PySequence_GetItem(o, 1);
2142 if (!wxPointFromObjects(o1, o2, &temp[x])) {
2143 goto error3;
2144 }
2145 Py_DECREF(o1);
2146 Py_DECREF(o2);
2147 }
2148 else {
2149 goto error2;
2150 }
2151 // Clean up.
2152 if (!isFast)
2153 Py_DECREF(o);
2154 }
2155 return temp;
2156
2157 error3:
2158 Py_DECREF(o1);
2159 Py_DECREF(o2);
2160 error2:
2161 if (!isFast)
2162 Py_DECREF(o);
2163 error1:
2164 delete [] temp;
2165 error0:
2166 PyErr_SetString(PyExc_TypeError, "Expected a sequence of length-2 sequences or wxPoints.");
2167 return NULL;
2168 }
2169 // end of patch
2170 //------------------------------
2171
2172
2173 wxBitmap** wxBitmap_LIST_helper(PyObject* source) {
2174 if (!PyList_Check(source)) {
2175 PyErr_SetString(PyExc_TypeError, "Expected a list object.");
2176 return NULL;
2177 }
2178 int count = PyList_Size(source);
2179 wxBitmap** temp = new wxBitmap*[count];
2180 if (! temp) {
2181 PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array");
2182 return NULL;
2183 }
2184 for (int x=0; x<count; x++) {
2185 PyObject* o = PyList_GetItem(source, x);
2186 if (wxPySwigInstance_Check(o)) {
2187 wxBitmap* pt;
2188 if (! wxPyConvertSwigPtr(o, (void **) &pt, wxT("wxBitmap"))) {
2189 PyErr_SetString(PyExc_TypeError,"Expected wxBitmap.");
2190 return NULL;
2191 }
2192 temp[x] = pt;
2193 }
2194 else {
2195 PyErr_SetString(PyExc_TypeError, "Expected a list of wxBitmaps.");
2196 return NULL;
2197 }
2198 }
2199 return temp;
2200 }
2201
2202
2203
2204 wxString* wxString_LIST_helper(PyObject* source) {
2205 if (!PyList_Check(source)) {
2206 PyErr_SetString(PyExc_TypeError, "Expected a list object.");
2207 return NULL;
2208 }
2209 int count = PyList_Size(source);
2210 wxString* temp = new wxString[count];
2211 if (! temp) {
2212 PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array");
2213 return NULL;
2214 }
2215 for (int x=0; x<count; x++) {
2216 PyObject* o = PyList_GetItem(source, x);
2217 #if PYTHON_API_VERSION >= 1009
2218 if (! PyString_Check(o) && ! PyUnicode_Check(o)) {
2219 PyErr_SetString(PyExc_TypeError, "Expected a list of string or unicode objects.");
2220 return NULL;
2221 }
2222 #else
2223 if (! PyString_Check(o)) {
2224 PyErr_SetString(PyExc_TypeError, "Expected a list of strings.");
2225 return NULL;
2226 }
2227 #endif
2228
2229 wxString* pStr = wxString_in_helper(o);
2230 temp[x] = *pStr;
2231 delete pStr;
2232 }
2233 return temp;
2234 }
2235
2236
2237 wxAcceleratorEntry* wxAcceleratorEntry_LIST_helper(PyObject* source) {
2238 if (!PyList_Check(source)) {
2239 PyErr_SetString(PyExc_TypeError, "Expected a list object.");
2240 return NULL;
2241 }
2242 int count = PyList_Size(source);
2243 wxAcceleratorEntry* temp = new wxAcceleratorEntry[count];
2244 if (! temp) {
2245 PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array");
2246 return NULL;
2247 }
2248 for (int x=0; x<count; x++) {
2249 PyObject* o = PyList_GetItem(source, x);
2250 if (wxPySwigInstance_Check(o)) {
2251 wxAcceleratorEntry* ae;
2252 if (! wxPyConvertSwigPtr(o, (void **) &ae, wxT("wxAcceleratorEntry"))) {
2253 PyErr_SetString(PyExc_TypeError,"Expected wxAcceleratorEntry.");
2254 return NULL;
2255 }
2256 temp[x] = *ae;
2257 }
2258 else if (PyTuple_Check(o)) {
2259 PyObject* o1 = PyTuple_GetItem(o, 0);
2260 PyObject* o2 = PyTuple_GetItem(o, 1);
2261 PyObject* o3 = PyTuple_GetItem(o, 2);
2262 temp[x].Set(PyInt_AsLong(o1), PyInt_AsLong(o2), PyInt_AsLong(o3));
2263 }
2264 else {
2265 PyErr_SetString(PyExc_TypeError, "Expected a list of 3-tuples or wxAcceleratorEntry objects.");
2266 return NULL;
2267 }
2268 }
2269 return temp;
2270 }
2271
2272
2273 wxPen** wxPen_LIST_helper(PyObject* source) {
2274 if (!PyList_Check(source)) {
2275 PyErr_SetString(PyExc_TypeError, "Expected a list object.");
2276 return NULL;
2277 }
2278 int count = PyList_Size(source);
2279 wxPen** temp = new wxPen*[count];
2280 if (!temp) {
2281 PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array");
2282 return NULL;
2283 }
2284 for (int x=0; x<count; x++) {
2285 PyObject* o = PyList_GetItem(source, x);
2286 if (wxPySwigInstance_Check(o)) {
2287 wxPen* pt;
2288 if (! wxPyConvertSwigPtr(o, (void **)&pt, wxT("wxPen"))) {
2289 delete temp;
2290 PyErr_SetString(PyExc_TypeError,"Expected wxPen.");
2291 return NULL;
2292 }
2293 temp[x] = pt;
2294 }
2295 else {
2296 delete temp;
2297 PyErr_SetString(PyExc_TypeError, "Expected a list of wxPens.");
2298 return NULL;
2299 }
2300 }
2301 return temp;
2302 }
2303
2304
2305 bool wxPy2int_seq_helper(PyObject* source, int* i1, int* i2) {
2306 bool isFast = PyList_Check(source) || PyTuple_Check(source);
2307 PyObject *o1, *o2;
2308
2309 if (!PySequence_Check(source) || PySequence_Length(source) != 2)
2310 return false;
2311
2312 if (isFast) {
2313 o1 = PySequence_Fast_GET_ITEM(source, 0);
2314 o2 = PySequence_Fast_GET_ITEM(source, 1);
2315 }
2316 else {
2317 o1 = PySequence_GetItem(source, 0);
2318 o2 = PySequence_GetItem(source, 1);
2319 }
2320
2321 *i1 = PyInt_AsLong(o1);
2322 *i2 = PyInt_AsLong(o2);
2323
2324 if (! isFast) {
2325 Py_DECREF(o1);
2326 Py_DECREF(o2);
2327 }
2328 return true;
2329 }
2330
2331
2332 bool wxPy4int_seq_helper(PyObject* source, int* i1, int* i2, int* i3, int* i4) {
2333 bool isFast = PyList_Check(source) || PyTuple_Check(source);
2334 PyObject *o1, *o2, *o3, *o4;
2335
2336 if (!PySequence_Check(source) || PySequence_Length(source) != 4)
2337 return false;
2338
2339 if (isFast) {
2340 o1 = PySequence_Fast_GET_ITEM(source, 0);
2341 o2 = PySequence_Fast_GET_ITEM(source, 1);
2342 o3 = PySequence_Fast_GET_ITEM(source, 2);
2343 o4 = PySequence_Fast_GET_ITEM(source, 3);
2344 }
2345 else {
2346 o1 = PySequence_GetItem(source, 0);
2347 o2 = PySequence_GetItem(source, 1);
2348 o3 = PySequence_GetItem(source, 2);
2349 o4 = PySequence_GetItem(source, 3);
2350 }
2351
2352 *i1 = PyInt_AsLong(o1);
2353 *i2 = PyInt_AsLong(o2);
2354 *i3 = PyInt_AsLong(o3);
2355 *i4 = PyInt_AsLong(o4);
2356
2357 if (! isFast) {
2358 Py_DECREF(o1);
2359 Py_DECREF(o2);
2360 Py_DECREF(o3);
2361 Py_DECREF(o4);
2362 }
2363 return true;
2364 }
2365
2366
2367 //----------------------------------------------------------------------
2368
2369 bool wxPySimple_typecheck(PyObject* source, const wxChar* classname, int seqLen)
2370 {
2371 void* ptr;
2372
2373 if (wxPySwigInstance_Check(source) &&
2374 wxPyConvertSwigPtr(source, (void **)&ptr, classname))
2375 return true;
2376
2377 PyErr_Clear();
2378 if (PySequence_Check(source) && PySequence_Length(source) == seqLen)
2379 return true;
2380
2381 return false;
2382 }
2383
2384 bool wxSize_helper(PyObject* source, wxSize** obj)
2385 {
2386 if (source == Py_None) {
2387 **obj = wxSize(-1,-1);
2388 return true;
2389 }
2390 return wxPyTwoIntItem_helper(source, obj, wxT("wxSize"));
2391 }
2392
2393
2394 bool wxPoint_helper(PyObject* source, wxPoint** obj)
2395 {
2396 if (source == Py_None) {
2397 **obj = wxPoint(-1,-1);
2398 return true;
2399 }
2400 return wxPyTwoIntItem_helper(source, obj, wxT("wxPoint"));
2401 }
2402
2403
2404
2405 bool wxRealPoint_helper(PyObject* source, wxRealPoint** obj) {
2406
2407 if (source == Py_None) {
2408 **obj = wxRealPoint(-1,-1);
2409 return true;
2410 }
2411
2412 // If source is an object instance then it may already be the right type
2413 if (wxPySwigInstance_Check(source)) {
2414 wxRealPoint* ptr;
2415 if (! wxPyConvertSwigPtr(source, (void **)&ptr, wxT("wxRealPoint")))
2416 goto error;
2417 *obj = ptr;
2418 return true;
2419 }
2420 // otherwise a 2-tuple of floats is expected
2421 else if (PySequence_Check(source) && PyObject_Length(source) == 2) {
2422 PyObject* o1 = PySequence_GetItem(source, 0);
2423 PyObject* o2 = PySequence_GetItem(source, 1);
2424 if (!PyNumber_Check(o1) || !PyNumber_Check(o2)) {
2425 Py_DECREF(o1);
2426 Py_DECREF(o2);
2427 goto error;
2428 }
2429 **obj = wxRealPoint(PyFloat_AsDouble(o1), PyFloat_AsDouble(o2));
2430 Py_DECREF(o1);
2431 Py_DECREF(o2);
2432 return true;
2433 }
2434
2435 error:
2436 PyErr_SetString(PyExc_TypeError, "Expected a 2-tuple of floats or a wxRealPoint object.");
2437 return false;
2438 }
2439
2440
2441
2442 bool wxRect_helper(PyObject* source, wxRect** obj) {
2443
2444 if (source == Py_None) {
2445 **obj = wxRect(-1,-1,-1,-1);
2446 return true;
2447 }
2448
2449 // If source is an object instance then it may already be the right type
2450 if (wxPySwigInstance_Check(source)) {
2451 wxRect* ptr;
2452 if (! wxPyConvertSwigPtr(source, (void **)&ptr, wxT("wxRect")))
2453 goto error;
2454 *obj = ptr;
2455 return true;
2456 }
2457 // otherwise a 4-tuple of integers is expected
2458 else if (PySequence_Check(source) && PyObject_Length(source) == 4) {
2459 PyObject* o1 = PySequence_GetItem(source, 0);
2460 PyObject* o2 = PySequence_GetItem(source, 1);
2461 PyObject* o3 = PySequence_GetItem(source, 2);
2462 PyObject* o4 = PySequence_GetItem(source, 3);
2463 if (!PyNumber_Check(o1) || !PyNumber_Check(o2) ||
2464 !PyNumber_Check(o3) || !PyNumber_Check(o4)) {
2465 Py_DECREF(o1);
2466 Py_DECREF(o2);
2467 Py_DECREF(o3);
2468 Py_DECREF(o4);
2469 goto error;
2470 }
2471 **obj = wxRect(PyInt_AsLong(o1), PyInt_AsLong(o2),
2472 PyInt_AsLong(o3), PyInt_AsLong(o4));
2473 Py_DECREF(o1);
2474 Py_DECREF(o2);
2475 Py_DECREF(o3);
2476 Py_DECREF(o4);
2477 return true;
2478 }
2479
2480 error:
2481 PyErr_SetString(PyExc_TypeError, "Expected a 4-tuple of integers or a wxRect object.");
2482 return false;
2483 }
2484
2485
2486
2487 bool wxColour_helper(PyObject* source, wxColour** obj) {
2488
2489 if (source == Py_None) {
2490 **obj = wxNullColour;
2491 return true;
2492 }
2493
2494 // If source is an object instance then it may already be the right type
2495 if (wxPySwigInstance_Check(source)) {
2496 wxColour* ptr;
2497 if (! wxPyConvertSwigPtr(source, (void **)&ptr, wxT("wxColour")))
2498 goto error;
2499 *obj = ptr;
2500 return true;
2501 }
2502 // otherwise check for a string
2503 else if (PyString_Check(source) || PyUnicode_Check(source)) {
2504 wxString spec = Py2wxString(source);
2505 if (spec.GetChar(0) == '#' && spec.Length() == 7) { // It's #RRGGBB
2506 long red, green, blue;
2507 red = green = blue = 0;
2508 spec.Mid(1,2).ToLong(&red, 16);
2509 spec.Mid(3,2).ToLong(&green, 16);
2510 spec.Mid(5,2).ToLong(&blue, 16);
2511
2512 **obj = wxColour(red, green, blue);
2513 return true;
2514 }
2515 else { // it's a colour name
2516 **obj = wxColour(spec);
2517 return true;
2518 }
2519 }
2520 // last chance: 3-tuple or 4-tuple of integers is expected
2521 else if (PySequence_Check(source) && PyObject_Length(source) == 3) {
2522 PyObject* o1 = PySequence_GetItem(source, 0);
2523 PyObject* o2 = PySequence_GetItem(source, 1);
2524 PyObject* o3 = PySequence_GetItem(source, 2);
2525 if (!PyNumber_Check(o1) || !PyNumber_Check(o2) || !PyNumber_Check(o3)) {
2526 Py_DECREF(o1);
2527 Py_DECREF(o2);
2528 Py_DECREF(o3);
2529 goto error;
2530 }
2531 **obj = wxColour(PyInt_AsLong(o1), PyInt_AsLong(o2), PyInt_AsLong(o3));
2532 Py_DECREF(o1);
2533 Py_DECREF(o2);
2534 Py_DECREF(o3);
2535 return true;
2536 }
2537 else if (PySequence_Check(source) && PyObject_Length(source) == 4) {
2538 PyObject* o1 = PySequence_GetItem(source, 0);
2539 PyObject* o2 = PySequence_GetItem(source, 1);
2540 PyObject* o3 = PySequence_GetItem(source, 2);
2541 PyObject* o4 = PySequence_GetItem(source, 3);
2542 if (!PyNumber_Check(o1) || !PyNumber_Check(o2) || !PyNumber_Check(o3) || !PyNumber_Check(o4)) {
2543 Py_DECREF(o1);
2544 Py_DECREF(o2);
2545 Py_DECREF(o3);
2546 Py_DECREF(o4);
2547 goto error;
2548 }
2549 **obj = wxColour(PyInt_AsLong(o1), PyInt_AsLong(o2), PyInt_AsLong(o3), PyInt_AsLong(o4));
2550 Py_DECREF(o1);
2551 Py_DECREF(o2);
2552 Py_DECREF(o3);
2553 Py_DECREF(o4);
2554 return true;
2555 }
2556
2557 error:
2558 PyErr_SetString(PyExc_TypeError,
2559 "Expected a wxColour object, a string containing a colour name or '#RRGGBB', or a 3- or 4-tuple of integers.");
2560 return false;
2561 }
2562
2563
2564 bool wxColour_typecheck(PyObject* source) {
2565
2566 if (wxPySimple_typecheck(source, wxT("wxColour"), 3))
2567 return true;
2568
2569 if (PyString_Check(source) || PyUnicode_Check(source))
2570 return true;
2571
2572 return false;
2573 }
2574
2575
2576
2577 bool wxPoint2D_helper(PyObject* source, wxPoint2D** obj) {
2578
2579 if (source == Py_None) {
2580 **obj = wxPoint2D(-1,-1);
2581 return true;
2582 }
2583
2584 // If source is an object instance then it may already be the right type
2585 if (wxPySwigInstance_Check(source)) {
2586 wxPoint2D* ptr;
2587 if (! wxPyConvertSwigPtr(source, (void **)&ptr, wxT("wxPoint2D")))
2588 goto error;
2589 *obj = ptr;
2590 return true;
2591 }
2592 // otherwise a length-2 sequence of floats is expected
2593 if (PySequence_Check(source) && PySequence_Length(source) == 2) {
2594 PyObject* o1 = PySequence_GetItem(source, 0);
2595 PyObject* o2 = PySequence_GetItem(source, 1);
2596 // This should really check for floats, not numbers -- but that would break code.
2597 if (!PyNumber_Check(o1) || !PyNumber_Check(o2)) {
2598 Py_DECREF(o1);
2599 Py_DECREF(o2);
2600 goto error;
2601 }
2602 **obj = wxPoint2D(PyFloat_AsDouble(o1), PyFloat_AsDouble(o2));
2603 Py_DECREF(o1);
2604 Py_DECREF(o2);
2605 return true;
2606 }
2607 error:
2608 PyErr_SetString(PyExc_TypeError, "Expected a 2-tuple of floats or a wxPoint2D object.");
2609 return false;
2610 }
2611
2612
2613 //----------------------------------------------------------------------
2614
2615 PyObject* wxArrayString2PyList_helper(const wxArrayString& arr) {
2616
2617 PyObject* list = PyList_New(0);
2618 for (size_t i=0; i < arr.GetCount(); i++) {
2619 #if wxUSE_UNICODE
2620 PyObject* str = PyUnicode_FromWideChar(arr[i].c_str(), arr[i].Len());
2621 #else
2622 PyObject* str = PyString_FromStringAndSize(arr[i].c_str(), arr[i].Len());
2623 #endif
2624 PyList_Append(list, str);
2625 Py_DECREF(str);
2626 }
2627 return list;
2628 }
2629
2630
2631 PyObject* wxArrayInt2PyList_helper(const wxArrayInt& arr) {
2632
2633 PyObject* list = PyList_New(0);
2634 for (size_t i=0; i < arr.GetCount(); i++) {
2635 PyObject* number = PyInt_FromLong(arr[i]);
2636 PyList_Append(list, number);
2637 Py_DECREF(number);
2638 }
2639 return list;
2640 }
2641
2642
2643 //----------------------------------------------------------------------
2644 // wxPyImageHandler methods
2645 //
2646 // TODO: Switch these to use wxPython's standard macros and helper classes
2647 // for calling callbacks.
2648
2649 PyObject* wxPyImageHandler::m_DoCanRead_Name = NULL;
2650 PyObject* wxPyImageHandler::m_GetImageCount_Name = NULL;
2651 PyObject* wxPyImageHandler::m_LoadFile_Name = NULL;
2652 PyObject* wxPyImageHandler::m_SaveFile_Name = NULL;
2653
2654 PyObject* wxPyImageHandler::py_InputStream(wxInputStream* stream) {
2655 return wxPyConstructObject(new wxPyInputStream(stream),
2656 wxT("wxPyInputStream"), 0);
2657 }
2658
2659 PyObject* wxPyImageHandler::py_Image(wxImage* image) {
2660 return wxPyConstructObject(image, wxT("wxImage"), 0);
2661 }
2662
2663 PyObject* wxPyImageHandler::py_OutputStream(wxOutputStream* stream) {
2664 return wxPyConstructObject(stream, wxT("wxOutputStream"), 0);
2665 }
2666
2667 wxPyImageHandler::wxPyImageHandler():
2668 m_self(NULL)
2669 {
2670 if (!m_DoCanRead_Name) {
2671 m_DoCanRead_Name = PyString_FromString("DoCanRead");
2672 m_GetImageCount_Name = PyString_FromString("GetImageCount");
2673 m_LoadFile_Name = PyString_FromString("LoadFile");
2674 m_SaveFile_Name = PyString_FromString("SaveFile");
2675 }
2676 }
2677
2678 wxPyImageHandler::~wxPyImageHandler() {
2679 if (m_self) {
2680 Py_DECREF(m_self);
2681 m_self = NULL;
2682 }
2683 }
2684
2685 void wxPyImageHandler::_SetSelf(PyObject *self) {
2686 // should check here for isinstance(PyImageHandler) ??
2687 m_self = self;
2688 Py_INCREF(m_self);
2689 }
2690
2691 bool wxPyImageHandler::DoCanRead(wxInputStream& stream) {
2692 // check if our object has this method
2693 wxPyBlock_t blocked = wxPyBeginBlockThreads();
2694 if (!m_self || !PyObject_HasAttr(m_self, m_DoCanRead_Name)) {
2695 wxPyEndBlockThreads(blocked);
2696 return false;
2697 }
2698
2699 PyObject* res = PyObject_CallMethodObjArgs(m_self, m_DoCanRead_Name,
2700 py_InputStream(&stream), NULL);
2701 bool retval = false;
2702 if (res) {
2703 retval = PyInt_AsLong(res);
2704 Py_DECREF(res);
2705 PyErr_Clear();
2706 }
2707 else
2708 PyErr_Print();
2709 wxPyEndBlockThreads(blocked);
2710 return retval;
2711 }
2712
2713 bool wxPyImageHandler::LoadFile( wxImage* image, wxInputStream& stream,
2714 bool verbose, int index ) {
2715 // check if our object has this method
2716 wxPyBlock_t blocked = wxPyBeginBlockThreads();
2717 if (!m_self || !PyObject_HasAttr(m_self, m_LoadFile_Name)) {
2718 wxPyEndBlockThreads(blocked);
2719 return false;
2720 }
2721 PyObject* res = PyObject_CallMethodObjArgs(m_self, m_LoadFile_Name,
2722 py_Image(image),
2723 py_InputStream(&stream),
2724 PyInt_FromLong(verbose),
2725 PyInt_FromLong(index),
2726 NULL);
2727 bool retval = false;
2728 if (res) {
2729 retval = PyInt_AsLong(res);
2730 Py_DECREF(res);
2731 PyErr_Clear();
2732 } else
2733 PyErr_Print();
2734 wxPyEndBlockThreads(blocked);
2735 return retval;
2736 }
2737
2738 bool wxPyImageHandler::SaveFile( wxImage* image, wxOutputStream& stream,
2739 bool verbose ) {
2740 wxPyBlock_t blocked = wxPyBeginBlockThreads();
2741 if (!m_self || !PyObject_HasAttr(m_self, m_SaveFile_Name)) {
2742 wxPyEndBlockThreads(blocked);
2743 return false;
2744 }
2745 PyObject* res = PyObject_CallMethodObjArgs(m_self, m_SaveFile_Name,
2746 py_Image(image),
2747 py_OutputStream(&stream),
2748 PyInt_FromLong(verbose),
2749 NULL);
2750 bool retval = false;
2751 if(res) {
2752 retval=PyInt_AsLong(res);
2753 Py_DECREF(res);
2754 PyErr_Clear();
2755 } else
2756 PyErr_Print();
2757 wxPyEndBlockThreads(blocked);
2758 return retval;
2759 }
2760
2761 int wxPyImageHandler::GetImageCount( wxInputStream& stream ) {
2762 wxPyBlock_t blocked = wxPyBeginBlockThreads();
2763 if (!m_self || !PyObject_HasAttr(m_self, m_GetImageCount_Name)) {
2764 wxPyEndBlockThreads(blocked);
2765 return 1;
2766 }
2767 PyObject *res=PyObject_CallMethodObjArgs(m_self, m_GetImageCount_Name,
2768 py_InputStream(&stream),
2769 NULL);
2770 int retval = 1;
2771 if(res) {
2772 retval=PyInt_AsLong(res);
2773 Py_DECREF(res);
2774 PyErr_Clear();
2775 } else
2776 PyErr_Print();
2777 wxPyEndBlockThreads(blocked);
2778 return retval;
2779 }
2780
2781
2782 //----------------------------------------------------------------------
2783 // Function to test if the Display (or whatever is the platform equivallent)
2784 // can be connected to. This is accessable from wxPython as a staticmethod of
2785 // wx.App called DisplayAvailable().
2786
2787
2788 bool wxPyTestDisplayAvailable()
2789 {
2790 #ifdef __WXGTK__
2791 Display* display;
2792 display = XOpenDisplay(NULL);
2793 if (display == NULL)
2794 return false;
2795 XCloseDisplay(display);
2796 return true;
2797 #endif
2798
2799 #ifdef __WXMAC__
2800 // This is adapted from Python's Mac/Modules/MacOS.c in the
2801 // MacOS_WMAvailable function.
2802 bool rv;
2803 ProcessSerialNumber psn;
2804
2805 /*
2806 ** This is a fairly innocuous call to make if we don't have a window
2807 ** manager, or if we have no permission to talk to it. It will print
2808 ** a message on stderr, but at least it won't abort the process.
2809 ** It appears the function caches the result itself, and it's cheap, so
2810 ** no need for us to cache.
2811 */
2812 #ifdef kCGNullDirectDisplay
2813 /* On 10.1 CGMainDisplayID() isn't available, and
2814 ** kCGNullDirectDisplay isn't defined.
2815 */
2816 if (CGMainDisplayID() == 0) {
2817 rv = false;
2818 } else
2819 #endif
2820 {
2821 // Also foreground the application on the first call as a side-effect.
2822 if (GetCurrentProcess(&psn) < 0 || SetFrontProcess(&psn) < 0) {
2823 rv = false;
2824 } else {
2825 rv = true;
2826 }
2827 }
2828 return rv;
2829 #endif
2830
2831 #ifdef __WXMSW__
2832 // TODO...
2833 return true;
2834 #endif
2835 }
2836
2837
2838 //----------------------------------------------------------------------
2839 //----------------------------------------------------------------------
2840
2841
2842
2843