1 ////////////////////////////////////////////////////////////////////////////
2 // Name: wxPython_int.h (int == internal)
3 // Purpose: Helper functions/classes for the wxPython extension module
4 // This header should only be inclued directly by those source
5 // modules included in the wx._core module. All others should
6 // include wx/wxPython/wxPython.h instead.
10 // Created: 1-July-1997
12 // Copyright: (c) 1998 by Total Control Software
13 // Licence: wxWindows license
14 /////////////////////////////////////////////////////////////////////////////
16 #ifndef __wxp_helpers__
17 #define __wxp_helpers__
21 #include <wx/busyinfo.h>
23 #include <wx/choicebk.h>
24 #include <wx/clipbrd.h>
25 #include <wx/colordlg.h>
26 #include <wx/config.h>
27 #include <wx/cshelp.h>
28 #include <wx/dcmirror.h>
30 #include <wx/dirctrl.h>
31 #include <wx/dirdlg.h>
32 #include <wx/numdlg.h>
34 #include <wx/docview.h>
35 #include <wx/encconv.h>
36 #include <wx/fdrepdlg.h>
37 #include <wx/fileconf.h>
38 #include <wx/filesys.h>
39 #include <wx/fontdlg.h>
40 #include <wx/fs_inet.h>
41 #include <wx/fs_mem.h>
42 #include <wx/fs_zip.h>
43 #include <wx/gbsizer.h>
44 #include <wx/geometry.h>
45 #include <wx/htmllbox.h>
47 #include <wx/imaglist.h>
49 #include <wx/laywin.h>
50 #include <wx/listbook.h>
51 #include <wx/minifram.h>
52 #include <wx/notebook.h>
54 #include <wx/printdlg.h>
55 #include <wx/process.h>
56 #include <wx/progdlg.h>
57 #include <wx/sashwin.h>
58 #include <wx/spinbutt.h>
59 #include <wx/spinctrl.h>
60 #include <wx/splash.h>
61 #include <wx/splitter.h>
62 #include <wx/statline.h>
63 #include <wx/stream.h>
64 #include <wx/sysopt.h>
65 #include <wx/taskbar.h>
66 #include <wx/tglbtn.h>
67 #include <wx/tipwin.h>
68 #include <wx/toolbook.h>
69 #include <wx/tooltip.h>
70 #include <wx/treebook.h>
72 #include <wx/vscroll.h>
73 #include <wx/dateevt.h>
74 #include <wx/datectrl.h>
76 #include <wx/hyperlink.h>
77 #include <wx/pickerbase.h>
78 #include <wx/clrpicker.h>
79 #include <wx/filepicker.h>
80 #include <wx/fontpicker.h>
84 # pragma warning(disable:4800)
85 # pragma warning(disable:4190)
88 #ifdef __WXMAC__ // avoid a bug in Carbon headers
92 //---------------------------------------------------------------------------
94 #ifndef wxHAS_POWER_EVENTS
95 class wxPowerEvent
: public wxEvent
98 wxPowerEvent(wxEventType evtType
) : wxEvent(wxID_NONE
, evtType
) {}
100 bool IsVetoed() const { return false; }
101 virtual wxEvent
*Clone() const { return new wxPowerEvent(*this); }
105 //---------------------------------------------------------------------------
106 typedef unsigned char byte
;
107 typedef unsigned char* buffer
;
109 typedef wxPoint2DDouble wxPoint2D
;
110 typedef wxRect2DDouble wxRect2D
;
112 #ifndef SWIG_TYPE_TABLE
113 #define SWIG_TYPE_TABLE wxPython_type_table
117 #define wxDEFAULT_STATUSBAR_STYLE wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE
119 #define wxDEFAULT_STATUSBAR_STYLE wxST_SIZEGRIP
123 #ifndef wxPyUSE_EXPORTED_API
125 void __wxPyPreStart(PyObject
*);
126 void __wxPyCleanup();
127 PyObject
* __wxPySetDictionary(PyObject
*, PyObject
* args
);
129 void wxSetDefaultPyEncoding(const char* encoding
);
130 const char* wxGetDefaultPyEncoding();
133 void wxPyEventThunker(wxObject
*, wxEvent
& event
);
136 bool wxPyCheckSwigType(const wxChar
* className
);
137 PyObject
* wxPyConstructObject(void* ptr
,
138 const wxChar
* className
,
140 bool wxPyConvertSwigPtr(PyObject
* obj
, void **ptr
,
141 const wxChar
* className
);
142 PyObject
* wxPyMakeSwigPtr(void* ptr
, const wxChar
* classname
);
145 PyObject
* wx2PyString(const wxString
& src
);
146 wxString
Py2wxString(PyObject
* source
);
148 PyObject
* wxPyMake_wxObject(wxObject
* source
, bool setThisOwn
, bool checkEvtHandler
=true);
149 PyObject
* wxPyMake_wxSizer(wxSizer
* source
, bool setThisOwn
);
150 void wxPyPtrTypeMap_Add(const char* commonName
, const char* ptrName
);
152 PyObject
* wxPy_ConvertList(wxListBase
* list
);
153 long wxPyGetWinHandle(wxWindow
* win
);
155 void wxPy_ReinitStockObjects(int pass
);
157 bool wxPyInstance_Check(PyObject
* obj
);
158 bool wxPySwigInstance_Check(PyObject
* obj
);
161 #endif // wxPyUSE_EXPORTED_API
162 //---------------------------------------------------------------------------
164 // if we want to handle threads and Python threads are available...
165 #if defined(WXP_USE_THREAD) && defined(WITH_THREAD)
166 #define WXP_WITH_THREAD
167 #else // no Python threads...
168 #undef WXP_WITH_THREAD
172 // In Python 2.3 and later there are the PyGILState_* APIs that we can use for
173 // blocking threads when calling back into Python. Using them instead of my
174 // home-grown hacks greatly simplifies wxPyBeginBlockThreads and
175 // wxPyEndBlockThreads.
177 // Unfortunatly there is a bug somewhere when using these new APIs on Python
178 // 2.3. It manifests in Boa Constructor's debugger where it is unable to stop
179 // at breakpoints located in event handlers. I think that the cause may be
180 // something like the original PyThreadState for the main thread is not being
181 // restored for the callbacks, but I can't see where that could be
182 // happening... So we'll only activate this new change for Python 2.4+ :-(
184 #if PY_VERSION_HEX < 0x02040000
185 #define wxPyUSE_GIL_STATE 0
186 typedef bool wxPyBlock_t
;
188 #define wxPyUSE_GIL_STATE 1
189 typedef PyGILState_STATE wxPyBlock_t
;
193 // Python 2.5 changes the type of some API parameter and return types. Using
194 // this typedef for versions < 2.5 will help with the transition...
195 #if PY_VERSION_HEX < 0x02050000
196 typedef int Py_ssize_t
;
200 #ifndef wxPyUSE_EXPORTED_API
202 // For Python --> C++
203 PyThreadState
* wxPyBeginAllowThreads();
204 void wxPyEndAllowThreads(PyThreadState
* state
);
206 // For C++ --> Python
207 wxPyBlock_t
wxPyBeginBlockThreads();
208 void wxPyEndBlockThreads(wxPyBlock_t blocked
);
210 #endif // wxPyUSE_EXPORTED_API
213 // A macro that will help to execute simple statments wrapped in
214 // StartBlock/EndBlockThreads calls
215 #define wxPyBLOCK_THREADS(stmt) \
216 { wxPyBlock_t blocked = wxPyBeginBlockThreads(); stmt; wxPyEndBlockThreads(blocked); }
218 // Raise the NotImplementedError exception (blocking threads)
219 #define wxPyRaiseNotImplemented() \
220 wxPyBLOCK_THREADS(PyErr_SetNone(PyExc_NotImplementedError))
222 // Raise any exception with a string value (blocking threads)
223 #define wxPyErr_SetString(err, str) \
224 wxPyBLOCK_THREADS(PyErr_SetString(err, str))
227 //---------------------------------------------------------------------------
228 // These are helpers used by the typemaps
230 #ifndef wxPyUSE_EXPORTED_API
232 wxString
* wxString_in_helper(PyObject
* source
);
234 byte
* byte_LIST_helper(PyObject
* source
);
235 int* int_LIST_helper(PyObject
* source
);
236 long* long_LIST_helper(PyObject
* source
);
237 char** string_LIST_helper(PyObject
* source
);
238 wxPoint
* wxPoint_LIST_helper(PyObject
* source
, int* npoints
);
239 wxPoint2D
* wxPoint2D_LIST_helper(PyObject
* source
, size_t* npoints
);
240 wxBitmap
** wxBitmap_LIST_helper(PyObject
* source
);
241 wxString
* wxString_LIST_helper(PyObject
* source
);
242 wxAcceleratorEntry
* wxAcceleratorEntry_LIST_helper(PyObject
* source
);
243 wxPen
** wxPen_LIST_helper(PyObject
* source
);
245 bool wxSize_helper(PyObject
* source
, wxSize
** obj
);
246 bool wxPoint_helper(PyObject
* source
, wxPoint
** obj
);
247 bool wxRealPoint_helper(PyObject
* source
, wxRealPoint
** obj
);
248 bool wxRect_helper(PyObject
* source
, wxRect
** obj
);
249 bool wxColour_helper(PyObject
* source
, wxColour
** obj
);
250 bool wxPoint2D_helper(PyObject
* source
, wxPoint2D
** obj
);
251 bool wxRect2D_helper(PyObject
* source
, wxRect2D
** obj
);
254 bool wxPySimple_typecheck(PyObject
* source
, const wxChar
* classname
, int seqLen
);
255 bool wxColour_typecheck(PyObject
* source
);
258 // Other helpful stuff
259 bool wxPyCheckForApp();
260 bool wxPyTestDisplayAvailable();
262 bool wxPy2int_seq_helper(PyObject
* source
, int* i1
, int* i2
);
263 bool wxPy4int_seq_helper(PyObject
* source
, int* i1
, int* i2
, int* i3
, int* i4
);
265 PyObject
* wxArrayString2PyList_helper(const wxArrayString
& arr
);
266 PyObject
* wxArrayInt2PyList_helper(const wxArrayInt
& arr
);
267 PyObject
* wxArrayDouble2PyList_helper(const wxArrayDouble
& arr
);
269 #endif // wxPyUSE_EXPORTED_API
271 //---------------------------------------------------------------------------
273 #if PYTHON_API_VERSION < 1009
274 #define PySequence_Fast_GET_ITEM(o, i) \
275 (PyList_Check(o) ? PyList_GET_ITEM(o, i) : PyTuple_GET_ITEM(o, i))
278 #define RETURN_NONE() { Py_INCREF(Py_None); return Py_None; }
279 #define DECLARE_DEF_STRING(name) static const wxString wxPy##name(wx##name)
280 #define DECLARE_DEF_STRING2(name,val) static const wxString wxPy##name(val)
282 //---------------------------------------------------------------------------
284 #ifndef wxPyUSE_EXPORTED_API
286 class wxPyCallback
: public wxObject
{
287 DECLARE_ABSTRACT_CLASS(wxPyCallback
)
289 wxPyCallback(PyObject
* func
);
290 wxPyCallback(const wxPyCallback
& other
);
293 void EventThunker(wxEvent
& event
);
298 #endif // wxPyUSE_EXPORTED_API
299 //---------------------------------------------------------------------------
300 //---------------------------------------------------------------------------
301 // These Event classes can be derived from in Python and passed through the
302 // event system without loosing anything. They do this by keeping a reference
303 // to themselves and some special case handling in wxPyCallback::EventThunker.
307 class wxPyEvtSelfRef
{
312 void SetSelf(PyObject
* self
, bool clone
=false);
313 PyObject
* GetSelf() const;
314 bool GetCloned() const { return m_cloned
; }
322 class wxPyEvent
: public wxEvent
, public wxPyEvtSelfRef
{
323 DECLARE_ABSTRACT_CLASS(wxPyEvent
)
325 wxPyEvent(int winid
=0, wxEventType commandType
= wxEVT_NULL
);
326 wxPyEvent(const wxPyEvent
& evt
);
329 virtual wxEvent
* Clone() const { return new wxPyEvent(*this); }
333 class wxPyCommandEvent
: public wxCommandEvent
, public wxPyEvtSelfRef
{
334 DECLARE_ABSTRACT_CLASS(wxPyCommandEvent
)
336 wxPyCommandEvent(wxEventType commandType
= wxEVT_NULL
, int id
=0);
337 wxPyCommandEvent(const wxPyCommandEvent
& evt
);
340 virtual wxEvent
* Clone() const { return new wxPyCommandEvent(*this); }
345 //----------------------------------------------------------------------
346 // Forward decalre a few things used in the exported API
347 class wxPyClientData
;
349 class wxPyOORClientData
;
350 class wxPyCBInputStream
;
352 void wxPyClientData_dtor(wxPyClientData
* self
);
353 void wxPyUserData_dtor(wxPyUserData
* self
);
354 void wxPyOORClientData_dtor(wxPyOORClientData
* self
);
355 wxPyCBInputStream
* wxPyCBInputStream_create(PyObject
*py
, bool block
);
356 wxPyCBInputStream
* wxPyCBInputStream_copy(wxPyCBInputStream
* other
);
358 //---------------------------------------------------------------------------
359 // Export a C API in a struct. Other modules will be able to load this from
360 // the wx.core module and will then have safe access to these functions, even if
361 // in another shared library.
363 class wxPyCallbackHelper
;
367 bool (*p_wxPyCheckSwigType
)(const wxChar
* className
);
368 PyObject
* (*p_wxPyConstructObject
)(void* ptr
, const wxChar
* className
, int setThisOwn
);
369 bool (*p_wxPyConvertSwigPtr
)(PyObject
* obj
, void **ptr
, const wxChar
* className
);
370 PyObject
* (*p_wxPyMakeSwigPtr
)(void* ptr
, const wxChar
* className
);
372 PyThreadState
* (*p_wxPyBeginAllowThreads
)();
373 void (*p_wxPyEndAllowThreads
)(PyThreadState
* state
);
374 wxPyBlock_t (*p_wxPyBeginBlockThreads
)();
375 void (*p_wxPyEndBlockThreads
)(wxPyBlock_t blocked
);
377 PyObject
* (*p_wxPy_ConvertList
)(wxListBase
* list
);
379 wxString
* (*p_wxString_in_helper
)(PyObject
* source
);
380 wxString (*p_Py2wxString
)(PyObject
* source
);
381 PyObject
* (*p_wx2PyString
)(const wxString
& src
);
383 byte
* (*p_byte_LIST_helper
)(PyObject
* source
);
384 int* (*p_int_LIST_helper
)(PyObject
* source
);
385 long* (*p_long_LIST_helper
)(PyObject
* source
);
386 char** (*p_string_LIST_helper
)(PyObject
* source
);
387 wxPoint
* (*p_wxPoint_LIST_helper
)(PyObject
* source
, int* npoints
);
388 wxBitmap
** (*p_wxBitmap_LIST_helper
)(PyObject
* source
);
389 wxString
* (*p_wxString_LIST_helper
)(PyObject
* source
);
390 wxAcceleratorEntry
* (*p_wxAcceleratorEntry_LIST_helper
)(PyObject
* source
);
392 bool (*p_wxSize_helper
)(PyObject
* source
, wxSize
** obj
);
393 bool (*p_wxPoint_helper
)(PyObject
* source
, wxPoint
** obj
);
394 bool (*p_wxRealPoint_helper
)(PyObject
* source
, wxRealPoint
** obj
);
395 bool (*p_wxRect_helper
)(PyObject
* source
, wxRect
** obj
);
396 bool (*p_wxColour_helper
)(PyObject
* source
, wxColour
** obj
);
397 bool (*p_wxPoint2D_helper
)(PyObject
* source
, wxPoint2D
** obj
);
400 bool (*p_wxPySimple_typecheck
)(PyObject
* source
, const wxChar
* classname
, int seqLen
);
401 bool (*p_wxColour_typecheck
)(PyObject
* source
);
403 void (*p_wxPyCBH_setCallbackInfo
)(wxPyCallbackHelper
& cbh
, PyObject
* self
, PyObject
* klass
, int incref
);
404 bool (*p_wxPyCBH_findCallback
)(const wxPyCallbackHelper
& cbh
, const char* name
, bool setGuard
);
405 int (*p_wxPyCBH_callCallback
)(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
);
406 PyObject
* (*p_wxPyCBH_callCallbackObj
)(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
);
407 void (*p_wxPyCBH_delete
)(wxPyCallbackHelper
* cbh
);
409 PyObject
* (*p_wxPyMake_wxObject
)(wxObject
* source
, bool setThisOwn
, bool checkEvtHandler
);
410 PyObject
* (*p_wxPyMake_wxSizer
)(wxSizer
* source
, bool setThisOwn
);
411 void (*p_wxPyPtrTypeMap_Add
)(const char* commonName
, const char* ptrName
);
412 bool (*p_wxPy2int_seq_helper
)(PyObject
* source
, int* i1
, int* i2
);
413 bool (*p_wxPy4int_seq_helper
)(PyObject
* source
, int* i1
, int* i2
, int* i3
, int* i4
);
414 PyObject
* (*p_wxArrayString2PyList_helper
)(const wxArrayString
& arr
);
415 PyObject
* (*p_wxArrayInt2PyList_helper
)(const wxArrayInt
& arr
);
417 void (*p_wxPyClientData_dtor
)(wxPyClientData
*);
418 void (*p_wxPyUserData_dtor
)(wxPyUserData
*);
419 void (*p_wxPyOORClientData_dtor
)(wxPyOORClientData
*);
421 wxPyCBInputStream
* (*p_wxPyCBInputStream_create
)(PyObject
*py
, bool block
);
422 wxPyCBInputStream
* (*p_wxPyCBInputStream_copy
)(wxPyCBInputStream
* other
);
424 bool (*p_wxPyInstance_Check
)(PyObject
* obj
);
425 bool (*p_wxPySwigInstance_Check
)(PyObject
* obj
);
427 bool (*p_wxPyCheckForApp
)();
429 // Add all new items at the end...
430 PyObject
* (*p_wxArrayDoublePyList_helper
)(const wxArrayDouble
& arr
);
431 wxPoint2D
* (*p_wxPoint2D_LIST_helper
)(PyObject
* source
, size_t* npoints
);
432 bool (*p_wxRect2D_helper
)(PyObject
* source
, wxRect2D
** obj
);
437 #ifdef wxPyUSE_EXPORTED_API
438 // Notice that this is static, not extern. This is by design, each module
439 // needs one, but doesn't have to use it.
440 static wxPyCoreAPI
* wxPyCoreAPIPtr
= NULL
;
441 inline wxPyCoreAPI
* wxPyGetCoreAPIPtr();
442 #endif // wxPyUSE_EXPORTED_API
444 //---------------------------------------------------------------------------
446 // A wxObject that holds a reference to a Python object
447 class wxPyUserData
: public wxObject
{
449 wxPyUserData(PyObject
* obj
) {
455 #ifdef wxPyUSE_EXPORTED_API
456 wxPyGetCoreAPIPtr()->p_wxPyUserData_dtor(this);
458 wxPyUserData_dtor(this);
465 // A wxClientData that holds a refernece to a Python object
466 class wxPyClientData
: public wxClientData
{
468 wxPyClientData(PyObject
* obj
, bool incref
=true) {
476 #ifdef wxPyUSE_EXPORTED_API
477 wxPyGetCoreAPIPtr()->p_wxPyClientData_dtor(this);
479 wxPyClientData_dtor(this);
487 // Just like wxPyClientData, except when this object is destroyed it does some
488 // OOR magic on the Python Object.
489 class wxPyOORClientData
: public wxPyClientData
{
491 wxPyOORClientData(PyObject
* obj
, bool incref
=true)
492 : wxPyClientData(obj
, incref
) {}
493 ~wxPyOORClientData() {
495 #ifdef wxPyUSE_EXPORTED_API
496 wxPyGetCoreAPIPtr()->p_wxPyOORClientData_dtor(this);
498 wxPyOORClientData_dtor(this);
504 //---------------------------------------------------------------------------
505 // A wxImageHandler that can be derived from in Python.
508 class wxPyImageHandler
: public wxImageHandler
{
512 // used for interning method names as PyStrings
513 static PyObject
* m_DoCanRead_Name
;
514 static PyObject
* m_GetImageCount_Name
;
515 static PyObject
* m_LoadFile_Name
;
516 static PyObject
* m_SaveFile_Name
;
518 // converstion helpers
519 PyObject
* py_InputStream(wxInputStream
* stream
);
520 PyObject
* py_Image(wxImage
* image
);
521 PyObject
* py_OutputStream(wxOutputStream
* stream
);
526 void _SetSelf(PyObject
*self
);
528 virtual bool LoadFile(wxImage
* image
, wxInputStream
& stream
,
529 bool verbose
=true, int index
=-1 );
530 virtual bool SaveFile(wxImage
* image
, wxOutputStream
& stream
,
532 virtual int GetImageCount(wxInputStream
& stream
);
533 virtual bool DoCanRead(wxInputStream
&stream
);
537 //---------------------------------------------------------------------------
538 // This class holds an instance of a Python Shadow Class object and assists
539 // with looking up and invoking Python callback methods from C++ virtual
540 // method redirections. For all classes which have virtuals which should be
541 // overridable in wxPython, a new subclass is created that contains a
542 // wxPyCallbackHelper.
545 class wxPyCallbackHelper
{
547 wxPyCallbackHelper(const wxPyCallbackHelper
& other
);
549 wxPyCallbackHelper() {
556 ~wxPyCallbackHelper() {
557 #ifdef wxPyUSE_EXPORTED_API
558 wxPyGetCoreAPIPtr()->p_wxPyCBH_delete(this);
560 wxPyCBH_delete(this);
564 void setSelf(PyObject
* self
, PyObject
* klass
, int incref
=true);
565 bool findCallback(const char* name
, bool setGuard
=true) const;
566 int callCallback(PyObject
* argTuple
) const;
567 PyObject
* callCallbackObj(PyObject
* argTuple
) const;
568 PyObject
* GetLastFound() const { return m_lastFound
; }
570 void setRecursionGuard(PyObject
* method
) const;
571 void clearRecursionGuard(PyObject
* method
) const;
576 PyObject
* m_lastFound
;
579 friend void wxPyCBH_delete(wxPyCallbackHelper
* cbh
);
583 void wxPyCBH_setCallbackInfo(wxPyCallbackHelper
& cbh
, PyObject
* self
, PyObject
* klass
, int incref
);
584 bool wxPyCBH_findCallback(const wxPyCallbackHelper
& cbh
, const char* name
, bool setGuard
=true);
585 int wxPyCBH_callCallback(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
);
586 PyObject
* wxPyCBH_callCallbackObj(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
);
587 void wxPyCBH_delete(wxPyCallbackHelper
* cbh
);
592 //---------------------------------------------------------------------------
594 // This is used in C++ classes that need to be able to make callback to
595 // "overloaded" python methods
598 void _setCallbackInfo(PyObject* self, PyObject* _class, int incref=1) { \
599 wxPyCBH_setCallbackInfo(m_myInst, self, _class, incref); \
601 private: wxPyCallbackHelper m_myInst
604 //---------------------------------------------------------------------------
605 // The wxPythonApp class
608 wxPYAPP_ASSERT_SUPPRESS
= 1,
609 wxPYAPP_ASSERT_EXCEPTION
= 2,
610 wxPYAPP_ASSERT_DIALOG
= 4,
611 wxPYAPP_ASSERT_LOG
= 8
614 class wxPyApp
: public wxApp
616 DECLARE_ABSTRACT_CLASS(wxPyApp
)
624 int GetAssertMode() { return m_assertMode
; }
625 void SetAssertMode(int mode
) { m_assertMode
= mode
; }
627 virtual bool OnInitGui();
628 virtual int OnExit();
630 virtual void OnAssertFailure(const wxChar
*file
,
636 virtual void ExitMainLoop();
637 // virtual int FilterEvent(wxEvent& event); // This one too????
639 // For catching Apple Events
640 virtual void MacOpenFile(const wxString
&fileName
);
641 virtual void MacPrintFile(const wxString
&fileName
);
642 virtual void MacNewFile();
643 virtual void MacReopenApp();
645 static bool GetMacSupportPCMenuShortcuts();
646 static long GetMacAboutMenuItemId();
647 static long GetMacPreferencesMenuItemId();
648 static long GetMacExitMenuItemId();
649 static wxString
GetMacHelpMenuTitleName();
651 static void SetMacSupportPCMenuShortcuts(bool val
);
652 static void SetMacAboutMenuItemId(long val
);
653 static void SetMacPreferencesMenuItemId(long val
);
654 static void SetMacExitMenuItemId(long val
);
655 static void SetMacHelpMenuTitleName(const wxString
& val
);
658 void _BootstrapApp();
660 // implementation only
661 void SetStartupComplete(bool val
) { m_startupComplete
= val
; };
665 bool m_startupComplete
;
668 extern wxPyApp
*wxPythonApp
;
671 //----------------------------------------------------------------------
672 // These macros are used to implement the virtual methods that should
673 // redirect to a Python method if one exists. The names designate the
674 // return type, if any, as well as any parameter types.
675 //---------------------------------------------------------------------------
677 #define DEC_PYCALLBACK__(CBNAME) \
681 #define IMP_PYCALLBACK__(CLASS, PCLASS, CBNAME) \
682 void CLASS::CBNAME() { \
684 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
685 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
686 wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
687 wxPyEndBlockThreads(blocked); \
692 #define DEC_PYCALLBACK_VOID_(CBNAME) \
693 DEC_PYCALLBACK__(CBNAME)
695 #define IMP_PYCALLBACK_VOID_(CLASS, PCLASS, CBNAME) \
696 IMP_PYCALLBACK__(CLASS, PCLASS, CBNAME)
698 //---------------------------------------------------------------------------
700 #define DEC_PYCALLBACK_BOOL_INTINT(CBNAME) \
701 bool CBNAME(int a, int b)
704 #define IMP_PYCALLBACK_BOOL_INTINT(CLASS, PCLASS, CBNAME) \
705 bool CLASS::CBNAME(int a, int b) { \
706 bool rval=false, found; \
707 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
708 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
709 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)",a,b)); \
710 wxPyEndBlockThreads(blocked); \
712 rval = PCLASS::CBNAME(a,b); \
716 //---------------------------------------------------------------------------
718 #define DEC_PYCALLBACK_VOID_INTINT(CBNAME) \
719 void CBNAME(int a, int b)
722 #define IMP_PYCALLBACK_VOID_INTINT(CLASS, PCLASS, CBNAME) \
723 void CLASS::CBNAME(int a, int b) { \
725 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
726 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
727 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)",a,b)); \
728 wxPyEndBlockThreads(blocked); \
730 PCLASS::CBNAME(a,b); \
733 //---------------------------------------------------------------------------
735 #define DEC_PYCALLBACK_VOID_INT(CBNAME) \
739 #define IMP_PYCALLBACK_VOID_INT(CLASS, PCLASS, CBNAME) \
740 void CLASS::CBNAME(int a) { \
742 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
743 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
744 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)",a)); \
745 wxPyEndBlockThreads(blocked); \
750 //---------------------------------------------------------------------------
752 #define DEC_PYCALLBACK_VOID_INT4(CBNAME) \
753 void CBNAME(int a, int b, int c, int d)
756 #define IMP_PYCALLBACK_VOID_INT4(CLASS, PCLASS, CBNAME) \
757 void CLASS::CBNAME(int a, int b, int c, int d) { \
759 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
760 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
761 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiii)",a,b,c,d)); \
762 wxPyEndBlockThreads(blocked); \
764 PCLASS::CBNAME(a,b,c,d); \
767 //---------------------------------------------------------------------------
768 #define DEC_PYCALLBACK_VOID_INT5(CBNAME) \
769 void CBNAME(int a, int b, int c, int d, int e)
772 #define IMP_PYCALLBACK_VOID_INT5(CLASS, PCLASS, CBNAME) \
773 void CLASS::CBNAME(int a, int b, int c, int d, int e) { \
775 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
776 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
777 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiiii)",a,b,c,d,e)); \
778 wxPyEndBlockThreads(blocked); \
780 PCLASS::CBNAME(a,b,c,d,e); \
783 //---------------------------------------------------------------------------
785 #define DEC_PYCALLBACK_VOID_INTPINTP_const(CBNAME) \
786 void CBNAME(int* a, int* b) const
789 #define IMP_PYCALLBACK_VOID_INTPINTP_const(CLASS, PCLASS, CBNAME) \
790 void CLASS::CBNAME(int* a, int* b) const { \
791 const char* errmsg = #CBNAME " should return a 2-tuple of integers."; \
793 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
794 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
796 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
798 if (PySequence_Check(ro) && PyObject_Length(ro) == 2) { \
799 PyObject* o1 = PySequence_GetItem(ro, 0); \
800 PyObject* o2 = PySequence_GetItem(ro, 1); \
801 if (PyNumber_Check(o1) && PyNumber_Check(o2)) { \
802 *a = PyInt_AsLong(o1); *b = PyInt_AsLong(o2); \
805 PyErr_SetString(PyExc_TypeError, errmsg); \
810 PyErr_SetString(PyExc_TypeError, errmsg); \
815 wxPyEndBlockThreads(blocked); \
817 PCLASS::CBNAME(a,b); \
820 //---------------------------------------------------------------------------
822 #define DEC_PYCALLBACK_SIZE_const(CBNAME) \
823 wxSize CBNAME() const
826 #define IMP_PYCALLBACK_SIZE_const(CLASS, PCLASS, CBNAME) \
827 wxSize CLASS::CBNAME() const { \
828 const char* errmsg = #CBNAME " should return a 2-tuple of integers."; \
829 bool found; wxSize rval(0,0); \
830 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
831 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
833 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
835 if (PySequence_Check(ro) && PyObject_Length(ro) == 2) { \
836 PyObject* o1 = PySequence_GetItem(ro, 0); \
837 PyObject* o2 = PySequence_GetItem(ro, 1); \
838 if (PyNumber_Check(o1) && PyNumber_Check(o2)) { \
839 rval = wxSize(PyInt_AsLong(o1), PyInt_AsLong(o2)); \
842 PyErr_SetString(PyExc_TypeError, errmsg); \
847 PyErr_SetString(PyExc_TypeError, errmsg); \
852 wxPyEndBlockThreads(blocked); \
854 return PCLASS::CBNAME(); \
859 //---------------------------------------------------------------------------
861 #define DEC_PYCALLBACK_BOOL_BOOL(CBNAME) \
865 #define IMP_PYCALLBACK_BOOL_BOOL(CLASS, PCLASS, CBNAME) \
866 bool CLASS::CBNAME(bool a) { \
867 bool rval=false, found; \
868 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
869 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
870 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)",a));\
871 wxPyEndBlockThreads(blocked); \
873 rval = PCLASS::CBNAME(a); \
877 //---------------------------------------------------------------------------
879 #define DEC_PYCALLBACK_BOOL_INT(CBNAME) \
883 #define IMP_PYCALLBACK_BOOL_INT(CLASS, PCLASS, CBNAME) \
884 bool CLASS::CBNAME(int a) { \
885 bool rval=false, found; \
886 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
887 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
888 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)",a));\
889 wxPyEndBlockThreads(blocked); \
891 rval = PCLASS::CBNAME(a); \
895 //---------------------------------------------------------------------------
897 #define DEC_PYCALLBACK_BOOL_INT_pure(CBNAME) \
901 #define IMP_PYCALLBACK_BOOL_INT_pure(CLASS, PCLASS, CBNAME) \
902 bool CLASS::CBNAME(int a) { \
904 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
905 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) \
906 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)",a)); \
908 wxPyEndBlockThreads(blocked); \
913 //---------------------------------------------------------------------------
915 #define DEC_PYCALLBACK__DC(CBNAME) \
919 #define IMP_PYCALLBACK__DC(CLASS, PCLASS, CBNAME) \
920 void CLASS::CBNAME(wxDC& a) { \
922 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
923 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
924 PyObject* obj = wxPyMake_wxObject(&a,false); \
925 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
928 wxPyEndBlockThreads(blocked); \
934 //---------------------------------------------------------------------------
936 #define DEC_PYCALLBACK__DCBOOL(CBNAME) \
937 void CBNAME(wxDC& a, bool b)
940 #define IMP_PYCALLBACK__DCBOOL(CLASS, PCLASS, CBNAME) \
941 void CLASS::CBNAME(wxDC& a, bool b) { \
943 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
944 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
945 PyObject* obj = wxPyMake_wxObject(&a,false); \
946 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oi)", obj, (int)b)); \
949 wxPyEndBlockThreads(blocked); \
951 PCLASS::CBNAME(a, b); \
954 //---------------------------------------------------------------------------
956 #define DEC_PYCALLBACK__DCBOOL(CBNAME) \
957 void CBNAME(wxDC& a, bool b)
960 #define IMP_PYCALLBACK__DCBOOL(CLASS, PCLASS, CBNAME) \
961 void CLASS::CBNAME(wxDC& a, bool b) { \
963 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
964 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
965 PyObject* obj = wxPyMake_wxObject(&a,false); \
966 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oi)", obj, (int)b)); \
969 wxPyEndBlockThreads(blocked); \
971 PCLASS::CBNAME(a, b); \
974 //---------------------------------------------------------------------------
976 #define DEC_PYCALLBACK__2DBL(CBNAME) \
977 void CBNAME(double a, double b)
980 #define IMP_PYCALLBACK__2DBL(CLASS, PCLASS, CBNAME) \
981 void CLASS::CBNAME(double a, double b) { \
983 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
984 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
985 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(dd)",a,b)); \
986 wxPyEndBlockThreads(blocked); \
988 PCLASS::CBNAME(a, b); \
991 //---------------------------------------------------------------------------
993 #define DEC_PYCALLBACK__2DBL2INT(CBNAME) \
994 void CBNAME(double a, double b, int c, int d)
997 #define IMP_PYCALLBACK__2DBL2INT(CLASS, PCLASS, CBNAME) \
998 void CLASS::CBNAME(double a, double b, int c, int d) { \
1000 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1001 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1002 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ddii)", \
1004 wxPyEndBlockThreads(blocked); \
1006 PCLASS::CBNAME(a, b, c, d); \
1009 //---------------------------------------------------------------------------
1011 #define DEC_PYCALLBACK__DC4DBLBOOL(CBNAME) \
1012 void CBNAME(wxDC& a, double b, double c, double d, double e, bool f)
1015 #define IMP_PYCALLBACK__DC4DBLBOOL(CLASS, PCLASS, CBNAME) \
1016 void CLASS::CBNAME(wxDC& a, double b, double c, double d, double e, bool f) { \
1018 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1019 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1020 PyObject* obj = wxPyMake_wxObject(&a,false); \
1021 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oddddi)", obj, b, c, d, e, (int)f)); \
1024 wxPyEndBlockThreads(blocked); \
1026 PCLASS::CBNAME(a, b, c, d, e, f); \
1029 //---------------------------------------------------------------------------
1031 #define DEC_PYCALLBACK_BOOL_DC4DBLBOOL(CBNAME) \
1032 bool CBNAME(wxDC& a, double b, double c, double d, double e, bool f)
1035 #define IMP_PYCALLBACK_BOOL_DC4DBLBOOL(CLASS, PCLASS, CBNAME) \
1036 bool CLASS::CBNAME(wxDC& a, double b, double c, double d, double e, bool f) { \
1038 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1040 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1041 PyObject* obj = wxPyMake_wxObject(&a,false); \
1042 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oddddi)", obj, b, c, d, e, (int)f));\
1045 wxPyEndBlockThreads(blocked); \
1047 rval = PCLASS::CBNAME(a, b, c, d, e, f); \
1051 //---------------------------------------------------------------------------
1053 #define DEC_PYCALLBACK__BOOL2DBL2INT(CBNAME) \
1054 void CBNAME(bool a, double b, double c, int d, int e)
1057 #define IMP_PYCALLBACK__BOOL2DBL2INT(CLASS, PCLASS, CBNAME) \
1058 void CLASS::CBNAME(bool a, double b, double c, int d, int e) { \
1060 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1061 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1062 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iddii)", \
1064 wxPyEndBlockThreads(blocked); \
1066 PCLASS::CBNAME(a, b, c, d, e); \
1069 //---------------------------------------------------------------------------
1071 #define DEC_PYCALLBACK__DC4DBL(CBNAME) \
1072 void CBNAME(wxDC& a, double b, double c, double d, double e)
1075 #define IMP_PYCALLBACK__DC4DBL(CLASS, PCLASS, CBNAME) \
1076 void CLASS::CBNAME(wxDC& a, double b, double c, double d, double e) { \
1078 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1079 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1080 PyObject* obj = wxPyMake_wxObject(&a,false); \
1081 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Odddd)", obj, b, c, d, e)); \
1084 wxPyEndBlockThreads(blocked); \
1086 PCLASS::CBNAME(a, b, c, d, e); \
1089 //---------------------------------------------------------------------------
1091 #define DEC_PYCALLBACK__DCBOOL(CBNAME) \
1092 void CBNAME(wxDC& a, bool b)
1095 #define IMP_PYCALLBACK__DCBOOL(CLASS, PCLASS, CBNAME) \
1096 void CLASS::CBNAME(wxDC& a, bool b) { \
1098 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1099 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1100 PyObject* obj = wxPyMake_wxObject(&a,false); \
1101 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oi)", obj, (int)b)); \
1104 wxPyEndBlockThreads(blocked); \
1106 PCLASS::CBNAME(a, b); \
1109 //---------------------------------------------------------------------------
1111 #define DEC_PYCALLBACK__WXCPBOOL2DBL2INT(CBNAME) \
1112 void CBNAME(wxControlPoint* a, bool b, double c, double d, int e, int f)
1115 #define IMP_PYCALLBACK__WXCPBOOL2DBL2INT(CLASS, PCLASS, CBNAME) \
1116 void CLASS::CBNAME(wxControlPoint* a, bool b, double c, double d, \
1119 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1120 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1121 PyObject* obj = wxPyMake_wxObject(a,false); \
1122 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oiddii)", obj, (int)b, c, d, e, f));\
1125 wxPyEndBlockThreads(blocked); \
1127 PCLASS::CBNAME(a, b, c, d, e, f); \
1130 //---------------------------------------------------------------------------
1132 #define DEC_PYCALLBACK__WXCP2DBL2INT(CBNAME) \
1133 void CBNAME(wxControlPoint* a, double b, double c, int d, int e)
1136 #define IMP_PYCALLBACK__WXCP2DBL2INT(CLASS, PCLASS, CBNAME) \
1137 void CLASS::CBNAME(wxControlPoint* a, double b, double c, int d, int e) { \
1139 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1140 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1141 PyObject* obj = wxPyMake_wxObject(a,false); \
1142 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oddii)", obj, b, c, d, e)); \
1145 wxPyEndBlockThreads(blocked); \
1147 PCLASS::CBNAME(a, b, c, d, e); \
1150 //---------------------------------------------------------------------------
1152 #define DEC_PYCALLBACK__2DBLINT(CBNAME) \
1153 void CBNAME(double a, double b, int c)
1156 #define IMP_PYCALLBACK__2DBLINT(CLASS, PCLASS, CBNAME) \
1157 void CLASS::CBNAME(double a, double b, int c) { \
1159 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1160 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1161 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ddi)", a,b,c)); \
1162 wxPyEndBlockThreads(blocked); \
1164 PCLASS::CBNAME(a, b, c); \
1167 //---------------------------------------------------------------------------
1169 #define DEC_PYCALLBACK__BOOL2DBLINT(CBNAME) \
1170 void CBNAME(bool a, double b, double c, int d)
1173 #define IMP_PYCALLBACK__BOOL2DBLINT(CLASS, PCLASS, CBNAME) \
1174 void CLASS::CBNAME(bool a, double b, double c, int d) { \
1176 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1177 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1178 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iddi)", (int)a,b,c,d));\
1179 wxPyEndBlockThreads(blocked); \
1181 PCLASS::CBNAME(a, b, c, d); \
1184 //---------------------------------------------------------------------------
1185 //---------------------------------------------------------------------------
1187 #define DEC_PYCALLBACK__STRING(CBNAME) \
1188 void CBNAME(const wxString& a)
1190 #define IMP_PYCALLBACK__STRING(CLASS, PCLASS, CBNAME) \
1191 void CLASS::CBNAME(const wxString& a) { \
1193 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1194 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1195 PyObject* s = wx2PyString(a); \
1196 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", s)); \
1199 wxPyEndBlockThreads(blocked); \
1201 PCLASS::CBNAME(a); \
1204 //---------------------------------------------------------------------------
1206 #define DEC_PYCALLBACK_BOOL_STRING(CBNAME) \
1207 bool CBNAME(const wxString& a)
1209 #define IMP_PYCALLBACK_BOOL_STRING(CLASS, PCLASS, CBNAME) \
1210 bool CLASS::CBNAME(const wxString& a) { \
1213 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1214 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1215 PyObject* s = wx2PyString(a); \
1216 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", s)); \
1219 wxPyEndBlockThreads(blocked); \
1221 rval = PCLASS::CBNAME(a); \
1225 //---------------------------------------------------------------------------
1227 #define DEC_PYCALLBACK_BOOL_STRING_pure(CBNAME) \
1228 bool CBNAME(const wxString& a)
1230 #define IMP_PYCALLBACK_BOOL_STRING_pure(CLASS, PCLASS, CBNAME) \
1231 bool CLASS::CBNAME(const wxString& a) { \
1233 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1234 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1235 PyObject* s = wx2PyString(a); \
1236 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", s)); \
1239 wxPyEndBlockThreads(blocked); \
1243 //---------------------------------------------------------------------------
1245 #define DEC_PYCALLBACK_STRING_STRING_pure(CBNAME) \
1246 wxString CBNAME(const wxString& a)
1248 #define IMP_PYCALLBACK_STRING_STRING_pure(CLASS, PCLASS, CBNAME) \
1249 wxString CLASS::CBNAME(const wxString& a) { \
1251 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1252 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1254 PyObject* s = wx2PyString(a); \
1255 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(O)", s)); \
1258 rval = Py2wxString(ro); \
1262 wxPyEndBlockThreads(blocked); \
1266 //---------------------------------------------------------------------------
1268 #define DEC_PYCALLBACK_STRING_STRING(CBNAME) \
1269 wxString CBNAME(const wxString& a)
1271 #define IMP_PYCALLBACK_STRING_STRING(CLASS, PCLASS, CBNAME) \
1272 wxString CLASS::CBNAME(const wxString& a) { \
1275 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1276 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1278 PyObject* s = wx2PyString(a); \
1279 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(O)", s)); \
1282 rval = Py2wxString(ro); \
1286 wxPyEndBlockThreads(blocked); \
1288 rval = PCLASS::CBNAME(a); \
1292 //---------------------------------------------------------------------------
1294 #define DEC_PYCALLBACK_STRING_STRINGINT_pure(CBNAME) \
1295 wxString CBNAME(const wxString& a,int b)
1297 #define IMP_PYCALLBACK_STRING_STRINGINT_pure(CLASS, PCLASS, CBNAME) \
1298 wxString CLASS::CBNAME(const wxString& a,int b) { \
1300 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1301 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1303 PyObject* s = wx2PyString(a); \
1304 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(Oi)",s,b)); \
1307 rval = Py2wxString(ro); \
1311 wxPyEndBlockThreads(blocked); \
1315 //---------------------------------------------------------------------------
1317 #define DEC_PYCALLBACK_BOOL_STRINGSTRING(CBNAME) \
1318 bool CBNAME(const wxString& a, const wxString& b)
1320 #define IMP_PYCALLBACK_BOOL_STRINGSTRING(CLASS, PCLASS, CBNAME) \
1321 bool CLASS::CBNAME(const wxString& a, const wxString& b) { \
1324 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1325 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1326 PyObject* s1 = wx2PyString(a); \
1327 PyObject* s2 = wx2PyString(b); \
1328 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OO)",s1,s2)); \
1332 wxPyEndBlockThreads(blocked); \
1334 rval = PCLASS::CBNAME(a, b); \
1338 //---------------------------------------------------------------------------
1340 #define DEC_PYCALLBACK_STRING_(CBNAME) \
1343 #define IMP_PYCALLBACK_STRING_(CLASS, PCLASS, CBNAME) \
1344 wxString CLASS::CBNAME() { \
1347 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1348 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1350 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
1352 rval = Py2wxString(ro); \
1356 wxPyEndBlockThreads(blocked); \
1358 rval = PCLASS::CBNAME(); \
1362 //---------------------------------------------------------------------------
1364 #define DEC_PYCALLBACK_STRING__const(CBNAME) \
1365 wxString CBNAME() const
1367 #define IMP_PYCALLBACK_STRING__const(CLASS, PCLASS, CBNAME) \
1368 wxString CLASS::CBNAME() const { \
1371 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1372 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1374 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
1376 rval = Py2wxString(ro); \
1380 wxPyEndBlockThreads(blocked); \
1382 rval = PCLASS::CBNAME(); \
1386 //---------------------------------------------------------------------------
1388 #define DEC_PYCALLBACK_STRING__pure(CBNAME) \
1391 #define IMP_PYCALLBACK_STRING__pure(CLASS, PCLASS, CBNAME) \
1392 wxString CLASS::CBNAME() { \
1394 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1395 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1397 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
1399 rval = Py2wxString(ro); \
1403 wxPyEndBlockThreads(blocked); \
1407 //---------------------------------------------------------------------------
1409 #define DEC_PYCALLBACK_STRING__constpure(CBNAME) \
1410 wxString CBNAME() const;
1412 #define IMP_PYCALLBACK_STRING__constpure(CLASS, PCLASS, CBNAME) \
1413 wxString CLASS::CBNAME() const { \
1415 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1416 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1418 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
1420 rval = Py2wxString(ro); \
1424 wxPyEndBlockThreads(blocked); \
1428 //---------------------------------------------------------------------------
1430 #define DEC_PYCALLBACK_BOOL_TAG_pure(CBNAME) \
1431 bool CBNAME(const wxHtmlTag& a)
1434 #define IMP_PYCALLBACK_BOOL_TAG_pure(CLASS, PCLASS, CBNAME) \
1435 bool CLASS::CBNAME(const wxHtmlTag& a) { \
1437 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1438 if (wxPyCBH_findCallback2(m_myInst, #CBNAME, false)) { \
1439 PyObject* obj = wxPyConstructObject((void*)&a, wxT("wxHtmlTag"), 0);\
1440 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
1443 wxPyEndBlockThreads(blocked); \
1447 //---------------------------------------------------------------------------
1449 #define DEC_PYCALLBACK__CELLINTINT(CBNAME) \
1450 void CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y)
1452 #define IMP_PYCALLBACK__CELLINTINT(CLASS, PCLASS, CBNAME) \
1453 void CLASS::CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y) { \
1455 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1456 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1457 PyObject* obj = wxPyMake_wxObject(cell, 0); \
1458 wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(Oii)",obj,x,y)); \
1461 wxPyEndBlockThreads(blocked); \
1463 PCLASS::CBNAME(cell, x, y); \
1466 //---------------------------------------------------------------------------
1468 #define DEC_PYCALLBACK__COLOUR(CBNAME) \
1469 void CBNAME(const wxColour& c);
1471 #define IMP_PYCALLBACK__COLOUR(CLASS, PCLASS, CBNAME) \
1472 void CLASS::CBNAME(const wxColour& c) { \
1474 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1475 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1476 PyObject* obj = wxPyConstructObject((void*)&c, wxT("wxColour"), 0); \
1477 wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(O)",obj)); \
1480 wxPyEndBlockThreads(blocked); \
1482 PCLASS::CBNAME(c); \
1485 //---------------------------------------------------------------------------
1486 #define DEC_PYCALLBACK__INTCOLOUR(CBNAME) \
1487 void CBNAME(int a, const wxColour& c);
1489 #define IMP_PYCALLBACK__INTCOLOUR(CLASS, PCLASS, CBNAME) \
1490 void CLASS::CBNAME(int a, const wxColour& c) { \
1492 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1493 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1494 PyObject* obj = wxPyConstructObject((void*)&c, wxT("wxColour"), 0); \
1495 wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(iO)",a, obj)); \
1498 wxPyEndBlockThreads(blocked); \
1500 PCLASS::CBNAME(a, c); \
1503 //---------------------------------------------------------------------------
1505 #define DEC_PYCALLBACK__INTFONT(CBNAME) \
1506 void CBNAME(int a, const wxFont& c);
1508 #define IMP_PYCALLBACK__INTFONT(CLASS, PCLASS, CBNAME) \
1509 void CLASS::CBNAME(int a, const wxFont& c) { \
1511 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1512 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1513 PyObject* obj = wxPyConstructObject((void*)&c, wxT("wxFont"), 0); \
1514 wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(iO)",a, obj)); \
1517 wxPyEndBlockThreads(blocked); \
1519 PCLASS::CBNAME(a, c); \
1522 //---------------------------------------------------------------------------
1524 #define DEC_PYCALLBACK_BOOL_CELLINTINTME(CBNAME) \
1525 bool CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y, const wxMouseEvent& e)
1527 #define IMP_PYCALLBACK_BOOL_CELLINTINTME(CLASS, PCLASS, CBNAME) \
1528 bool CLASS::CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y, const wxMouseEvent& e) { \
1529 bool rval=false, found; \
1530 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1531 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1532 PyObject* obj = wxPyMake_wxObject(cell, 0); \
1533 PyObject* o2 = wxPyConstructObject((void*)&e, wxT("wxMouseEvent"), 0); \
1534 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OiiO)",obj,x,y,o2)); \
1538 wxPyEndBlockThreads(blocked); \
1540 rval = PCLASS::CBNAME(cell, x, y, e); \
1545 //---------------------------------------------------------------------------
1547 #define DEC_PYCALLBACK___pure(CBNAME) \
1551 #define IMP_PYCALLBACK___pure(CLASS, PCLASS, CBNAME) \
1552 void CLASS::CBNAME() { \
1553 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1554 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) \
1555 wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
1556 wxPyEndBlockThreads(blocked); \
1559 //---------------------------------------------------------------------------
1561 #define DEC_PYCALLBACK_wxSize__pure(CBNAME) \
1565 #define IMP_PYCALLBACK_wxSize__pure(CLASS, PCLASS, CBNAME) \
1566 wxSize CLASS::CBNAME() { \
1567 const char* errmsg = #CBNAME " should return a 2-tuple of integers or a wxSize object."; \
1569 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1570 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1573 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
1575 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxSize"))) \
1577 else if (PySequence_Check(ro) && PyObject_Length(ro) == 2) { \
1579 PyObject* o1 = PySequence_GetItem(ro, 0); \
1580 PyObject* o2 = PySequence_GetItem(ro, 1); \
1581 if (PyNumber_Check(o1) && PyNumber_Check(o2)) \
1582 rval = wxSize(PyInt_AsLong(o1), PyInt_AsLong(o2)); \
1584 PyErr_SetString(PyExc_TypeError, errmsg); \
1589 PyErr_SetString(PyExc_TypeError, errmsg); \
1594 wxPyEndBlockThreads(blocked); \
1598 //---------------------------------------------------------------------------
1600 #define DEC_PYCALLBACK_BOOL_WXWIN(CBNAME) \
1601 bool CBNAME(wxWindow* a)
1604 #define IMP_PYCALLBACK_BOOL_WXWIN(CLASS, PCLASS, CBNAME) \
1605 bool CLASS::CBNAME(wxWindow* a) { \
1608 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1609 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1610 PyObject* obj = wxPyMake_wxObject(a,false); \
1611 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
1614 wxPyEndBlockThreads(blocked); \
1616 rval = PCLASS::CBNAME(a); \
1620 //---------------------------------------------------------------------------
1622 #define DEC_PYCALLBACK_BOOL_WXWINDC(CBNAME) \
1623 bool CBNAME(wxWindow* a, wxDC& b)
1626 #define IMP_PYCALLBACK_BOOL_WXWINDC(CLASS, PCLASS, CBNAME) \
1627 bool CLASS::CBNAME(wxWindow* a, wxDC& b) { \
1630 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1631 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1632 PyObject* win = wxPyMake_wxObject(a,false); \
1633 PyObject* dc = wxPyMake_wxObject(&b,false); \
1634 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OO)", win, dc));\
1638 wxPyEndBlockThreads(blocked); \
1640 rval = PCLASS::CBNAME(a, b); \
1644 //---------------------------------------------------------------------------
1646 #define DEC_PYCALLBACK_VOID_WXWINBASE(CBNAME) \
1647 void CBNAME(wxWindowBase* a)
1650 #define IMP_PYCALLBACK_VOID_WXWINBASE(CLASS, PCLASS, CBNAME) \
1651 void CLASS::CBNAME(wxWindowBase* a) { \
1653 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1654 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1655 PyObject* obj = wxPyMake_wxObject(a,false); \
1656 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
1659 wxPyEndBlockThreads(blocked); \
1661 PCLASS::CBNAME(a); \
1664 //---------------------------------------------------------------------------
1666 #define DEC_PYCALLBACK_BOOL_(CBNAME) \
1670 #define IMP_PYCALLBACK_BOOL_(CLASS, PCLASS, CBNAME) \
1671 bool CLASS::CBNAME() { \
1674 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1675 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1676 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
1677 wxPyEndBlockThreads(blocked); \
1679 rval = PCLASS::CBNAME(); \
1683 //---------------------------------------------------------------------------
1685 #define DEC_PYCALLBACK_BOOL_const(CBNAME) \
1689 #define IMP_PYCALLBACK_BOOL_const(CLASS, PCLASS, CBNAME) \
1690 bool CLASS::CBNAME() const { \
1693 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1694 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1695 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
1696 wxPyEndBlockThreads(blocked); \
1698 rval = PCLASS::CBNAME(); \
1702 //---------------------------------------------------------------------------
1704 #define DEC_PYCALLBACK_DR_2WXCDR(CBNAME) \
1705 wxDragResult CBNAME(wxCoord x, wxCoord y, wxDragResult def)
1708 #define IMP_PYCALLBACK_DR_2WXCDR(CLASS, PCLASS, CBNAME) \
1709 wxDragResult CLASS::CBNAME(wxCoord a, wxCoord b, wxDragResult c) { \
1712 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1713 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1714 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iii)", a,b,c));\
1715 wxPyEndBlockThreads(blocked); \
1717 rval = PCLASS::CBNAME(a, b, c); \
1718 return (wxDragResult)rval; \
1721 //---------------------------------------------------------------------------
1723 #define DEC_PYCALLBACK_FSF_FSSTRING_pure(CBNAME) \
1724 wxFSFile* CBNAME(wxFileSystem& fs, const wxString& location)
1726 #define IMP_PYCALLBACK_FSF_FSSTRING_pure(CLASS, PCLASS, CBNAME) \
1727 wxFSFile* CLASS::CBNAME(wxFileSystem& a,const wxString& b) { \
1728 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1730 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1732 PyObject* obj = wxPyMake_wxObject(&a,false); \
1733 PyObject* s = wx2PyString(b); \
1734 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(OO)", \
1737 wxPyConvertSwigPtr(ro, (void **)&rval, wxT("wxFSFile")); \
1738 /* release ownership of the C++ wx.FSFile object. */ \
1739 PyObject_SetAttrString(ro, "thisown", Py_False); \
1745 wxPyEndBlockThreads(blocked); \
1749 //---------------------------------------------------------------------------
1751 #define DEC_PYCALLBACK_BOOL_DR(CBNAME) \
1752 bool CBNAME(wxDragResult a)
1755 #define IMP_PYCALLBACK_BOOL_DR(CLASS, PCLASS, CBNAME) \
1756 bool CLASS::CBNAME(wxDragResult a) { \
1759 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1760 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1761 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)", a)); \
1762 wxPyEndBlockThreads(blocked); \
1764 rval = PCLASS::CBNAME(a); \
1768 //---------------------------------------------------------------------------
1770 #define DEC_PYCALLBACK_DR_2WXCDR_pure(CBNAME) \
1771 wxDragResult CBNAME(wxCoord x, wxCoord y, wxDragResult def)
1774 #define IMP_PYCALLBACK_DR_2WXCDR_pure(CLASS, PCLASS, CBNAME) \
1775 wxDragResult CLASS::CBNAME(wxCoord a, wxCoord b, wxDragResult c) { \
1776 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1778 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) \
1779 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iii)", a,b,c));\
1780 wxPyEndBlockThreads(blocked); \
1781 return (wxDragResult)rval; \
1784 //---------------------------------------------------------------------------
1786 #define DEC_PYCALLBACK_BOOL_INTINTSTR_pure(CBNAME) \
1787 bool CBNAME(int a, int b, const wxString& c)
1789 #define IMP_PYCALLBACK_BOOL_INTINTSTR_pure(CLASS, PCLASS, CBNAME) \
1790 bool CLASS::CBNAME(int a, int b, const wxString& c) { \
1792 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1793 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1794 PyObject* s = wx2PyString(c); \
1795 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiO)",a,b,s));\
1798 wxPyEndBlockThreads(blocked); \
1802 //---------------------------------------------------------------------------
1804 #define DEC_PYCALLBACK_SIZET_(CBNAME) \
1808 #define IMP_PYCALLBACK_SIZET_(CLASS, PCLASS, CBNAME) \
1809 size_t CLASS::CBNAME() { \
1812 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1813 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1814 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
1815 wxPyEndBlockThreads(blocked); \
1817 rval = PCLASS::CBNAME(); \
1821 //---------------------------------------------------------------------------
1823 #define DEC_PYCALLBACK_SIZET__const(CBNAME) \
1824 size_t CBNAME() const
1827 #define IMP_PYCALLBACK_SIZET__const(CLASS, PCLASS, CBNAME) \
1828 size_t CLASS::CBNAME() const { \
1831 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1832 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1833 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
1834 wxPyEndBlockThreads(blocked); \
1836 rval = PCLASS::CBNAME(); \
1840 //---------------------------------------------------------------------------
1842 #define DEC_PYCALLBACK_DATAFMT_SIZET(CBNAME) \
1843 wxDataFormat CBNAME(size_t a)
1846 #define IMP_PYCALLBACK_DATAFMT_SIZET(CLASS, PCLASS, CBNAME) \
1847 wxDataFormat CLASS::CBNAME(size_t a) { \
1848 wxDataFormat rval=0; \
1850 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1851 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1853 wxDataFormat* ptr; \
1854 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(i)", a)); \
1856 if (wxPyCOnvertSwigPtr(ro, (void **)&ptr, wxT("wxDataFormat"))) \
1861 wxPyEndBlockThreads(blocked); \
1863 rval = PCLASS::CBNAME(a); \
1867 //---------------------------------------------------------------------------
1869 #define DEC_PYCALLBACK__constany(CBNAME, Type) \
1870 void CBNAME(const Type& a)
1873 #define IMP_PYCALLBACK__constany(CLASS, PCLASS, CBNAME, Type) \
1874 void CLASS::CBNAME(const Type& a) { \
1876 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1877 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1878 PyObject* obj = wxPyConstructObject((void*)&a, wxT(#Type), 0); \
1879 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
1882 wxPyEndBlockThreads(blocked); \
1884 PCLASS::CBNAME(a); \
1888 //---------------------------------------------------------------------------
1890 #define DEC_PYCALLBACK__any(CBNAME, Type) \
1891 void CBNAME(Type& a)
1894 #define IMP_PYCALLBACK__any(CLASS, PCLASS, CBNAME, Type) \
1895 void CLASS::CBNAME(Type& a) { \
1897 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1898 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1899 PyObject* obj = wxPyConstructObject((void*)&a, wxT(#Type), 0); \
1900 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
1903 wxPyEndBlockThreads(blocked); \
1905 PCLASS::CBNAME(a); \
1908 //---------------------------------------------------------------------------
1910 #define DEC_PYCALLBACK_bool_any(CBNAME, Type) \
1911 bool CBNAME(Type& a)
1914 #define IMP_PYCALLBACK_bool_any(CLASS, PCLASS, CBNAME, Type) \
1915 bool CLASS::CBNAME(Type& a) { \
1918 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1919 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1920 PyObject* obj = wxPyConstructObject((void*)&a, wxT(#Type), 0); \
1921 rv = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
1924 wxPyEndBlockThreads(blocked); \
1926 rv = PCLASS::CBNAME(a); \
1930 //---------------------------------------------------------------------------
1932 #define DEC_PYCALLBACK_bool_anypure(CBNAME, Type) \
1933 bool CBNAME(Type& a)
1936 #define IMP_PYCALLBACK_bool_anypure(CLASS, PCLASS, CBNAME, Type) \
1937 bool CLASS::CBNAME(Type& a) { \
1939 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1940 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1941 PyObject* obj = wxPyConstructObject((void*)&a, wxT(#Type), 0); \
1942 rv = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
1945 wxPyEndBlockThreads(blocked); \
1949 //---------------------------------------------------------------------------
1951 #define DEC_PYCALLBACK_STRING_LONGLONG(CBNAME) \
1952 wxString CBNAME(long a, long b) const
1954 #define IMP_PYCALLBACK_STRING_LONGLONG(CLASS, PCLASS, CBNAME) \
1955 wxString CLASS::CBNAME(long a, long b) const { \
1958 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1959 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1961 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ll)",a,b)); \
1963 rval = Py2wxString(ro); \
1967 wxPyEndBlockThreads(blocked); \
1969 rval = PCLASS::CBNAME(a,b); \
1973 //---------------------------------------------------------------------------
1975 #define DEC_PYCALLBACK_INT_LONG(CBNAME) \
1976 int CBNAME(long a) const
1979 #define IMP_PYCALLBACK_INT_LONG(CLASS, PCLASS, CBNAME) \
1980 int CLASS::CBNAME(long a) const { \
1983 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1984 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1986 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(l)",a)); \
1988 rval = PyInt_AsLong(ro); \
1992 wxPyEndBlockThreads(blocked); \
1994 rval = PCLASS::CBNAME(a); \
1999 #define DEC_PYCALLBACK_INT_LONG_virtual(CBNAME) \
2000 int CBNAME(long a) const;
2003 #define IMP_PYCALLBACK_INT_LONG_virtual(CLASS, PCLASS, CBNAME) \
2004 int CLASS::CBNAME(long a) const { \
2005 int rval=-1; /* this rval is important for OnGetItemImage */ \
2007 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2008 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2010 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(l)",a)); \
2012 rval = PyInt_AsLong(ro); \
2016 wxPyEndBlockThreads(blocked); \
2021 //---------------------------------------------------------------------------
2023 #define DEC_PYCALLBACK_INT_INT(CBNAME) \
2027 #define IMP_PYCALLBACK_INT_INT(CLASS, PCLASS, CBNAME) \
2028 int CLASS::CBNAME(int a) { \
2031 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2032 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2034 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(i)",a)); \
2036 rval = PyInt_AsLong(ro); \
2040 wxPyEndBlockThreads(blocked); \
2042 rval = PCLASS::CBNAME(a); \
2046 //---------------------------------------------------------------------------
2048 #define DEC_PYCALLBACK_INT_LONGLONG(CBNAME) \
2049 int CBNAME(long a, long b) const
2052 #define IMP_PYCALLBACK_INT_LONGLONG(CLASS, PCLASS, CBNAME) \
2053 int CLASS::CBNAME(long a, long b) const { \
2056 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2057 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2059 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ll)",a,b)); \
2061 rval = PyInt_AsLong(ro); \
2065 wxPyEndBlockThreads(blocked); \
2067 rval = PCLASS::CBNAME(a, b); \
2072 #define DEC_PYCALLBACK_INT_LONGLONG_virtual(CBNAME) \
2073 int CBNAME(long a, long b) const;
2076 #define IMP_PYCALLBACK_INT_LONGLONG_virtual(CLASS, PCLASS, CBNAME) \
2077 int CLASS::CBNAME(long a, long b) const { \
2078 int rval=-1; /* this rval is important for OnGetItemImage */ \
2080 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2081 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2083 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ll)",a,b)); \
2085 rval = PyInt_AsLong(ro); \
2089 wxPyEndBlockThreads(blocked); \
2094 //---------------------------------------------------------------------------
2096 #define DEC_PYCALLBACK_LISTATTR_LONG(CBNAME) \
2097 wxListItemAttr* CBNAME(long a) const
2100 #define IMP_PYCALLBACK_LISTATTR_LONG(CLASS, PCLASS, CBNAME) \
2101 wxListItemAttr *CLASS::CBNAME(long a) const { \
2102 wxListItemAttr *rval = NULL; \
2104 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2105 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2107 wxListItemAttr* ptr; \
2108 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(i)", a)); \
2110 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxListItemAttr")))\
2115 wxPyEndBlockThreads(blocked); \
2117 rval = PCLASS::CBNAME(a); \
2121 //---------------------------------------------------------------------------
2123 #define DEC_PYCALLBACK_BOOL_ME(CBNAME) \
2124 bool CBNAME(wxMouseEvent& e)
2126 #define IMP_PYCALLBACK_BOOL_ME(CLASS, PCLASS, CBNAME) \
2127 bool CLASS::CBNAME(wxMouseEvent& e) { \
2130 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2131 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2133 PyObject* obj = wxPyConstructObject((void*)&e, wxT("wxMouseEvent"), 0); \
2134 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(O)",obj)); \
2136 rval = PyInt_AsLong(ro); \
2141 wxPyEndBlockThreads(blocked); \
2143 return PCLASS::CBNAME(e); \
2147 //---------------------------------------------------------------------------
2149 #define DEC_PYCALLBACK_WIZPG__pure(CBNAME) \
2150 wxWizardPage* CBNAME() const
2152 #define IMP_PYCALLBACK_WIZPG__pure(CLASS, PCLASS, CBNAME) \
2153 wxWizardPage* CLASS::CBNAME() const { \
2154 wxWizardPage* rv = NULL; \
2155 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2156 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
2158 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
2160 wxPyConvertSwigPtr(ro, (void **)&rv, wxT("wxWizardPage")); \
2164 wxPyEndBlockThreads(blocked); \
2168 //---------------------------------------------------------------------------
2170 #define DEC_PYCALLBACK_BITMAP__pure(CBNAME) \
2171 wxBitmap CBNAME() const
2173 #define IMP_PYCALLBACK_BITMAP__pure(CLASS, PCLASS, CBNAME) \
2174 wxBitmap CLASS::CBNAME() const { \
2176 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2177 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
2180 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
2182 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxBitmap"))) \
2187 wxPyEndBlockThreads(blocked); \
2191 //---------------------------------------------------------------------------
2193 #define DEC_PYCALLBACK_OBJECT__pure(CBNAME) \
2196 #define IMP_PYCALLBACK_OBJECT__pure(CLASS, PCLASS, CBNAME) \
2197 wxObject* CLASS::CBNAME() { \
2198 wxObject* rv = NULL; \
2199 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2200 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
2202 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
2204 wxPyConvertSwigPtr(ro, (void **)&rv, wxT("wxObject")); \
2208 wxPyEndBlockThreads(blocked); \
2212 //---------------------------------------------------------------------------
2214 #define DEC_PYCALLBACK_OBJECT_STRING_pure(CBNAME) \
2215 wxObject* CBNAME(const wxString& a)
2217 #define IMP_PYCALLBACK_OBJECT_STRING_pure(CLASS, PCLASS, CBNAME) \
2218 wxObject* CLASS::CBNAME(const wxString& a) { \
2219 wxObject* rv = NULL; \
2220 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2221 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
2222 PyObject* so = wx2PyString(a); \
2224 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(O)", so)); \
2226 wxPyConvertSwigPtr(ro, (void **)&rv, wxT("wxObject")); \
2231 wxPyEndBlockThreads(blocked); \
2235 //---------------------------------------------------------------------------
2237 #define DEC_PYCALLBACK_BOOL_NODE_pure(CBNAME) \
2238 bool CBNAME(wxXmlNode* a)
2241 #define IMP_PYCALLBACK_BOOL_NODE_pure(CLASS, PCLASS, CBNAME) \
2242 bool CLASS::CBNAME(wxXmlNode* a) { \
2244 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2245 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
2246 PyObject* obj = wxPyConstructObject((void*)a, wxT("wxXmlNode"), 0); \
2247 rv = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
2250 wxPyEndBlockThreads(blocked); \
2254 //---------------------------------------------------------------------------
2256 #define DEC_PYCALLBACK_COORD_SIZET_constpure(CBNAME) \
2257 wxCoord CBNAME(size_t a) const
2260 #define IMP_PYCALLBACK_COORD_SIZET_constpure(CLASS, PCLASS, CBNAME) \
2261 wxCoord CLASS::CBNAME(size_t a) const { \
2264 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2265 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2266 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)", a)); \
2268 wxPyEndBlockThreads(blocked); \
2272 //---------------------------------------------------------------------------
2274 #define DEC_PYCALLBACK_VOID_SIZETSIZET_const(CBNAME) \
2275 void CBNAME(size_t a, size_t b) const
2278 #define IMP_PYCALLBACK_VOID_SIZETSIZET_const(CLASS, PCLASS, CBNAME) \
2279 void CLASS::CBNAME(size_t a, size_t b) const { \
2281 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2282 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
2283 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)",a,b)); \
2284 wxPyEndBlockThreads(blocked); \
2286 PCLASS::CBNAME(a,b); \
2288 //---------------------------------------------------------------------------
2290 #define DEC_PYCALLBACK_COORD_const(CBNAME) \
2291 wxCoord CBNAME() const
2294 #define IMP_PYCALLBACK_COORD_const(CLASS, PCLASS, CBNAME) \
2295 wxCoord CLASS::CBNAME() const { \
2298 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2299 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
2300 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
2301 wxPyEndBlockThreads(blocked); \
2303 rval = PCLASS::CBNAME(); \
2307 //---------------------------------------------------------------------------
2309 #define DEC_PYCALLBACK__DCRECTSIZET_constpure(CBNAME) \
2310 void CBNAME(wxDC& a, const wxRect& b, size_t c) const;
2312 #define IMP_PYCALLBACK__DCRECTSIZET_constpure(CLASS, PCLASS, CBNAME) \
2313 void CLASS::CBNAME(wxDC& a, const wxRect& b, size_t c) const { \
2315 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2316 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2317 PyObject* obj = wxPyMake_wxObject(&a,false); \
2318 PyObject* ro = wxPyConstructObject((void*)&b, wxT("wxRect"), 0); \
2319 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OOi)", obj, ro, (int)c)); \
2320 Py_DECREF(obj); Py_DECREF(ro); \
2322 wxPyEndBlockThreads(blocked); \
2327 #define DEC_PYCALLBACK__DCRECTSIZET_const(CBNAME) \
2328 void CBNAME(wxDC& a, const wxRect& b, size_t c) const
2330 #define IMP_PYCALLBACK__DCRECTSIZET_const(CLASS, PCLASS, CBNAME) \
2331 void CLASS::CBNAME(wxDC& a, const wxRect& b, size_t c) const { \
2333 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2334 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2335 PyObject* obj = wxPyMake_wxObject(&a,false); \
2336 PyObject* ro = wxPyConstructObject((void*)&b, wxT("wxRect"), 0); \
2337 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OOi)", obj, ro, (int)c)); \
2338 Py_DECREF(obj); Py_DECREF(ro); \
2340 wxPyEndBlockThreads(blocked); \
2342 PCLASS::CBNAME(a,b,c); \
2346 //---------------------------------------------------------------------------
2347 // Same as the above set, but the wxRect is not const
2349 #define DEC_PYCALLBACK__DCRECTSIZET2_constpure(CBNAME) \
2350 void CBNAME(wxDC& a, wxRect& b, size_t c) const;
2352 #define IMP_PYCALLBACK__DCRECTSIZET2_constpure(CLASS, PCLASS, CBNAME) \
2353 void CLASS::CBNAME(wxDC& a, wxRect& b, size_t c) const { \
2355 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2356 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2357 PyObject* obj = wxPyMake_wxObject(&a,false); \
2358 PyObject* ro = wxPyConstructObject((void*)&b, wxT("wxRect"), 0); \
2359 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OOi)", obj, ro, (int)c)); \
2360 Py_DECREF(obj); Py_DECREF(ro); \
2362 wxPyEndBlockThreads(blocked); \
2367 #define DEC_PYCALLBACK__DCRECTSIZET2_const(CBNAME) \
2368 void CBNAME(wxDC& a, wxRect& b, size_t c) const
2370 #define IMP_PYCALLBACK__DCRECTSIZET2_const(CLASS, PCLASS, CBNAME) \
2371 void CLASS::CBNAME(wxDC& a, wxRect& b, size_t c) const { \
2373 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2374 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2375 PyObject* obj = wxPyMake_wxObject(&a,false); \
2376 PyObject* ro = wxPyConstructObject((void*)&b, wxT("wxRect"), 0); \
2377 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OOi)", obj, ro, (int)c)); \
2378 Py_DECREF(obj); Py_DECREF(ro); \
2380 wxPyEndBlockThreads(blocked); \
2382 PCLASS::CBNAME(a,b,c); \
2385 //---------------------------------------------------------------------------
2387 #define DEC_PYCALLBACK_STRING_SIZET(CBNAME) \
2388 wxString CBNAME(size_t a) const
2390 #define IMP_PYCALLBACK_STRING_SIZET(CLASS, PCLASS, CBNAME) \
2391 wxString CLASS::CBNAME(size_t a) const { \
2394 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2395 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2397 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(l)",a)); \
2399 rval = Py2wxString(ro); \
2403 wxPyEndBlockThreads(blocked); \
2405 rval = PCLASS::CBNAME(a); \
2409 //---------------------------------------------------------------------------
2411 #define DEC_PYCALLBACK_STRING_SIZET_pure(CBNAME) \
2412 wxString CBNAME(size_t a) const
2414 #define IMP_PYCALLBACK_STRING_SIZET_pure(CLASS, PCLASS, CBNAME) \
2415 wxString CLASS::CBNAME(size_t a) const { \
2418 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2419 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2421 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(l)",a)); \
2423 rval = Py2wxString(ro); \
2427 wxPyEndBlockThreads(blocked); \
2431 //---------------------------------------------------------------------------
2433 #define DEC_PYCALLBACK_VIZATTR_(CBNAME) \
2434 wxVisualAttributes CBNAME() const
2437 #define IMP_PYCALLBACK_VIZATTR_(CLASS, PCLASS, CBNAME) \
2438 wxVisualAttributes CLASS::CBNAME() const { \
2439 wxVisualAttributes rval; \
2441 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2442 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2444 wxVisualAttributes* ptr; \
2445 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
2447 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxVisualAttributes"))) \
2452 wxPyEndBlockThreads(blocked); \
2454 rval = PCLASS::CBNAME(); \
2458 //---------------------------------------------------------------------------
2460 #define DEC_PYCALLBACK_FONT_INT(CBNAME) \
2461 wxFont CBNAME(int a)
2463 #define IMP_PYCALLBACK_FONT_INT(CLASS, PCLASS, CBNAME) \
2464 wxFont CLASS::CBNAME(int a) { \
2467 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2468 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
2471 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(i)", a)); \
2473 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxFont"))) \
2478 wxPyEndBlockThreads(blocked); \
2480 rv = PCLASS::CBNAME(a); \
2484 //---------------------------------------------------------------------------
2486 #define DEC_PYCALLBACK_COLOUR_INT(CBNAME) \
2487 wxColour CBNAME(int a)
2489 #define IMP_PYCALLBACK_COLOUR_INT(CLASS, PCLASS, CBNAME) \
2490 wxColour CLASS::CBNAME(int a) { \
2493 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2494 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
2497 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(i)", a)); \
2499 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxColour"))) \
2504 wxPyEndBlockThreads(blocked); \
2506 rv = PCLASS::CBNAME(a); \
2510 //---------------------------------------------------------------------------