1 ////////////////////////////////////////////////////////////////////////////
3 // Purpose: Helper functions/classes for the wxPython extension module
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
13 #ifndef __wxp_helpers__
14 #define __wxp_helpers__
19 //---------------------------------------------------------------------------
21 typedef unsigned char byte
;
24 class wxPyApp
: public wxApp
33 extern wxPyApp
*wxPythonApp
;
35 //----------------------------------------------------------------------
38 PyObject
* __wxStart(PyObject
*, PyObject
* args
);
41 //extern PyObject* wxPython_dict;
42 PyObject
* __wxSetDictionary(PyObject
*, PyObject
* args
);
44 void wxPyEventThunker(wxObject
*, wxEvent
& event
);
46 PyObject
* wxPyConstructObject(void* ptr
,
47 const wxString
& className
,
49 PyObject
* wxPyConstructObject(void* ptr
,
50 const wxString
& className
,
54 PyObject
* wx2PyString(const wxString
& src
);
55 wxString
Py2wxString(PyObject
* source
);
57 PyObject
* wxPyClassExists(const wxString
& className
);
58 PyObject
* wxPyMake_wxObject(wxObject
* source
, bool checkEvtHandler
=TRUE
);
59 PyObject
* wxPyMake_wxSizer(wxSizer
* source
);
60 void wxPyPtrTypeMap_Add(const char* commonName
, const char* ptrName
);
62 PyObject
* wxPy_ConvertList(wxListBase
* list
, const char* className
);
63 long wxPyGetWinHandle(wxWindow
* win
);
65 //----------------------------------------------------------------------
67 // if we want to handle threads and Python threads are available...
68 #if defined(WXP_USE_THREAD) && defined(WITH_THREAD)
69 #define WXP_WITH_THREAD
70 #else // no Python threads...
71 #undef WXP_WITH_THREAD
76 PyThreadState
* wxPyBeginAllowThreads();
77 void wxPyEndAllowThreads(PyThreadState
* state
);
80 void wxPyBeginBlockThreads();
81 void wxPyEndBlockThreads();
83 //----------------------------------------------------------------------
84 // These are helpers used by the typemaps
86 wxString
* wxString_in_helper(PyObject
* source
);
88 byte
* byte_LIST_helper(PyObject
* source
);
89 int* int_LIST_helper(PyObject
* source
);
90 long* long_LIST_helper(PyObject
* source
);
91 char** string_LIST_helper(PyObject
* source
);
92 wxPoint
* wxPoint_LIST_helper(PyObject
* source
, int* npoints
);
93 wxBitmap
** wxBitmap_LIST_helper(PyObject
* source
);
94 wxString
* wxString_LIST_helper(PyObject
* source
);
95 wxAcceleratorEntry
* wxAcceleratorEntry_LIST_helper(PyObject
* source
);
96 wxPen
** wxPen_LIST_helper(PyObject
* source
);
98 bool wxSize_helper(PyObject
* source
, wxSize
** obj
);
99 bool wxPoint_helper(PyObject
* source
, wxPoint
** obj
);
100 bool wxRealPoint_helper(PyObject
* source
, wxRealPoint
** obj
);
101 bool wxRect_helper(PyObject
* source
, wxRect
** obj
);
102 bool wxColour_helper(PyObject
* source
, wxColour
** obj
);
104 //----------------------------------------------------------------------
105 // Other helpful stuff
107 #if PYTHON_API_VERSION < 1009
108 #define PySequence_Fast_GET_ITEM(o, i) \
109 (PyList_Check(o) ? PyList_GET_ITEM(o, i) : PyTuple_GET_ITEM(o, i))
112 bool _2int_seq_helper(PyObject
* source
, int* i1
, int* i2
);
113 bool _4int_seq_helper(PyObject
* source
, int* i1
, int* i2
, int* i3
, int* i4
);
116 PyObject
* wxArrayString2PyList_helper(const wxArrayString
& arr
);
117 PyObject
* wxArrayInt2PyList_helper(const wxArrayInt
& arr
);
119 #define RETURN_NONE() { Py_INCREF(Py_None); return Py_None; }
120 #define DECLARE_DEF_STRING(name) static const wxString wxPy##name(wx##name)
121 #define DECLARE_DEF_STRING2(name,val) static const wxString wxPy##name(val)
123 //----------------------------------------------------------------------
126 extern "C" void SWIG_MakePtr(char *, void *, char *);
127 extern "C" char *SWIG_GetPtr(char *, void **, char *);
128 extern "C" char *SWIG_GetPtrObj(PyObject
*obj
, void **ptr
, char *type
);
133 # pragma warning(disable:4800)
134 # pragma warning(disable:4190)
137 //----------------------------------------------------------------------
139 class wxPyCallback
: public wxObject
{
140 DECLARE_ABSTRACT_CLASS(wxPyCallback
);
142 wxPyCallback(PyObject
* func
);
143 wxPyCallback(const wxPyCallback
& other
);
146 void EventThunker(wxEvent
& event
);
151 //---------------------------------------------------------------------------
153 class wxPyTimer
: public wxTimer
{
155 wxPyTimer(PyObject
* callback
);
164 //---------------------------------------------------------------------------
165 //---------------------------------------------------------------------------
166 // These Event classes can be derived from in Python and passed through the
167 // event system without loosing anything. They do this by keeping a reference
168 // to themselves and some special case handling in wxPyCallback::EventThunker.
171 class wxPyEvtSelfRef
{
176 void SetSelf(PyObject
* self
, bool clone
=FALSE
);
177 PyObject
* GetSelf() const;
185 class wxPyEvent
: public wxEvent
, public wxPyEvtSelfRef
{
186 DECLARE_ABSTRACT_CLASS(wxPyEvent
)
189 wxPyEvent(const wxPyEvent
& evt
);
192 virtual wxEvent
* Clone() const { return new wxPyEvent(*this); }
196 class wxPyCommandEvent
: public wxCommandEvent
, public wxPyEvtSelfRef
{
197 DECLARE_ABSTRACT_CLASS(wxPyCommandEvent
)
199 wxPyCommandEvent(wxEventType commandType
= wxEVT_NULL
, int id
=0);
200 wxPyCommandEvent(const wxPyCommandEvent
& evt
);
203 virtual wxEvent
* Clone() const { return new wxPyCommandEvent(*this); }
208 //----------------------------------------------------------------------
209 // Forward decalre a few things used in the exported API
210 class wxPyClientData
;
212 class wxPyOORClientData
;
213 class wxPyCBInputStream
;
215 void wxPyClientData_dtor(wxPyClientData
* self
);
216 void wxPyUserData_dtor(wxPyUserData
* self
);
217 void wxPyOORClientData_dtor(wxPyOORClientData
* self
);
218 wxPyCBInputStream
* wxPyCBInputStream_create(PyObject
*py
, bool block
);
221 //---------------------------------------------------------------------------
222 // Export a C API in a struct. Other modules will be able to load this from
223 // the wxc module and will then have safe access to these functions, even if
224 // in another shared library.
226 class wxPyCallbackHelper
;
229 // Make SunCC happy and make typedef's for these that are extern "C"
230 typedef void (*p_SWIG_MakePtr_t
)(char*, void*, char*);
231 typedef char* (*p_SWIG_GetPtr_t
)(char*, void**, char*);
232 typedef char* (*p_SWIG_GetPtrObj_t
)(PyObject
*, void**, char*);
233 typedef void (*p_SWIG_RegisterMapping_t
)(char*, char*, void *(*cast
)(void *));
234 typedef void (*p_SWIG_addvarlink_t
)(PyObject
*, char*, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
));
235 typedef PyObject
* (*p_SWIG_newvarlink_t
)(void);
240 p_SWIG_MakePtr_t p_SWIG_MakePtr
;
241 p_SWIG_GetPtr_t p_SWIG_GetPtr
;
242 p_SWIG_GetPtrObj_t p_SWIG_GetPtrObj
;
243 p_SWIG_RegisterMapping_t p_SWIG_RegisterMapping
;
244 p_SWIG_addvarlink_t p_SWIG_addvarlink
;
245 p_SWIG_newvarlink_t p_SWIG_newvarlink
;
247 PyThreadState
* (*p_wxPyBeginAllowThreads
)();
248 void (*p_wxPyEndAllowThreads
)(PyThreadState
* state
);
249 void (*p_wxPyBeginBlockThreads
)();
250 void (*p_wxPyEndBlockThreads
)();
252 PyObject
* (*p_wxPyConstructObject
)(void *, const wxString
&, int);
253 PyObject
* (*p_wxPy_ConvertList
)(wxListBase
* list
, const char* className
);
255 wxString
* (*p_wxString_in_helper
)(PyObject
* source
);
256 wxString (*p_Py2wxString
)(PyObject
* source
);
257 PyObject
* (*p_wx2PyString
)(const wxString
& src
);
259 byte
* (*p_byte_LIST_helper
)(PyObject
* source
);
260 int* (*p_int_LIST_helper
)(PyObject
* source
);
261 long* (*p_long_LIST_helper
)(PyObject
* source
);
262 char** (*p_string_LIST_helper
)(PyObject
* source
);
263 wxPoint
* (*p_wxPoint_LIST_helper
)(PyObject
* source
, int* npoints
);
264 wxBitmap
** (*p_wxBitmap_LIST_helper
)(PyObject
* source
);
265 wxString
* (*p_wxString_LIST_helper
)(PyObject
* source
);
266 wxAcceleratorEntry
* (*p_wxAcceleratorEntry_LIST_helper
)(PyObject
* source
);
268 bool (*p_wxSize_helper
)(PyObject
* source
, wxSize
** obj
);
269 bool (*p_wxPoint_helper
)(PyObject
* source
, wxPoint
** obj
);
270 bool (*p_wxRealPoint_helper
)(PyObject
* source
, wxRealPoint
** obj
);
271 bool (*p_wxRect_helper
)(PyObject
* source
, wxRect
** obj
);
272 bool (*p_wxColour_helper
)(PyObject
* source
, wxColour
** obj
);
274 void (*p_wxPyCBH_setCallbackInfo
)(wxPyCallbackHelper
& cbh
, PyObject
* self
, PyObject
* klass
, int incref
);
275 bool (*p_wxPyCBH_findCallback
)(const wxPyCallbackHelper
& cbh
, const char* name
);
276 int (*p_wxPyCBH_callCallback
)(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
);
277 PyObject
* (*p_wxPyCBH_callCallbackObj
)(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
);
278 void (*p_wxPyCBH_delete
)(wxPyCallbackHelper
* cbh
);
280 PyObject
* (*p_wxPyClassExists
)(const wxString
& className
);
281 PyObject
* (*p_wxPyMake_wxObject
)(wxObject
* source
, bool checkEvtHandler
);
282 PyObject
* (*p_wxPyMake_wxSizer
)(wxSizer
* source
);
283 void (*p_wxPyPtrTypeMap_Add
)(const char* commonName
, const char* ptrName
);
284 PyObject
* (*p_wxArrayString2PyList_helper
)(const wxArrayString
& arr
);
285 PyObject
* (*p_wxArrayInt2PyList_helper
)(const wxArrayInt
& arr
);
287 void (*p_wxPyClientData_dtor
)(wxPyClientData
*);
288 void (*p_wxPyUserData_dtor
)(wxPyUserData
*);
289 void (*p_wxPyOORClientData_dtor
)(wxPyOORClientData
*);
291 wxPyCBInputStream
* (*p_wxPyCBInputStream_create
)(PyObject
*py
, bool block
);
295 #ifdef wxPyUSE_EXPORT
296 // Notice that this is static, not extern. This is by design, each module
297 // needs one, but doesn't have to use it.
298 static wxPyCoreAPI
* wxPyCoreAPIPtr
= NULL
;
302 //---------------------------------------------------------------------------
305 class wxPyUserData
: public wxObject
{
307 wxPyUserData(PyObject
* obj
) {
313 #ifdef wxPyUSE_EXPORT
314 wxPyCoreAPIPtr
->p_wxPyUserData_dtor(this);
316 wxPyUserData_dtor(this);
323 class wxPyClientData
: public wxClientData
{
325 wxPyClientData(PyObject
* obj
) {
331 #ifdef wxPyUSE_EXPORT
332 wxPyCoreAPIPtr
->p_wxPyClientData_dtor(this);
334 wxPyClientData_dtor(this);
341 class wxPyOORClientData
: public wxPyClientData
{
343 wxPyOORClientData(PyObject
* obj
)
344 : wxPyClientData(obj
) {}
346 ~wxPyOORClientData() {
347 #ifdef wxPyUSE_EXPORT
348 wxPyCoreAPIPtr
->p_wxPyOORClientData_dtor(this);
350 wxPyOORClientData_dtor(this);
355 //---------------------------------------------------------------------------
356 // This class holds an instance of a Python Shadow Class object and assists
357 // with looking up and invoking Python callback methods from C++ virtual
358 // method redirections. For all classes which have virtuals which should be
359 // overridable in wxPython, a new subclass is created that contains a
360 // wxPyCallbackHelper.
363 class wxPyCallbackHelper
{
365 wxPyCallbackHelper(const wxPyCallbackHelper
& other
);
367 wxPyCallbackHelper() {
374 ~wxPyCallbackHelper() {
375 #ifdef wxPyUSE_EXPORT
376 wxPyCoreAPIPtr
->p_wxPyCBH_delete(this);
378 wxPyCBH_delete(this);
382 void setSelf(PyObject
* self
, PyObject
* klass
, int incref
=TRUE
);
383 bool findCallback(const char* name
) const;
384 int callCallback(PyObject
* argTuple
) const;
385 PyObject
* callCallbackObj(PyObject
* argTuple
) const;
390 PyObject
* m_lastFound
;
393 friend void wxPyCBH_delete(wxPyCallbackHelper
* cbh
);
397 void wxPyCBH_setCallbackInfo(wxPyCallbackHelper
& cbh
, PyObject
* self
, PyObject
* klass
, int incref
);
398 bool wxPyCBH_findCallback(const wxPyCallbackHelper
& cbh
, const char* name
);
399 int wxPyCBH_callCallback(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
);
400 PyObject
* wxPyCBH_callCallbackObj(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
);
401 void wxPyCBH_delete(wxPyCallbackHelper
* cbh
);
406 //---------------------------------------------------------------------------
407 // These macros are used to implement the virtual methods that should
408 // redirect to a Python method if one exists. The names designate the
409 // return type, if any, as well as any parameter types.
410 //---------------------------------------------------------------------------
413 void _setCallbackInfo(PyObject* self, PyObject* _class, int incref=1) { \
414 wxPyCBH_setCallbackInfo(m_myInst, self, _class, incref); \
416 private: wxPyCallbackHelper m_myInst
418 //---------------------------------------------------------------------------
420 #define DEC_PYCALLBACK__(CBNAME) \
422 void base_##CBNAME();
425 #define IMP_PYCALLBACK__(CLASS, PCLASS, CBNAME) \
426 void CLASS::CBNAME() { \
428 wxPyBeginBlockThreads(); \
429 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
430 wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
431 wxPyEndBlockThreads(); \
435 void CLASS::base_##CBNAME() { \
439 //---------------------------------------------------------------------------
441 #define DEC_PYCALLBACK_BOOL_INTINT(CBNAME) \
442 bool CBNAME(int a, int b); \
443 bool base_##CBNAME(int a, int b);
446 #define IMP_PYCALLBACK_BOOL_INTINT(CLASS, PCLASS, CBNAME) \
447 bool CLASS::CBNAME(int a, int b) { \
448 bool rval=FALSE, found; \
449 wxPyBeginBlockThreads(); \
450 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
451 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)",a,b)); \
452 wxPyEndBlockThreads(); \
454 rval = PCLASS::CBNAME(a,b); \
457 bool CLASS::base_##CBNAME(int a, int b) { \
458 return PCLASS::CBNAME(a,b); \
461 //---------------------------------------------------------------------------
463 #define DEC_PYCALLBACK_VOID_INTINT(CBNAME) \
464 void CBNAME(int a, int b); \
465 void base_##CBNAME(int a, int b);
468 #define IMP_PYCALLBACK_VOID_INTINT(CLASS, PCLASS, CBNAME) \
469 void CLASS::CBNAME(int a, int b) { \
471 wxPyBeginBlockThreads(); \
472 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
473 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)",a,b)); \
474 wxPyEndBlockThreads(); \
476 PCLASS::CBNAME(a,b); \
478 void CLASS::base_##CBNAME(int a, int b) { \
479 PCLASS::CBNAME(a,b); \
482 //---------------------------------------------------------------------------
484 #define DEC_PYCALLBACK_VOID_INT4(CBNAME) \
485 void CBNAME(int a, int b, int c, int d); \
486 void base_##CBNAME(int a, int b, int c, int d);
489 #define IMP_PYCALLBACK_VOID_INT4(CLASS, PCLASS, CBNAME) \
490 void CLASS::CBNAME(int a, int b, int c, int d) { \
492 wxPyBeginBlockThreads(); \
493 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
494 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiii)",a,b,c,d)); \
495 wxPyEndBlockThreads(); \
497 PCLASS::CBNAME(a,b,c,d); \
499 void CLASS::base_##CBNAME(int a, int b, int c, int d) { \
500 PCLASS::CBNAME(a,b,c,d); \
503 //---------------------------------------------------------------------------
504 #define DEC_PYCALLBACK_VOID_INT5(CBNAME) \
505 void CBNAME(int a, int b, int c, int d, int e); \
506 void base_##CBNAME(int a, int b, int c, int d, int e);
509 #define IMP_PYCALLBACK_VOID_INT5(CLASS, PCLASS, CBNAME) \
510 void CLASS::CBNAME(int a, int b, int c, int d, int e) { \
512 wxPyBeginBlockThreads(); \
513 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
514 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiiii)",a,b,c,d,e)); \
515 wxPyEndBlockThreads(); \
517 PCLASS::CBNAME(a,b,c,d,e); \
519 void CLASS::base_##CBNAME(int a, int b, int c, int d, int e) { \
520 PCLASS::CBNAME(a,b,c,d,e); \
523 //---------------------------------------------------------------------------
525 #define DEC_PYCALLBACK_VOID_INTPINTP_const(CBNAME) \
526 void CBNAME(int* a, int* b) const; \
527 void base_##CBNAME(int* a, int* b) const;
530 #define IMP_PYCALLBACK_VOID_INTPINTP_const(CLASS, PCLASS, CBNAME) \
531 void CLASS::CBNAME(int* a, int* b) const { \
532 const char* errmsg = #CBNAME " should return a 2-tuple of integers."; \
534 wxPyBeginBlockThreads(); \
535 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
537 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
539 if (PySequence_Check(ro) && PyObject_Length(ro) == 2) { \
540 PyObject* o1 = PySequence_GetItem(ro, 0); \
541 PyObject* o2 = PySequence_GetItem(ro, 1); \
542 if (PyNumber_Check(o1) && PyNumber_Check(o2)) { \
543 *a = PyInt_AsLong(o1); *b = PyInt_AsLong(o2); \
546 PyErr_SetString(PyExc_TypeError, errmsg); \
551 PyErr_SetString(PyExc_TypeError, errmsg); \
556 wxPyEndBlockThreads(); \
558 PCLASS::CBNAME(a,b); \
560 void CLASS::base_##CBNAME(int* a, int* b) const { \
561 PCLASS::CBNAME(a,b); \
565 //---------------------------------------------------------------------------
567 #define DEC_PYCALLBACK_SIZE_const(CBNAME) \
568 wxSize CBNAME() const; \
569 wxSize base_##CBNAME() const;
572 #define IMP_PYCALLBACK_SIZE_const(CLASS, PCLASS, CBNAME) \
573 wxSize CLASS::CBNAME() const { \
574 const char* errmsg = #CBNAME " should return a 2-tuple of integers."; \
575 bool found; wxSize rval(0,0); \
576 wxPyBeginBlockThreads(); \
577 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
579 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
581 if (PySequence_Check(ro) && PyObject_Length(ro) == 2) { \
582 PyObject* o1 = PySequence_GetItem(ro, 0); \
583 PyObject* o2 = PySequence_GetItem(ro, 1); \
584 if (PyNumber_Check(o1) && PyNumber_Check(o2)) { \
585 rval = wxSize(PyInt_AsLong(o1), PyInt_AsLong(o2)); \
588 PyErr_SetString(PyExc_TypeError, errmsg); \
593 PyErr_SetString(PyExc_TypeError, errmsg); \
598 wxPyEndBlockThreads(); \
600 return PCLASS::CBNAME(); \
604 wxSize CLASS::base_##CBNAME() const { \
605 return PCLASS::CBNAME(); \
609 //---------------------------------------------------------------------------
611 #define DEC_PYCALLBACK_BOOL_INT(CBNAME) \
612 bool CBNAME(int a); \
613 bool base_##CBNAME(int a);
616 #define IMP_PYCALLBACK_BOOL_INT(CLASS, PCLASS, CBNAME) \
617 bool CLASS::CBNAME(int a) { \
618 bool rval=FALSE, found; \
619 wxPyBeginBlockThreads(); \
620 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
621 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)",a));\
622 wxPyEndBlockThreads(); \
624 rval = PCLASS::CBNAME(a); \
627 bool CLASS::base_##CBNAME(int a) { \
628 return PCLASS::CBNAME(a); \
631 //---------------------------------------------------------------------------
633 #define DEC_PYCALLBACK_BOOL_INT_pure(CBNAME) \
637 #define IMP_PYCALLBACK_BOOL_INT_pure(CLASS, PCLASS, CBNAME) \
638 bool CLASS::CBNAME(int a) { \
640 wxPyBeginBlockThreads(); \
641 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) \
642 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)",a)); \
644 wxPyEndBlockThreads(); \
649 //---------------------------------------------------------------------------
651 #define DEC_PYCALLBACK__DC(CBNAME) \
652 void CBNAME(wxDC& a); \
653 void base_##CBNAME(wxDC& a);
656 #define IMP_PYCALLBACK__DC(CLASS, PCLASS, CBNAME) \
657 void CLASS::CBNAME(wxDC& a) { \
659 wxPyBeginBlockThreads(); \
660 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
661 PyObject* obj = wxPyMake_wxObject(&a); \
662 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
665 wxPyEndBlockThreads(); \
669 void CLASS::base_##CBNAME(wxDC& a) { \
675 //---------------------------------------------------------------------------
677 #define DEC_PYCALLBACK__DCBOOL(CBNAME) \
678 void CBNAME(wxDC& a, bool b); \
679 void base_##CBNAME(wxDC& a, bool b);
682 #define IMP_PYCALLBACK__DCBOOL(CLASS, PCLASS, CBNAME) \
683 void CLASS::CBNAME(wxDC& a, bool b) { \
685 wxPyBeginBlockThreads(); \
686 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
687 PyObject* obj = wxPyMake_wxObject(&a); \
688 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oi)", obj, (int)b)); \
691 wxPyEndBlockThreads(); \
693 PCLASS::CBNAME(a, b); \
695 void CLASS::base_##CBNAME(wxDC& a, bool b) { \
696 PCLASS::CBNAME(a, b); \
699 //---------------------------------------------------------------------------
701 #define DEC_PYCALLBACK__DCBOOL(CBNAME) \
702 void CBNAME(wxDC& a, bool b); \
703 void base_##CBNAME(wxDC& a, bool b);
706 #define IMP_PYCALLBACK__DCBOOL(CLASS, PCLASS, CBNAME) \
707 void CLASS::CBNAME(wxDC& a, bool b) { \
709 wxPyBeginBlockThreads(); \
710 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
711 PyObject* obj = wxPyMake_wxObject(&a); \
712 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oi)", obj, (int)b)); \
715 wxPyEndBlockThreads(); \
717 PCLASS::CBNAME(a, b); \
719 void CLASS::base_##CBNAME(wxDC& a, bool b) { \
720 PCLASS::CBNAME(a, b); \
723 //---------------------------------------------------------------------------
725 #define DEC_PYCALLBACK__2DBL(CBNAME) \
726 void CBNAME(double a, double b); \
727 void base_##CBNAME(double a, double b);
730 #define IMP_PYCALLBACK__2DBL(CLASS, PCLASS, CBNAME) \
731 void CLASS::CBNAME(double a, double b) { \
733 wxPyBeginBlockThreads(); \
734 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
735 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(dd)",a,b)); \
736 wxPyEndBlockThreads(); \
738 PCLASS::CBNAME(a, b); \
740 void CLASS::base_##CBNAME(double a, double b) { \
741 PCLASS::CBNAME(a, b); \
744 //---------------------------------------------------------------------------
746 #define DEC_PYCALLBACK__2DBL2INT(CBNAME) \
747 void CBNAME(double a, double b, int c, int d); \
748 void base_##CBNAME(double a, double b, int c, int d);
751 #define IMP_PYCALLBACK__2DBL2INT(CLASS, PCLASS, CBNAME) \
752 void CLASS::CBNAME(double a, double b, int c, int d) { \
754 wxPyBeginBlockThreads(); \
755 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
756 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ddii)", \
758 wxPyEndBlockThreads(); \
760 PCLASS::CBNAME(a, b, c, d); \
762 void CLASS::base_##CBNAME(double a, double b, int c, int d) { \
763 PCLASS::CBNAME(a, b, c, d); \
766 //---------------------------------------------------------------------------
768 #define DEC_PYCALLBACK__DC4DBLBOOL(CBNAME) \
769 void CBNAME(wxDC& a, double b, double c, double d, double e, bool f); \
770 void base_##CBNAME(wxDC& a, double b, double c, double d, double e, bool f);
773 #define IMP_PYCALLBACK__DC4DBLBOOL(CLASS, PCLASS, CBNAME) \
774 void CLASS::CBNAME(wxDC& a, double b, double c, double d, double e, bool f) { \
776 wxPyBeginBlockThreads(); \
777 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
778 PyObject* obj = wxPyMake_wxObject(&a); \
779 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oddddi)", obj, b, c, d, e, (int)f)); \
782 wxPyEndBlockThreads(); \
784 PCLASS::CBNAME(a, b, c, d, e, f); \
786 void CLASS::base_##CBNAME(wxDC& a, double b, double c, double d, double e, bool f) {\
787 PCLASS::CBNAME(a, b, c, d, e, f); \
790 //---------------------------------------------------------------------------
792 #define DEC_PYCALLBACK_BOOL_DC4DBLBOOL(CBNAME) \
793 bool CBNAME(wxDC& a, double b, double c, double d, double e, bool f); \
794 bool base_##CBNAME(wxDC& a, double b, double c, double d, double e, bool f);
797 #define IMP_PYCALLBACK_BOOL_DC4DBLBOOL(CLASS, PCLASS, CBNAME) \
798 bool CLASS::CBNAME(wxDC& a, double b, double c, double d, double e, bool f) { \
800 wxPyBeginBlockThreads(); \
802 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
803 PyObject* obj = wxPyMake_wxObject(&a); \
804 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oddddi)", obj, b, c, d, e, (int)f));\
807 wxPyEndBlockThreads(); \
809 rval = PCLASS::CBNAME(a, b, c, d, e, f); \
812 bool CLASS::base_##CBNAME(wxDC& a, double b, double c, double d, double e, bool f) {\
813 return PCLASS::CBNAME(a, b, c, d, e, f); \
816 //---------------------------------------------------------------------------
818 #define DEC_PYCALLBACK__BOOL2DBL2INT(CBNAME) \
819 void CBNAME(bool a, double b, double c, int d, int e); \
820 void base_##CBNAME(bool a, double b, double c, int d, int e);
823 #define IMP_PYCALLBACK__BOOL2DBL2INT(CLASS, PCLASS, CBNAME) \
824 void CLASS::CBNAME(bool a, double b, double c, int d, int e) { \
826 wxPyBeginBlockThreads(); \
827 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
828 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iddii)", \
830 wxPyEndBlockThreads(); \
832 PCLASS::CBNAME(a, b, c, d, e); \
834 void CLASS::base_##CBNAME(bool a, double b, double c, int d, int e) { \
835 PCLASS::CBNAME(a, b, c, d, e); \
838 //---------------------------------------------------------------------------
840 #define DEC_PYCALLBACK__DC4DBL(CBNAME) \
841 void CBNAME(wxDC& a, double b, double c, double d, double e); \
842 void base_##CBNAME(wxDC& a, double b, double c, double d, double e);
845 #define IMP_PYCALLBACK__DC4DBL(CLASS, PCLASS, CBNAME) \
846 void CLASS::CBNAME(wxDC& a, double b, double c, double d, double e) { \
848 wxPyBeginBlockThreads(); \
849 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
850 PyObject* obj = wxPyMake_wxObject(&a); \
851 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Odddd)", obj, b, c, d, e)); \
854 wxPyEndBlockThreads(); \
856 PCLASS::CBNAME(a, b, c, d, e); \
858 void CLASS::base_##CBNAME(wxDC& a, double b, double c, double d, double e) {\
859 PCLASS::CBNAME(a, b, c, d, e); \
862 //---------------------------------------------------------------------------
864 #define DEC_PYCALLBACK__DCBOOL(CBNAME) \
865 void CBNAME(wxDC& a, bool b); \
866 void base_##CBNAME(wxDC& a, bool b);
869 #define IMP_PYCALLBACK__DCBOOL(CLASS, PCLASS, CBNAME) \
870 void CLASS::CBNAME(wxDC& a, bool b) { \
872 wxPyBeginBlockThreads(); \
873 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
874 PyObject* obj = wxPyMake_wxObject(&a); \
875 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oi)", obj, (int)b)); \
878 wxPyEndBlockThreads(); \
880 PCLASS::CBNAME(a, b); \
882 void CLASS::base_##CBNAME(wxDC& a, bool b) { \
883 PCLASS::CBNAME(a, b); \
886 //---------------------------------------------------------------------------
888 #define DEC_PYCALLBACK__WXCPBOOL2DBL2INT(CBNAME) \
889 void CBNAME(wxControlPoint* a, bool b, double c, double d, int e, int f); \
890 void base_##CBNAME(wxControlPoint* a, bool b, double c, double d, int e, int f);
893 #define IMP_PYCALLBACK__WXCPBOOL2DBL2INT(CLASS, PCLASS, CBNAME) \
894 void CLASS::CBNAME(wxControlPoint* a, bool b, double c, double d, \
897 wxPyBeginBlockThreads(); \
898 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
899 PyObject* obj = wxPyMake_wxObject(a); \
900 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oiddii)", obj, (int)b, c, d, e, f));\
903 wxPyEndBlockThreads(); \
905 PCLASS::CBNAME(a, b, c, d, e, f); \
907 void CLASS::base_##CBNAME(wxControlPoint* a, bool b, double c, double d, \
909 PCLASS::CBNAME(a, b, c, d, e, f); \
912 //---------------------------------------------------------------------------
914 #define DEC_PYCALLBACK__WXCP2DBL2INT(CBNAME) \
915 void CBNAME(wxControlPoint* a, double b, double c, int d, int e); \
916 void base_##CBNAME(wxControlPoint* a, double b, double c, int d, int e);
919 #define IMP_PYCALLBACK__WXCP2DBL2INT(CLASS, PCLASS, CBNAME) \
920 void CLASS::CBNAME(wxControlPoint* a, double b, double c, int d, int e) { \
922 wxPyBeginBlockThreads(); \
923 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
924 PyObject* obj = wxPyMake_wxObject(a); \
925 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oddii)", obj, b, c, d, e)); \
928 wxPyEndBlockThreads(); \
930 PCLASS::CBNAME(a, b, c, d, e); \
932 void CLASS::base_##CBNAME(wxControlPoint* a, double b, double c, \
934 PCLASS::CBNAME(a, b, c, d, e); \
937 //---------------------------------------------------------------------------
939 #define DEC_PYCALLBACK__2DBLINT(CBNAME) \
940 void CBNAME(double a, double b, int c); \
941 void base_##CBNAME(double a, double b, int c);
944 #define IMP_PYCALLBACK__2DBLINT(CLASS, PCLASS, CBNAME) \
945 void CLASS::CBNAME(double a, double b, int c) { \
947 wxPyBeginBlockThreads(); \
948 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
949 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ddi)", a,b,c)); \
950 wxPyEndBlockThreads(); \
952 PCLASS::CBNAME(a, b, c); \
954 void CLASS::base_##CBNAME(double a, double b, int c) { \
955 PCLASS::CBNAME(a, b, c); \
958 //---------------------------------------------------------------------------
960 #define DEC_PYCALLBACK__BOOL2DBLINT(CBNAME) \
961 void CBNAME(bool a, double b, double c, int d); \
962 void base_##CBNAME(bool a, double b, double c, int d);
965 #define IMP_PYCALLBACK__BOOL2DBLINT(CLASS, PCLASS, CBNAME) \
966 void CLASS::CBNAME(bool a, double b, double c, int d) { \
968 wxPyBeginBlockThreads(); \
969 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
970 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iddi)", (int)a,b,c,d));\
971 wxPyEndBlockThreads(); \
973 PCLASS::CBNAME(a, b, c, d); \
975 void CLASS::base_##CBNAME(bool a, double b, double c, int d) { \
976 PCLASS::CBNAME(a, b, c, d); \
979 //---------------------------------------------------------------------------
980 //---------------------------------------------------------------------------
982 #define DEC_PYCALLBACK__STRING(CBNAME) \
983 void CBNAME(const wxString& a); \
984 void base_##CBNAME(const wxString& a);
986 #define IMP_PYCALLBACK__STRING(CLASS, PCLASS, CBNAME) \
987 void CLASS::CBNAME(const wxString& a) { \
989 wxPyBeginBlockThreads(); \
990 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
991 PyObject* s = wx2PyString(a); \
992 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", s)); \
995 wxPyEndBlockThreads(); \
999 void CLASS::base_##CBNAME(const wxString& a) { \
1000 PCLASS::CBNAME(a); \
1003 //---------------------------------------------------------------------------
1005 #define DEC_PYCALLBACK_BOOL_STRING(CBNAME) \
1006 bool CBNAME(const wxString& a); \
1007 bool base_##CBNAME(const wxString& a);
1009 #define IMP_PYCALLBACK_BOOL_STRING(CLASS, PCLASS, CBNAME) \
1010 bool CLASS::CBNAME(const wxString& a) { \
1013 wxPyBeginBlockThreads(); \
1014 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1015 PyObject* s = wx2PyString(a); \
1016 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", s)); \
1019 wxPyEndBlockThreads(); \
1021 rval = PCLASS::CBNAME(a); \
1024 bool CLASS::base_##CBNAME(const wxString& a) { \
1025 return PCLASS::CBNAME(a); \
1028 //---------------------------------------------------------------------------
1030 #define DEC_PYCALLBACK_BOOL_STRING_pure(CBNAME) \
1031 bool CBNAME(const wxString& a);
1033 #define IMP_PYCALLBACK_BOOL_STRING_pure(CLASS, PCLASS, CBNAME) \
1034 bool CLASS::CBNAME(const wxString& a) { \
1036 wxPyBeginBlockThreads(); \
1037 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1038 PyObject* s = wx2PyString(a); \
1039 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", s)); \
1042 wxPyEndBlockThreads(); \
1046 //---------------------------------------------------------------------------
1048 #define DEC_PYCALLBACK_STRING_STRING_pure(CBNAME) \
1049 wxString CBNAME(const wxString& a); \
1051 #define IMP_PYCALLBACK_STRING_STRING_pure(CLASS, PCLASS, CBNAME) \
1052 wxString CLASS::CBNAME(const wxString& a) { \
1054 wxPyBeginBlockThreads(); \
1055 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1057 PyObject* s = wx2PyString(a); \
1058 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(O)", s)); \
1061 rval = Py2wxString(ro); \
1065 wxPyEndBlockThreads(); \
1069 //---------------------------------------------------------------------------
1071 #define DEC_PYCALLBACK_STRING_STRINGINT_pure(CBNAME) \
1072 wxString CBNAME(const wxString& a,int b); \
1074 #define IMP_PYCALLBACK_STRING_STRINGINT_pure(CLASS, PCLASS, CBNAME) \
1075 wxString CLASS::CBNAME(const wxString& a,int b) { \
1077 wxPyBeginBlockThreads(); \
1078 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1080 PyObject* s = wx2PyString(a); \
1081 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(Oi)",s,b)); \
1084 rval = Py2wxString(ro); \
1088 wxPyEndBlockThreads(); \
1092 //---------------------------------------------------------------------------
1094 #define DEC_PYCALLBACK_BOOL_STRINGSTRING(CBNAME) \
1095 bool CBNAME(const wxString& a, const wxString& b); \
1096 bool base_##CBNAME(const wxString& a, const wxString& b);
1098 #define IMP_PYCALLBACK_BOOL_STRINGSTRING(CLASS, PCLASS, CBNAME) \
1099 bool CLASS::CBNAME(const wxString& a, const wxString& b) { \
1102 wxPyBeginBlockThreads(); \
1103 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1104 PyObject* s1 = wx2PyString(a); \
1105 PyObject* s2 = wx2PyString(b); \
1106 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OO)",s1,s2)); \
1110 wxPyEndBlockThreads(); \
1112 rval = PCLASS::CBNAME(a, b); \
1115 bool CLASS::base_##CBNAME(const wxString& a, const wxString& b) { \
1116 return PCLASS::CBNAME(a, b); \
1119 //---------------------------------------------------------------------------
1121 #define DEC_PYCALLBACK_STRING_(CBNAME) \
1122 wxString CBNAME(); \
1123 wxString base_##CBNAME();
1125 #define IMP_PYCALLBACK_STRING_(CLASS, PCLASS, CBNAME) \
1126 wxString CLASS::CBNAME() { \
1129 wxPyBeginBlockThreads(); \
1130 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1132 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
1134 rval = Py2wxString(ro); \
1138 wxPyEndBlockThreads(); \
1140 rval = PCLASS::CBNAME(); \
1143 wxString CLASS::base_##CBNAME() { \
1144 return PCLASS::CBNAME(); \
1147 //---------------------------------------------------------------------------
1149 #define DEC_PYCALLBACK_STRING__pure(CBNAME) \
1152 #define IMP_PYCALLBACK_STRING__pure(CLASS, PCLASS, CBNAME) \
1153 wxString CLASS::CBNAME() { \
1155 wxPyBeginBlockThreads(); \
1156 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1158 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
1160 rval = Py2wxString(ro); \
1164 wxPyEndBlockThreads(); \
1168 //---------------------------------------------------------------------------
1170 #define DEC_PYCALLBACK_BOOL_TAG_pure(CBNAME) \
1171 bool CBNAME(const wxHtmlTag& a); \
1174 #define IMP_PYCALLBACK_BOOL_TAG_pure(CLASS, PCLASS, CBNAME) \
1175 bool CLASS::CBNAME(const wxHtmlTag& a) { \
1177 wxPyBeginBlockThreads(); \
1178 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1179 PyObject* obj = wxPyConstructObject((void*)&a, "wxHtmlTag", 0); \
1180 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
1183 wxPyEndBlockThreads(); \
1187 //---------------------------------------------------------------------------
1189 #define DEC_PYCALLBACK__CELLINTINT(CBNAME) \
1190 void CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y); \
1191 void base_##CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y);
1193 #define IMP_PYCALLBACK__CELLINTINT(CLASS, PCLASS, CBNAME) \
1194 void CLASS::CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y) { \
1196 wxPyBeginBlockThreads(); \
1197 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1198 PyObject* obj = wxPyConstructObject((void*)cell, "wxHtmlCell", 0); \
1199 wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(Oii)",obj,x,y)); \
1202 wxPyEndBlockThreads(); \
1204 PCLASS::CBNAME(cell, x, y); \
1206 void CLASS::base_##CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y) { \
1207 PCLASS::CBNAME(cell, x, y); \
1211 //---------------------------------------------------------------------------
1213 #define DEC_PYCALLBACK__CELLINTINTME(CBNAME) \
1214 void CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y, const wxMouseEvent& e); \
1215 void base_##CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y, const wxMouseEvent& e);
1217 #define IMP_PYCALLBACK__CELLINTINTME(CLASS, PCLASS, CBNAME) \
1218 void CLASS::CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y, const wxMouseEvent& e) { \
1220 wxPyBeginBlockThreads(); \
1221 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1222 PyObject* obj = wxPyConstructObject((void*)cell, "wxHtmlCell", 0); \
1223 PyObject* o2 = wxPyConstructObject((void*)&e, "wxMouseEvent", 0); \
1224 wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(OiiO)",obj,x,y,o2)); \
1228 wxPyEndBlockThreads(); \
1230 PCLASS::CBNAME(cell, x, y, e); \
1232 void CLASS::base_##CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y, const wxMouseEvent& e) { \
1233 PCLASS::CBNAME(cell, x, y, e); \
1238 //---------------------------------------------------------------------------
1240 #define DEC_PYCALLBACK___pure(CBNAME) \
1244 #define IMP_PYCALLBACK___pure(CLASS, PCLASS, CBNAME) \
1245 void CLASS::CBNAME() { \
1246 wxPyBeginBlockThreads(); \
1247 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) \
1248 wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
1249 wxPyEndBlockThreads(); \
1252 //---------------------------------------------------------------------------
1254 #define DEC_PYCALLBACK_wxSize__pure(CBNAME) \
1258 #define IMP_PYCALLBACK_wxSize__pure(CLASS, PCLASS, CBNAME) \
1259 wxSize CLASS::CBNAME() { \
1260 const char* errmsg = #CBNAME " should return a 2-tuple of integers or a wxSize object."; \
1262 wxPyBeginBlockThreads(); \
1263 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1266 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
1268 if (! SWIG_GetPtrObj(ro, (void **)&ptr, "_wxSize_p")) \
1270 else if (PySequence_Check(ro) && PyObject_Length(ro) == 2) { \
1271 PyObject* o1 = PySequence_GetItem(ro, 0); \
1272 PyObject* o2 = PySequence_GetItem(ro, 1); \
1273 if (PyNumber_Check(o1) && PyNumber_Check(o2)) \
1274 rval = wxSize(PyInt_AsLong(o1), PyInt_AsLong(o2)); \
1276 PyErr_SetString(PyExc_TypeError, errmsg); \
1281 PyErr_SetString(PyExc_TypeError, errmsg); \
1286 wxPyEndBlockThreads(); \
1290 //---------------------------------------------------------------------------
1292 #define DEC_PYCALLBACK_BOOL_WXWIN(CBNAME) \
1293 bool CBNAME(wxWindow* a); \
1294 bool base_##CBNAME(wxWindow* a);
1297 #define IMP_PYCALLBACK_BOOL_WXWIN(CLASS, PCLASS, CBNAME) \
1298 bool CLASS::CBNAME(wxWindow* a) { \
1301 wxPyBeginBlockThreads(); \
1302 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1303 PyObject* obj = wxPyMake_wxObject(a); \
1304 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
1307 wxPyEndBlockThreads(); \
1309 rval = PCLASS::CBNAME(a); \
1312 bool CLASS::base_##CBNAME(wxWindow* a) { \
1313 return PCLASS::CBNAME(a); \
1316 //---------------------------------------------------------------------------
1318 #define DEC_PYCALLBACK_BOOL_(CBNAME) \
1320 bool base_##CBNAME();
1323 #define IMP_PYCALLBACK_BOOL_(CLASS, PCLASS, CBNAME) \
1324 bool CLASS::CBNAME() { \
1327 wxPyBeginBlockThreads(); \
1328 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1329 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
1330 wxPyEndBlockThreads(); \
1332 rval = PCLASS::CBNAME(); \
1335 bool CLASS::base_##CBNAME() { \
1336 return PCLASS::CBNAME(); \
1339 //---------------------------------------------------------------------------
1341 #define DEC_PYCALLBACK_BOOL_const(CBNAME) \
1342 bool CBNAME() const; \
1343 bool base_##CBNAME() const;
1346 #define IMP_PYCALLBACK_BOOL_const(CLASS, PCLASS, CBNAME) \
1347 bool CLASS::CBNAME() const { \
1350 wxPyBeginBlockThreads(); \
1351 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1352 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
1353 wxPyEndBlockThreads(); \
1355 rval = PCLASS::CBNAME(); \
1358 bool CLASS::base_##CBNAME() const { \
1359 return PCLASS::CBNAME(); \
1362 //---------------------------------------------------------------------------
1364 #define DEC_PYCALLBACK_DR_2WXCDR(CBNAME) \
1365 wxDragResult CBNAME(wxCoord x, wxCoord y, wxDragResult def); \
1366 wxDragResult base_##CBNAME(wxCoord x, wxCoord y, wxDragResult def);
1369 #define IMP_PYCALLBACK_DR_2WXCDR(CLASS, PCLASS, CBNAME) \
1370 wxDragResult CLASS::CBNAME(wxCoord a, wxCoord b, wxDragResult c) { \
1373 wxPyBeginBlockThreads(); \
1374 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1375 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iii)", a,b,c));\
1376 wxPyEndBlockThreads(); \
1378 rval = PCLASS::CBNAME(a, b, c); \
1379 return (wxDragResult)rval; \
1381 wxDragResult CLASS::base_##CBNAME(wxCoord a, wxCoord b, wxDragResult c) { \
1382 return PCLASS::CBNAME(a, b, c); \
1385 //---------------------------------------------------------------------------
1387 #define DEC_PYCALLBACK_FSF_FSSTRING_pure(CBNAME) \
1388 wxFSFile* CBNAME(wxFileSystem& fs, const wxString& location); \
1390 #define IMP_PYCALLBACK_FSF_FSSTRING_pure(CLASS, PCLASS, CBNAME) \
1391 wxFSFile* CLASS::CBNAME(wxFileSystem& a,const wxString& b) { \
1392 wxPyBeginBlockThreads(); \
1394 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1396 PyObject* obj = wxPyMake_wxObject(&a); \
1397 PyObject* s = wx2PyString(b); \
1398 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(OO)",\
1401 SWIG_GetPtrObj(ro, (void **)&rval, "_wxFSFILE_p"); \
1407 wxPyEndBlockThreads(); \
1411 //---------------------------------------------------------------------------
1413 #define DEC_PYCALLBACK_BOOL_DR(CBNAME) \
1414 bool CBNAME(wxDragResult a); \
1415 bool base_##CBNAME(wxDragResult a);
1418 #define IMP_PYCALLBACK_BOOL_DR(CLASS, PCLASS, CBNAME) \
1419 bool CLASS::CBNAME(wxDragResult a) { \
1422 wxPyBeginBlockThreads(); \
1423 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1424 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)", a));\
1425 wxPyEndBlockThreads(); \
1427 rval = PCLASS::CBNAME(a); \
1430 bool CLASS::base_##CBNAME(wxDragResult a) { \
1431 return PCLASS::CBNAME(a); \
1434 //---------------------------------------------------------------------------
1436 #define DEC_PYCALLBACK_DR_2WXCDR_pure(CBNAME) \
1437 wxDragResult CBNAME(wxCoord x, wxCoord y, wxDragResult def);
1440 #define IMP_PYCALLBACK_DR_2WXCDR_pure(CLASS, PCLASS, CBNAME) \
1441 wxDragResult CLASS::CBNAME(wxCoord a, wxCoord b, wxDragResult c) { \
1442 wxPyBeginBlockThreads(); \
1444 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) \
1445 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iii)", a,b,c));\
1446 wxPyEndBlockThreads(); \
1447 return (wxDragResult)rval; \
1450 //---------------------------------------------------------------------------
1452 #define DEC_PYCALLBACK_BOOL_INTINTSTR_pure(CBNAME) \
1453 bool CBNAME(int a, int b, const wxString& c);
1455 #define IMP_PYCALLBACK_BOOL_INTINTSTR_pure(CLASS, PCLASS, CBNAME) \
1456 bool CLASS::CBNAME(int a, int b, const wxString& c) { \
1458 wxPyBeginBlockThreads(); \
1459 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1460 PyObject* s = wx2PyString(c); \
1461 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiO)",a,b,s));\
1464 wxPyEndBlockThreads(); \
1468 //---------------------------------------------------------------------------
1470 #define DEC_PYCALLBACK_SIZET_(CBNAME) \
1472 size_t base_##CBNAME();
1475 #define IMP_PYCALLBACK_SIZET_(CLASS, PCLASS, CBNAME) \
1476 size_t CLASS::CBNAME() { \
1479 wxPyBeginBlockThreads(); \
1480 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1481 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
1482 wxPyEndBlockThreads(); \
1484 rval = PCLASS::CBNAME(); \
1487 size_t CLASS::base_##CBNAME() { \
1488 return PCLASS::CBNAME(); \
1491 //---------------------------------------------------------------------------
1493 #define DEC_PYCALLBACK_DATAFMT_SIZET(CBNAME) \
1494 wxDataFormat CBNAME(size_t a); \
1495 wxDataFormat base_##CBNAME(size_t a);
1498 #define IMP_PYCALLBACK_DATAFMT_SIZET(CLASS, PCLASS, CBNAME) \
1499 wxDataFormat CLASS::CBNAME(size_t a) { \
1500 wxDataFormat rval=0; \
1502 wxPyBeginBlockThreads(); \
1503 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1505 wxDataFormat* ptr; \
1506 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(i)", a)); \
1508 if (! SWIG_GetPtrObj(ro, (void **)&ptr, "_wxDataFormat_p")) \
1513 wxPyEndBlockThreads(); \
1515 rval = PCLASS::CBNAME(a); \
1518 wxDataFormat CLASS::base_##CBNAME(size_t a) { \
1519 return PCLASS::CBNAME(a); \
1522 //---------------------------------------------------------------------------
1524 #define DEC_PYCALLBACK__constany(CBNAME, Type) \
1525 void CBNAME(const Type& a); \
1526 void base_##CBNAME(const Type& a);
1529 #define IMP_PYCALLBACK__constany(CLASS, PCLASS, CBNAME, Type) \
1530 void CLASS::CBNAME(const Type& a) { \
1532 wxPyBeginBlockThreads(); \
1533 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1534 PyObject* obj = wxPyConstructObject((void*)&a, #Type, 0); \
1535 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
1538 wxPyEndBlockThreads(); \
1540 PCLASS::CBNAME(a); \
1542 void CLASS::base_##CBNAME(const Type& a) { \
1543 PCLASS::CBNAME(a); \
1547 //---------------------------------------------------------------------------
1549 #define DEC_PYCALLBACK__any(CBNAME, Type) \
1550 void CBNAME(Type& a); \
1551 void base_##CBNAME(Type& a);
1554 #define IMP_PYCALLBACK__any(CLASS, PCLASS, CBNAME, Type) \
1555 void CLASS::CBNAME(Type& a) { \
1557 wxPyBeginBlockThreads(); \
1558 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1559 PyObject* obj = wxPyConstructObject((void*)&a, #Type, 0); \
1560 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
1563 wxPyEndBlockThreads(); \
1565 PCLASS::CBNAME(a); \
1567 void CLASS::base_##CBNAME(Type& a) { \
1568 PCLASS::CBNAME(a); \
1571 //---------------------------------------------------------------------------
1573 #define DEC_PYCALLBACK_bool_any(CBNAME, Type) \
1574 bool CBNAME(Type& a); \
1575 bool base_##CBNAME(Type& a);
1578 #define IMP_PYCALLBACK_bool_any(CLASS, PCLASS, CBNAME, Type) \
1579 bool CLASS::CBNAME(Type& a) { \
1582 wxPyBeginBlockThreads(); \
1583 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1584 PyObject* obj = wxPyConstructObject((void*)&a, #Type, 0); \
1585 rv = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
1588 wxPyEndBlockThreads(); \
1590 rv = PCLASS::CBNAME(a); \
1593 bool CLASS::base_##CBNAME(Type& a) { \
1594 return PCLASS::CBNAME(a); \
1597 //---------------------------------------------------------------------------
1599 #define DEC_PYCALLBACK_STRING_LONGLONG(CBNAME) \
1600 wxString CBNAME(long a, long b) const; \
1601 wxString base_##CBNAME(long a, long b)const ;
1603 #define IMP_PYCALLBACK_STRING_LONGLONG(CLASS, PCLASS, CBNAME) \
1604 wxString CLASS::CBNAME(long a, long b) const { \
1607 wxPyBeginBlockThreads(); \
1608 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1610 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ll)",a,b)); \
1612 rval = Py2wxString(ro); \
1616 wxPyEndBlockThreads(); \
1618 rval = PCLASS::CBNAME(a,b); \
1621 wxString CLASS::base_##CBNAME(long a, long b) const { \
1622 return PCLASS::CBNAME(a,b); \
1625 //---------------------------------------------------------------------------
1627 #define DEC_PYCALLBACK_INT_LONG(CBNAME) \
1628 int CBNAME(long a) const; \
1629 int base_##CBNAME(long a)const ;
1632 #define IMP_PYCALLBACK_INT_LONG(CLASS, PCLASS, CBNAME) \
1633 int CLASS::CBNAME(long a) const { \
1636 wxPyBeginBlockThreads(); \
1637 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1639 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(l)",a)); \
1641 rval = PyInt_AsLong(ro); \
1645 wxPyEndBlockThreads(); \
1647 rval = PCLASS::CBNAME(a); \
1650 int CLASS::base_##CBNAME(long a) const { \
1651 return PCLASS::CBNAME(a); \
1655 //---------------------------------------------------------------------------
1657 #define DEC_PYCALLBACK_LISTATTR_LONG(CBNAME) \
1658 wxListItemAttr* CBNAME(long a) const; \
1659 wxListItemAttr* base_##CBNAME(long a);
1662 #define IMP_PYCALLBACK_LISTATTR_LONG(CLASS, PCLASS, CBNAME) \
1663 wxListItemAttr *CLASS::CBNAME(long a) const { \
1664 wxListItemAttr *rval = NULL; \
1666 wxPyBeginBlockThreads(); \
1667 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1669 wxListItemAttr* ptr; \
1670 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(i)", a)); \
1672 if (! SWIG_GetPtrObj(ro, (void **)&ptr, "_wxListItemAttr_p")) \
1677 wxPyEndBlockThreads(); \
1679 rval = PCLASS::CBNAME(a); \
1682 wxListItemAttr *CLASS::base_##CBNAME(long a) { \
1683 return PCLASS::CBNAME(a); \
1686 //---------------------------------------------------------------------------
1688 #define DEC_PYCALLBACK_BOOL_ME(CBNAME) \
1689 bool CBNAME(wxMouseEvent& e); \
1690 bool base_##CBNAME(wxMouseEvent& e);
1692 #define IMP_PYCALLBACK_BOOL_ME(CLASS, PCLASS, CBNAME) \
1693 bool CLASS::CBNAME(wxMouseEvent& e) { \
1696 wxPyBeginBlockThreads(); \
1697 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1699 PyObject* obj = wxPyConstructObject((void*)&e, "wxMouseEvent", 0); \
1700 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(O)",obj)); \
1702 rval = PyInt_AsLong(ro); \
1707 wxPyEndBlockThreads(); \
1709 return PCLASS::CBNAME(e); \
1712 bool CLASS::base_##CBNAME(wxMouseEvent& e) { \
1713 return PCLASS::CBNAME(e); \
1717 //---------------------------------------------------------------------------