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>
33 #include <wx/docview.h>
34 #include <wx/encconv.h>
35 #include <wx/fdrepdlg.h>
36 #include <wx/fileconf.h>
37 #include <wx/filesys.h>
38 #include <wx/fontdlg.h>
39 #include <wx/fs_inet.h>
40 #include <wx/fs_mem.h>
41 #include <wx/fs_zip.h>
42 #include <wx/gbsizer.h>
43 #include <wx/geometry.h>
44 #include <wx/htmllbox.h>
46 #include <wx/imaglist.h>
48 #include <wx/laywin.h>
49 #include <wx/listbook.h>
50 #include <wx/minifram.h>
51 #include <wx/notebook.h>
53 #include <wx/printdlg.h>
54 #include <wx/process.h>
55 #include <wx/progdlg.h>
56 #include <wx/sashwin.h>
57 #include <wx/spinbutt.h>
58 #include <wx/spinctrl.h>
59 #include <wx/splash.h>
60 #include <wx/splitter.h>
61 #include <wx/statline.h>
62 #include <wx/stream.h>
63 #include <wx/sysopt.h>
64 #include <wx/taskbar.h>
65 #include <wx/tglbtn.h>
66 #include <wx/tipwin.h>
67 #include <wx/toolbook.h>
68 #include <wx/tooltip.h>
69 #include <wx/treebook.h>
71 #include <wx/vscroll.h>
72 #include <wx/dateevt.h>
73 #include <wx/datectrl.h>
78 # pragma warning(disable:4800)
79 # pragma warning(disable:4190)
82 #ifdef __WXMAC__ // avoid a bug in Carbon headers
86 //---------------------------------------------------------------------------
88 typedef unsigned char byte
;
89 typedef wxPoint2DDouble wxPoint2D
;
91 #ifndef SWIG_TYPE_TABLE
92 #define SWIG_TYPE_TABLE wxPython_type_table
96 #define wxDEFAULT_STATUSBAR_STYLE wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE
98 #define wxDEFAULT_STATUSBAR_STYLE wxST_SIZEGRIP
102 #ifndef wxPyUSE_EXPORTED_API
104 void __wxPyPreStart(PyObject
*);
105 void __wxPyCleanup();
106 PyObject
* __wxPySetDictionary(PyObject
*, PyObject
* args
);
107 PyObject
* __wxPyFixStockObjects(PyObject
*, PyObject
* args
);
109 void wxSetDefaultPyEncoding(const char* encoding
);
110 const char* wxGetDefaultPyEncoding();
113 void wxPyEventThunker(wxObject
*, wxEvent
& event
);
116 bool wxPyCheckSwigType(const wxChar
* className
);
117 PyObject
* wxPyConstructObject(void* ptr
,
118 const wxChar
* className
,
120 bool wxPyConvertSwigPtr(PyObject
* obj
, void **ptr
,
121 const wxChar
* className
);
122 PyObject
* wxPyMakeSwigPtr(void* ptr
, const wxChar
* classname
);
125 PyObject
* wx2PyString(const wxString
& src
);
126 wxString
Py2wxString(PyObject
* source
);
128 PyObject
* wxPyMake_wxObject(wxObject
* source
, bool setThisOwn
, bool checkEvtHandler
=true);
129 PyObject
* wxPyMake_wxSizer(wxSizer
* source
, bool setThisOwn
);
130 void wxPyPtrTypeMap_Add(const char* commonName
, const char* ptrName
);
132 PyObject
* wxPy_ConvertList(wxListBase
* list
);
133 long wxPyGetWinHandle(wxWindow
* win
);
135 void wxPy_ReinitStockObjects(int pass
);
137 bool wxPyInstance_Check(PyObject
* obj
);
138 bool wxPySwigInstance_Check(PyObject
* obj
);
141 #endif // wxPyUSE_EXPORTED_API
142 //---------------------------------------------------------------------------
144 // if we want to handle threads and Python threads are available...
145 #if defined(WXP_USE_THREAD) && defined(WITH_THREAD)
146 #define WXP_WITH_THREAD
147 #else // no Python threads...
148 #undef WXP_WITH_THREAD
152 // In Python 2.3 and later there are the PyGILState_* APIs that we can use for
153 // blocking threads when calling back into Python. Using them instead of my
154 // home-grown hacks greatly simplifies wxPyBeginBlockThreads and
155 // wxPyEndBlockThreads.
157 // Unfortunatly there is a bug somewhere when using these new APIs on Python
158 // 2.3. It manifests in Boa Constructor's debugger where it is unable to stop
159 // at breakpoints located in event handlers. I think that the cause may be
160 // something like the original PyThreadState for the main thread is not being
161 // restored for the callbacks, but I can't see where that could be
162 // happening... So we'll only activate this new change for Python 2.4+ :-(
164 #if PY_VERSION_HEX < 0x02040000
165 #define wxPyUSE_GIL_STATE 0
166 typedef bool wxPyBlock_t
;
168 #define wxPyUSE_GIL_STATE 1
169 typedef PyGILState_STATE wxPyBlock_t
;
173 #ifndef wxPyUSE_EXPORTED_API
175 // For Python --> C++
176 PyThreadState
* wxPyBeginAllowThreads();
177 void wxPyEndAllowThreads(PyThreadState
* state
);
179 // For C++ --> Python
180 wxPyBlock_t
wxPyBeginBlockThreads();
181 void wxPyEndBlockThreads(wxPyBlock_t blocked
);
183 #endif // wxPyUSE_EXPORTED_API
186 // A macro that will help to execute simple statments wrapped in
187 // StartBlock/EndBlockThreads calls
188 #define wxPyBLOCK_THREADS(stmt) \
189 { wxPyBlock_t blocked = wxPyBeginBlockThreads(); stmt; wxPyEndBlockThreads(blocked); }
191 // Raise the NotImplementedError exception (blocking threads)
192 #define wxPyRaiseNotImplemented() \
193 wxPyBLOCK_THREADS(PyErr_SetNone(PyExc_NotImplementedError))
195 // Raise any exception with a string value (blocking threads)
196 #define wxPyErr_SetString(err, str) \
197 wxPyBLOCK_THREADS(PyErr_SetString(err, str))
200 //---------------------------------------------------------------------------
201 // These are helpers used by the typemaps
203 #ifndef wxPyUSE_EXPORTED_API
205 wxString
* wxString_in_helper(PyObject
* source
);
207 byte
* byte_LIST_helper(PyObject
* source
);
208 int* int_LIST_helper(PyObject
* source
);
209 long* long_LIST_helper(PyObject
* source
);
210 char** string_LIST_helper(PyObject
* source
);
211 wxPoint
* wxPoint_LIST_helper(PyObject
* source
, int* npoints
);
212 wxBitmap
** wxBitmap_LIST_helper(PyObject
* source
);
213 wxString
* wxString_LIST_helper(PyObject
* source
);
214 wxAcceleratorEntry
* wxAcceleratorEntry_LIST_helper(PyObject
* source
);
215 wxPen
** wxPen_LIST_helper(PyObject
* source
);
217 bool wxSize_helper(PyObject
* source
, wxSize
** obj
);
218 bool wxPoint_helper(PyObject
* source
, wxPoint
** obj
);
219 bool wxRealPoint_helper(PyObject
* source
, wxRealPoint
** obj
);
220 bool wxRect_helper(PyObject
* source
, wxRect
** obj
);
221 bool wxColour_helper(PyObject
* source
, wxColour
** obj
);
222 bool wxPoint2D_helper(PyObject
* source
, wxPoint2D
** obj
);
225 bool wxPySimple_typecheck(PyObject
* source
, const wxChar
* classname
, int seqLen
);
226 bool wxColour_typecheck(PyObject
* source
);
228 bool wxPyCheckForApp();
232 bool wxPyTwoIntItem_helper(PyObject
* source
, T
** obj
, const wxChar
* name
)
234 // If source is an object instance then it may already be the right type
235 if (wxPySwigInstance_Check(source
)) {
237 if (! wxPyConvertSwigPtr(source
, (void **)&ptr
, name
))
242 // otherwise a 2-tuple of integers is expected
243 else if (PySequence_Check(source
) && PyObject_Length(source
) == 2) {
244 PyObject
* o1
= PySequence_GetItem(source
, 0);
245 PyObject
* o2
= PySequence_GetItem(source
, 1);
246 if (!PyNumber_Check(o1
) || !PyNumber_Check(o2
)) {
251 **obj
= T(PyInt_AsLong(o1
), PyInt_AsLong(o2
));
259 msg
.Printf(wxT("Expected a 2-tuple of integers or a %s object."), name
);
260 PyErr_SetString(PyExc_TypeError
, msg
.mb_str());
266 // Other helpful stuff
267 bool wxPy2int_seq_helper(PyObject
* source
, int* i1
, int* i2
);
268 bool wxPy4int_seq_helper(PyObject
* source
, int* i1
, int* i2
, int* i3
, int* i4
);
270 PyObject
* wxArrayString2PyList_helper(const wxArrayString
& arr
);
271 PyObject
* wxArrayInt2PyList_helper(const wxArrayInt
& arr
);
273 #endif // wxPyUSE_EXPORTED_API
275 //---------------------------------------------------------------------------
277 #if PYTHON_API_VERSION < 1009
278 #define PySequence_Fast_GET_ITEM(o, i) \
279 (PyList_Check(o) ? PyList_GET_ITEM(o, i) : PyTuple_GET_ITEM(o, i))
282 #define RETURN_NONE() { Py_INCREF(Py_None); return Py_None; }
283 #define DECLARE_DEF_STRING(name) static const wxString wxPy##name(wx##name)
284 #define DECLARE_DEF_STRING2(name,val) static const wxString wxPy##name(val)
286 //---------------------------------------------------------------------------
288 #ifndef wxPyUSE_EXPORTED_API
290 class wxPyCallback
: public wxObject
{
291 DECLARE_ABSTRACT_CLASS(wxPyCallback
)
293 wxPyCallback(PyObject
* func
);
294 wxPyCallback(const wxPyCallback
& other
);
297 void EventThunker(wxEvent
& event
);
302 #endif // wxPyUSE_EXPORTED_API
303 //---------------------------------------------------------------------------
304 //---------------------------------------------------------------------------
305 // These Event classes can be derived from in Python and passed through the
306 // event system without loosing anything. They do this by keeping a reference
307 // to themselves and some special case handling in wxPyCallback::EventThunker.
311 class wxPyEvtSelfRef
{
316 void SetSelf(PyObject
* self
, bool clone
=false);
317 PyObject
* GetSelf() const;
318 bool GetCloned() const { return m_cloned
; }
326 class wxPyEvent
: public wxEvent
, public wxPyEvtSelfRef
{
327 DECLARE_ABSTRACT_CLASS(wxPyEvent
)
329 wxPyEvent(int winid
=0, wxEventType commandType
= wxEVT_NULL
);
330 wxPyEvent(const wxPyEvent
& evt
);
333 virtual wxEvent
* Clone() const { return new wxPyEvent(*this); }
337 class wxPyCommandEvent
: public wxCommandEvent
, public wxPyEvtSelfRef
{
338 DECLARE_ABSTRACT_CLASS(wxPyCommandEvent
)
340 wxPyCommandEvent(wxEventType commandType
= wxEVT_NULL
, int id
=0);
341 wxPyCommandEvent(const wxPyCommandEvent
& evt
);
344 virtual wxEvent
* Clone() const { return new wxPyCommandEvent(*this); }
349 //----------------------------------------------------------------------
350 // Forward decalre a few things used in the exported API
351 class wxPyClientData
;
353 class wxPyOORClientData
;
354 class wxPyCBInputStream
;
356 void wxPyClientData_dtor(wxPyClientData
* self
);
357 void wxPyUserData_dtor(wxPyUserData
* self
);
358 void wxPyOORClientData_dtor(wxPyOORClientData
* self
);
359 wxPyCBInputStream
* wxPyCBInputStream_create(PyObject
*py
, bool block
);
360 wxPyCBInputStream
* wxPyCBInputStream_copy(wxPyCBInputStream
* other
);
362 //---------------------------------------------------------------------------
363 // Export a C API in a struct. Other modules will be able to load this from
364 // the wx.core module and will then have safe access to these functions, even if
365 // in another shared library.
367 class wxPyCallbackHelper
;
371 bool (*p_wxPyCheckSwigType
)(const wxChar
* className
);
372 PyObject
* (*p_wxPyConstructObject
)(void* ptr
, const wxChar
* className
, int setThisOwn
);
373 bool (*p_wxPyConvertSwigPtr
)(PyObject
* obj
, void **ptr
, const wxChar
* className
);
374 PyObject
* (*p_wxPyMakeSwigPtr
)(void* ptr
, const wxChar
* className
);
376 PyThreadState
* (*p_wxPyBeginAllowThreads
)();
377 void (*p_wxPyEndAllowThreads
)(PyThreadState
* state
);
378 wxPyBlock_t (*p_wxPyBeginBlockThreads
)();
379 void (*p_wxPyEndBlockThreads
)(wxPyBlock_t blocked
);
381 PyObject
* (*p_wxPy_ConvertList
)(wxListBase
* list
);
383 wxString
* (*p_wxString_in_helper
)(PyObject
* source
);
384 wxString (*p_Py2wxString
)(PyObject
* source
);
385 PyObject
* (*p_wx2PyString
)(const wxString
& src
);
387 byte
* (*p_byte_LIST_helper
)(PyObject
* source
);
388 int* (*p_int_LIST_helper
)(PyObject
* source
);
389 long* (*p_long_LIST_helper
)(PyObject
* source
);
390 char** (*p_string_LIST_helper
)(PyObject
* source
);
391 wxPoint
* (*p_wxPoint_LIST_helper
)(PyObject
* source
, int* npoints
);
392 wxBitmap
** (*p_wxBitmap_LIST_helper
)(PyObject
* source
);
393 wxString
* (*p_wxString_LIST_helper
)(PyObject
* source
);
394 wxAcceleratorEntry
* (*p_wxAcceleratorEntry_LIST_helper
)(PyObject
* source
);
396 bool (*p_wxSize_helper
)(PyObject
* source
, wxSize
** obj
);
397 bool (*p_wxPoint_helper
)(PyObject
* source
, wxPoint
** obj
);
398 bool (*p_wxRealPoint_helper
)(PyObject
* source
, wxRealPoint
** obj
);
399 bool (*p_wxRect_helper
)(PyObject
* source
, wxRect
** obj
);
400 bool (*p_wxColour_helper
)(PyObject
* source
, wxColour
** obj
);
401 bool (*p_wxPoint2D_helper
)(PyObject
* source
, wxPoint2DDouble
** obj
);
404 bool (*p_wxPySimple_typecheck
)(PyObject
* source
, const wxChar
* classname
, int seqLen
);
405 bool (*p_wxColour_typecheck
)(PyObject
* source
);
407 void (*p_wxPyCBH_setCallbackInfo
)(wxPyCallbackHelper
& cbh
, PyObject
* self
, PyObject
* klass
, int incref
);
408 bool (*p_wxPyCBH_findCallback
)(const wxPyCallbackHelper
& cbh
, const char* name
);
409 int (*p_wxPyCBH_callCallback
)(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
);
410 PyObject
* (*p_wxPyCBH_callCallbackObj
)(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
);
411 void (*p_wxPyCBH_delete
)(wxPyCallbackHelper
* cbh
);
413 PyObject
* (*p_wxPyMake_wxObject
)(wxObject
* source
, bool setThisOwn
, bool checkEvtHandler
);
414 PyObject
* (*p_wxPyMake_wxSizer
)(wxSizer
* source
, bool setThisOwn
);
415 void (*p_wxPyPtrTypeMap_Add
)(const char* commonName
, const char* ptrName
);
416 bool (*p_wxPy2int_seq_helper
)(PyObject
* source
, int* i1
, int* i2
);
417 bool (*p_wxPy4int_seq_helper
)(PyObject
* source
, int* i1
, int* i2
, int* i3
, int* i4
);
418 PyObject
* (*p_wxArrayString2PyList_helper
)(const wxArrayString
& arr
);
419 PyObject
* (*p_wxArrayInt2PyList_helper
)(const wxArrayInt
& arr
);
421 void (*p_wxPyClientData_dtor
)(wxPyClientData
*);
422 void (*p_wxPyUserData_dtor
)(wxPyUserData
*);
423 void (*p_wxPyOORClientData_dtor
)(wxPyOORClientData
*);
425 wxPyCBInputStream
* (*p_wxPyCBInputStream_create
)(PyObject
*py
, bool block
);
426 wxPyCBInputStream
* (*p_wxPyCBInputStream_copy
)(wxPyCBInputStream
* other
);
428 bool (*p_wxPyInstance_Check
)(PyObject
* obj
);
429 bool (*p_wxPySwigInstance_Check
)(PyObject
* obj
);
431 bool (*p_wxPyCheckForApp
)();
435 #ifdef wxPyUSE_EXPORTED_API
436 // Notice that this is static, not extern. This is by design, each module
437 // needs one, but doesn't have to use it.
438 static wxPyCoreAPI
* wxPyCoreAPIPtr
= NULL
;
439 inline wxPyCoreAPI
* wxPyGetCoreAPIPtr();
440 #endif // wxPyUSE_EXPORTED_API
442 //---------------------------------------------------------------------------
444 // A wxObject that holds a reference to a Python object
445 class wxPyUserData
: public wxObject
{
447 wxPyUserData(PyObject
* obj
) {
453 #ifdef wxPyUSE_EXPORTED_API
454 wxPyGetCoreAPIPtr()->p_wxPyUserData_dtor(this);
456 wxPyUserData_dtor(this);
463 // A wxClientData that holds a refernece to a Python object
464 class wxPyClientData
: public wxClientData
{
466 wxPyClientData(PyObject
* obj
, bool incref
=true) {
474 #ifdef wxPyUSE_EXPORTED_API
475 wxPyGetCoreAPIPtr()->p_wxPyClientData_dtor(this);
477 wxPyClientData_dtor(this);
485 // Just like wxPyClientData, except when this object is destroyed it does some
486 // OOR magic on the Python Object.
487 class wxPyOORClientData
: public wxPyClientData
{
489 wxPyOORClientData(PyObject
* obj
, bool incref
=true)
490 : wxPyClientData(obj
, incref
) {}
491 ~wxPyOORClientData() {
493 #ifdef wxPyUSE_EXPORTED_API
494 wxPyGetCoreAPIPtr()->p_wxPyOORClientData_dtor(this);
496 wxPyOORClientData_dtor(this);
502 //---------------------------------------------------------------------------
503 // A wxImageHandler that can be derived from in Python.
506 class wxPyImageHandler
: public wxImageHandler
{
510 // used for interning method names as PyStrings
511 static PyObject
* m_DoCanRead_Name
;
512 static PyObject
* m_GetImageCount_Name
;
513 static PyObject
* m_LoadFile_Name
;
514 static PyObject
* m_SaveFile_Name
;
516 // converstion helpers
517 PyObject
* py_InputStream(wxInputStream
* stream
);
518 PyObject
* py_Image(wxImage
* image
);
519 PyObject
* py_OutputStream(wxOutputStream
* stream
);
524 void _SetSelf(PyObject
*self
);
526 virtual bool LoadFile(wxImage
* image
, wxInputStream
& stream
,
527 bool verbose
=true, int index
=-1 );
528 virtual bool SaveFile(wxImage
* image
, wxOutputStream
& stream
,
530 virtual int GetImageCount(wxInputStream
& stream
);
531 virtual bool DoCanRead(wxInputStream
&stream
);
535 //---------------------------------------------------------------------------
536 // This class holds an instance of a Python Shadow Class object and assists
537 // with looking up and invoking Python callback methods from C++ virtual
538 // method redirections. For all classes which have virtuals which should be
539 // overridable in wxPython, a new subclass is created that contains a
540 // wxPyCallbackHelper.
543 class wxPyCallbackHelper
{
545 wxPyCallbackHelper(const wxPyCallbackHelper
& other
);
547 wxPyCallbackHelper() {
554 ~wxPyCallbackHelper() {
555 #ifdef wxPyUSE_EXPORTED_API
556 wxPyGetCoreAPIPtr()->p_wxPyCBH_delete(this);
558 wxPyCBH_delete(this);
562 void setSelf(PyObject
* self
, PyObject
* klass
, int incref
=true);
563 bool findCallback(const char* name
) const;
564 int callCallback(PyObject
* argTuple
) const;
565 PyObject
* callCallbackObj(PyObject
* argTuple
) const;
566 PyObject
* GetLastFound() const { return m_lastFound
; }
571 PyObject
* m_lastFound
;
574 friend void wxPyCBH_delete(wxPyCallbackHelper
* cbh
);
578 void wxPyCBH_setCallbackInfo(wxPyCallbackHelper
& cbh
, PyObject
* self
, PyObject
* klass
, int incref
);
579 bool wxPyCBH_findCallback(const wxPyCallbackHelper
& cbh
, const char* name
);
580 int wxPyCBH_callCallback(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
);
581 PyObject
* wxPyCBH_callCallbackObj(const wxPyCallbackHelper
& cbh
, PyObject
* argTuple
);
582 void wxPyCBH_delete(wxPyCallbackHelper
* cbh
);
587 //---------------------------------------------------------------------------
589 // This is used in C++ classes that need to be able to make callback to
590 // "overloaded" python methods
593 void _setCallbackInfo(PyObject* self, PyObject* _class, int incref=1) { \
594 wxPyCBH_setCallbackInfo(m_myInst, self, _class, incref); \
596 private: wxPyCallbackHelper m_myInst
599 //---------------------------------------------------------------------------
600 // The wxPythonApp class
603 wxPYAPP_ASSERT_SUPPRESS
= 1,
604 wxPYAPP_ASSERT_EXCEPTION
= 2,
605 wxPYAPP_ASSERT_DIALOG
= 4,
606 wxPYAPP_ASSERT_LOG
= 8
609 class wxPyApp
: public wxApp
611 DECLARE_ABSTRACT_CLASS(wxPyApp
)
619 int GetAssertMode() { return m_assertMode
; }
620 void SetAssertMode(int mode
) { m_assertMode
= mode
; }
622 virtual bool OnInitGui();
623 virtual int OnExit();
625 virtual void OnAssert(const wxChar
*file
,
630 // virtual int FilterEvent(wxEvent& event); // This one too????
632 // For catching Apple Events
633 virtual void MacOpenFile(const wxString
&fileName
);
634 virtual void MacPrintFile(const wxString
&fileName
);
635 virtual void MacNewFile();
636 virtual void MacReopenApp();
638 static bool GetMacSupportPCMenuShortcuts();
639 static long GetMacAboutMenuItemId();
640 static long GetMacPreferencesMenuItemId();
641 static long GetMacExitMenuItemId();
642 static wxString
GetMacHelpMenuTitleName();
644 static void SetMacSupportPCMenuShortcuts(bool val
);
645 static void SetMacAboutMenuItemId(long val
);
646 static void SetMacPreferencesMenuItemId(long val
);
647 static void SetMacExitMenuItemId(long val
);
648 static void SetMacHelpMenuTitleName(const wxString
& val
);
651 void _BootstrapApp();
653 // implementation only
654 void SetStartupComplete(bool val
) { m_startupComplete
= val
; };
658 bool m_startupComplete
;
661 extern wxPyApp
*wxPythonApp
;
664 //----------------------------------------------------------------------
665 // These macros are used to implement the virtual methods that should
666 // redirect to a Python method if one exists. The names designate the
667 // return type, if any, as well as any parameter types.
668 //---------------------------------------------------------------------------
670 #define DEC_PYCALLBACK__(CBNAME) \
675 #define IMP_PYCALLBACK__(CLASS, PCLASS, CBNAME) \
676 void CLASS::CBNAME() { \
678 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
679 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
680 wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
681 wxPyEndBlockThreads(blocked); \
685 void CLASS::base_##CBNAME() { \
689 //---------------------------------------------------------------------------
691 #define DEC_PYCALLBACK_BOOL_INTINT(CBNAME) \
692 bool CBNAME(int a, int b); \
693 bool base_##CBNAME(int a, int b)
696 #define IMP_PYCALLBACK_BOOL_INTINT(CLASS, PCLASS, CBNAME) \
697 bool CLASS::CBNAME(int a, int b) { \
698 bool rval=false, found; \
699 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
700 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
701 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)",a,b)); \
702 wxPyEndBlockThreads(blocked); \
704 rval = PCLASS::CBNAME(a,b); \
707 bool CLASS::base_##CBNAME(int a, int b) { \
708 return PCLASS::CBNAME(a,b); \
711 //---------------------------------------------------------------------------
713 #define DEC_PYCALLBACK_VOID_(CBNAME) \
718 #define IMP_PYCALLBACK_VOID_(CLASS, PCLASS, CBNAME) \
719 void CLASS::CBNAME() { \
721 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
722 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
723 wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
724 wxPyEndBlockThreads(blocked); \
728 void CLASS::base_##CBNAME() { \
732 //---------------------------------------------------------------------------
734 #define DEC_PYCALLBACK_VOID_INTINT(CBNAME) \
735 void CBNAME(int a, int b); \
736 void base_##CBNAME(int a, int b)
739 #define IMP_PYCALLBACK_VOID_INTINT(CLASS, PCLASS, CBNAME) \
740 void CLASS::CBNAME(int a, int b) { \
742 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
743 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
744 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)",a,b)); \
745 wxPyEndBlockThreads(blocked); \
747 PCLASS::CBNAME(a,b); \
749 void CLASS::base_##CBNAME(int a, int b) { \
750 PCLASS::CBNAME(a,b); \
753 //---------------------------------------------------------------------------
755 #define DEC_PYCALLBACK_VOID_INT(CBNAME) \
756 void CBNAME(int a); \
757 void base_##CBNAME(int a)
760 #define IMP_PYCALLBACK_VOID_INT(CLASS, PCLASS, CBNAME) \
761 void CLASS::CBNAME(int a) { \
763 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
764 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
765 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)",a)); \
766 wxPyEndBlockThreads(blocked); \
770 void CLASS::base_##CBNAME(int a) { \
774 //---------------------------------------------------------------------------
776 #define DEC_PYCALLBACK_VOID_INT4(CBNAME) \
777 void CBNAME(int a, int b, int c, int d); \
778 void base_##CBNAME(int a, int b, int c, int d)
781 #define IMP_PYCALLBACK_VOID_INT4(CLASS, PCLASS, CBNAME) \
782 void CLASS::CBNAME(int a, int b, int c, int d) { \
784 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
785 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
786 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiii)",a,b,c,d)); \
787 wxPyEndBlockThreads(blocked); \
789 PCLASS::CBNAME(a,b,c,d); \
791 void CLASS::base_##CBNAME(int a, int b, int c, int d) { \
792 PCLASS::CBNAME(a,b,c,d); \
795 //---------------------------------------------------------------------------
796 #define DEC_PYCALLBACK_VOID_INT5(CBNAME) \
797 void CBNAME(int a, int b, int c, int d, int e); \
798 void base_##CBNAME(int a, int b, int c, int d, int e)
801 #define IMP_PYCALLBACK_VOID_INT5(CLASS, PCLASS, CBNAME) \
802 void CLASS::CBNAME(int a, int b, int c, int d, int e) { \
804 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
805 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
806 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiiii)",a,b,c,d,e)); \
807 wxPyEndBlockThreads(blocked); \
809 PCLASS::CBNAME(a,b,c,d,e); \
811 void CLASS::base_##CBNAME(int a, int b, int c, int d, int e) { \
812 PCLASS::CBNAME(a,b,c,d,e); \
815 //---------------------------------------------------------------------------
817 #define DEC_PYCALLBACK_VOID_INTPINTP_const(CBNAME) \
818 void CBNAME(int* a, int* b) const; \
819 void base_##CBNAME(int* a, int* b) const
822 #define IMP_PYCALLBACK_VOID_INTPINTP_const(CLASS, PCLASS, CBNAME) \
823 void CLASS::CBNAME(int* a, int* b) const { \
824 const char* errmsg = #CBNAME " should return a 2-tuple of integers."; \
826 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
827 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
829 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
831 if (PySequence_Check(ro) && PyObject_Length(ro) == 2) { \
832 PyObject* o1 = PySequence_GetItem(ro, 0); \
833 PyObject* o2 = PySequence_GetItem(ro, 1); \
834 if (PyNumber_Check(o1) && PyNumber_Check(o2)) { \
835 *a = PyInt_AsLong(o1); *b = PyInt_AsLong(o2); \
838 PyErr_SetString(PyExc_TypeError, errmsg); \
843 PyErr_SetString(PyExc_TypeError, errmsg); \
848 wxPyEndBlockThreads(blocked); \
850 PCLASS::CBNAME(a,b); \
852 void CLASS::base_##CBNAME(int* a, int* b) const { \
853 PCLASS::CBNAME(a,b); \
857 //---------------------------------------------------------------------------
859 #define DEC_PYCALLBACK_SIZE_const(CBNAME) \
860 wxSize CBNAME() const; \
861 wxSize base_##CBNAME() const
864 #define IMP_PYCALLBACK_SIZE_const(CLASS, PCLASS, CBNAME) \
865 wxSize CLASS::CBNAME() const { \
866 const char* errmsg = #CBNAME " should return a 2-tuple of integers."; \
867 bool found; wxSize rval(0,0); \
868 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
869 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
871 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
873 if (PySequence_Check(ro) && PyObject_Length(ro) == 2) { \
874 PyObject* o1 = PySequence_GetItem(ro, 0); \
875 PyObject* o2 = PySequence_GetItem(ro, 1); \
876 if (PyNumber_Check(o1) && PyNumber_Check(o2)) { \
877 rval = wxSize(PyInt_AsLong(o1), PyInt_AsLong(o2)); \
880 PyErr_SetString(PyExc_TypeError, errmsg); \
885 PyErr_SetString(PyExc_TypeError, errmsg); \
890 wxPyEndBlockThreads(blocked); \
892 return PCLASS::CBNAME(); \
896 wxSize CLASS::base_##CBNAME() const { \
897 return PCLASS::CBNAME(); \
901 //---------------------------------------------------------------------------
903 #define DEC_PYCALLBACK_BOOL_BOOL(CBNAME) \
904 bool CBNAME(bool a); \
905 bool base_##CBNAME(bool a)
908 #define IMP_PYCALLBACK_BOOL_BOOL(CLASS, PCLASS, CBNAME) \
909 bool CLASS::CBNAME(bool a) { \
910 bool rval=false, found; \
911 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
912 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
913 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)",a));\
914 wxPyEndBlockThreads(blocked); \
916 rval = PCLASS::CBNAME(a); \
919 bool CLASS::base_##CBNAME(bool a) { \
920 return PCLASS::CBNAME(a); \
923 //---------------------------------------------------------------------------
925 #define DEC_PYCALLBACK_BOOL_INT(CBNAME) \
926 bool CBNAME(int a); \
927 bool base_##CBNAME(int a)
930 #define IMP_PYCALLBACK_BOOL_INT(CLASS, PCLASS, CBNAME) \
931 bool CLASS::CBNAME(int a) { \
932 bool rval=false, found; \
933 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
934 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
935 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)",a));\
936 wxPyEndBlockThreads(blocked); \
938 rval = PCLASS::CBNAME(a); \
941 bool CLASS::base_##CBNAME(int a) { \
942 return PCLASS::CBNAME(a); \
945 //---------------------------------------------------------------------------
947 #define DEC_PYCALLBACK_BOOL_INT_pure(CBNAME) \
951 #define IMP_PYCALLBACK_BOOL_INT_pure(CLASS, PCLASS, CBNAME) \
952 bool CLASS::CBNAME(int a) { \
954 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
955 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) \
956 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)",a)); \
958 wxPyEndBlockThreads(blocked); \
963 //---------------------------------------------------------------------------
965 #define DEC_PYCALLBACK__DC(CBNAME) \
966 void CBNAME(wxDC& a); \
967 void base_##CBNAME(wxDC& a)
970 #define IMP_PYCALLBACK__DC(CLASS, PCLASS, CBNAME) \
971 void CLASS::CBNAME(wxDC& a) { \
973 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
974 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
975 PyObject* obj = wxPyMake_wxObject(&a,false); \
976 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
979 wxPyEndBlockThreads(blocked); \
983 void CLASS::base_##CBNAME(wxDC& a) { \
989 //---------------------------------------------------------------------------
991 #define DEC_PYCALLBACK__DCBOOL(CBNAME) \
992 void CBNAME(wxDC& a, bool b); \
993 void base_##CBNAME(wxDC& a, bool b)
996 #define IMP_PYCALLBACK__DCBOOL(CLASS, PCLASS, CBNAME) \
997 void CLASS::CBNAME(wxDC& a, bool b) { \
999 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1000 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1001 PyObject* obj = wxPyMake_wxObject(&a,false); \
1002 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oi)", obj, (int)b)); \
1005 wxPyEndBlockThreads(blocked); \
1007 PCLASS::CBNAME(a, b); \
1009 void CLASS::base_##CBNAME(wxDC& a, bool b) { \
1010 PCLASS::CBNAME(a, b); \
1013 //---------------------------------------------------------------------------
1015 #define DEC_PYCALLBACK__DCBOOL(CBNAME) \
1016 void CBNAME(wxDC& a, bool b); \
1017 void base_##CBNAME(wxDC& a, bool b)
1020 #define IMP_PYCALLBACK__DCBOOL(CLASS, PCLASS, CBNAME) \
1021 void CLASS::CBNAME(wxDC& a, bool b) { \
1023 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1024 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1025 PyObject* obj = wxPyMake_wxObject(&a,false); \
1026 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oi)", obj, (int)b)); \
1029 wxPyEndBlockThreads(blocked); \
1031 PCLASS::CBNAME(a, b); \
1033 void CLASS::base_##CBNAME(wxDC& a, bool b) { \
1034 PCLASS::CBNAME(a, b); \
1037 //---------------------------------------------------------------------------
1039 #define DEC_PYCALLBACK__2DBL(CBNAME) \
1040 void CBNAME(double a, double b); \
1041 void base_##CBNAME(double a, double b)
1044 #define IMP_PYCALLBACK__2DBL(CLASS, PCLASS, CBNAME) \
1045 void CLASS::CBNAME(double a, double b) { \
1047 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1048 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1049 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(dd)",a,b)); \
1050 wxPyEndBlockThreads(blocked); \
1052 PCLASS::CBNAME(a, b); \
1054 void CLASS::base_##CBNAME(double a, double b) { \
1055 PCLASS::CBNAME(a, b); \
1058 //---------------------------------------------------------------------------
1060 #define DEC_PYCALLBACK__2DBL2INT(CBNAME) \
1061 void CBNAME(double a, double b, int c, int d); \
1062 void base_##CBNAME(double a, double b, int c, int d)
1065 #define IMP_PYCALLBACK__2DBL2INT(CLASS, PCLASS, CBNAME) \
1066 void CLASS::CBNAME(double a, double b, int c, int d) { \
1068 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1069 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1070 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ddii)", \
1072 wxPyEndBlockThreads(blocked); \
1074 PCLASS::CBNAME(a, b, c, d); \
1076 void CLASS::base_##CBNAME(double a, double b, int c, int d) { \
1077 PCLASS::CBNAME(a, b, c, d); \
1080 //---------------------------------------------------------------------------
1082 #define DEC_PYCALLBACK__DC4DBLBOOL(CBNAME) \
1083 void CBNAME(wxDC& a, double b, double c, double d, double e, bool f); \
1084 void base_##CBNAME(wxDC& a, double b, double c, double d, double e, bool f)
1087 #define IMP_PYCALLBACK__DC4DBLBOOL(CLASS, PCLASS, CBNAME) \
1088 void CLASS::CBNAME(wxDC& a, double b, double c, double d, double e, bool f) { \
1090 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1091 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1092 PyObject* obj = wxPyMake_wxObject(&a,false); \
1093 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oddddi)", obj, b, c, d, e, (int)f)); \
1096 wxPyEndBlockThreads(blocked); \
1098 PCLASS::CBNAME(a, b, c, d, e, f); \
1100 void CLASS::base_##CBNAME(wxDC& a, double b, double c, double d, double e, bool f) {\
1101 PCLASS::CBNAME(a, b, c, d, e, f); \
1104 //---------------------------------------------------------------------------
1106 #define DEC_PYCALLBACK_BOOL_DC4DBLBOOL(CBNAME) \
1107 bool CBNAME(wxDC& a, double b, double c, double d, double e, bool f); \
1108 bool base_##CBNAME(wxDC& a, double b, double c, double d, double e, bool f)
1111 #define IMP_PYCALLBACK_BOOL_DC4DBLBOOL(CLASS, PCLASS, CBNAME) \
1112 bool CLASS::CBNAME(wxDC& a, double b, double c, double d, double e, bool f) { \
1114 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1116 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1117 PyObject* obj = wxPyMake_wxObject(&a,false); \
1118 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oddddi)", obj, b, c, d, e, (int)f));\
1121 wxPyEndBlockThreads(blocked); \
1123 rval = PCLASS::CBNAME(a, b, c, d, e, f); \
1126 bool CLASS::base_##CBNAME(wxDC& a, double b, double c, double d, double e, bool f) {\
1127 return PCLASS::CBNAME(a, b, c, d, e, f); \
1130 //---------------------------------------------------------------------------
1132 #define DEC_PYCALLBACK__BOOL2DBL2INT(CBNAME) \
1133 void CBNAME(bool a, double b, double c, int d, int e); \
1134 void base_##CBNAME(bool a, double b, double c, int d, int e)
1137 #define IMP_PYCALLBACK__BOOL2DBL2INT(CLASS, PCLASS, CBNAME) \
1138 void CLASS::CBNAME(bool a, double b, double c, int d, int e) { \
1140 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1141 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1142 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iddii)", \
1144 wxPyEndBlockThreads(blocked); \
1146 PCLASS::CBNAME(a, b, c, d, e); \
1148 void CLASS::base_##CBNAME(bool a, double b, double c, int d, int e) { \
1149 PCLASS::CBNAME(a, b, c, d, e); \
1152 //---------------------------------------------------------------------------
1154 #define DEC_PYCALLBACK__DC4DBL(CBNAME) \
1155 void CBNAME(wxDC& a, double b, double c, double d, double e); \
1156 void base_##CBNAME(wxDC& a, double b, double c, double d, double e)
1159 #define IMP_PYCALLBACK__DC4DBL(CLASS, PCLASS, CBNAME) \
1160 void CLASS::CBNAME(wxDC& a, double b, double c, double d, double e) { \
1162 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1163 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1164 PyObject* obj = wxPyMake_wxObject(&a,false); \
1165 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Odddd)", obj, b, c, d, e)); \
1168 wxPyEndBlockThreads(blocked); \
1170 PCLASS::CBNAME(a, b, c, d, e); \
1172 void CLASS::base_##CBNAME(wxDC& a, double b, double c, double d, double e) {\
1173 PCLASS::CBNAME(a, b, c, d, e); \
1176 //---------------------------------------------------------------------------
1178 #define DEC_PYCALLBACK__DCBOOL(CBNAME) \
1179 void CBNAME(wxDC& a, bool b); \
1180 void base_##CBNAME(wxDC& a, bool b)
1183 #define IMP_PYCALLBACK__DCBOOL(CLASS, PCLASS, CBNAME) \
1184 void CLASS::CBNAME(wxDC& a, bool b) { \
1186 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1187 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1188 PyObject* obj = wxPyMake_wxObject(&a,false); \
1189 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oi)", obj, (int)b)); \
1192 wxPyEndBlockThreads(blocked); \
1194 PCLASS::CBNAME(a, b); \
1196 void CLASS::base_##CBNAME(wxDC& a, bool b) { \
1197 PCLASS::CBNAME(a, b); \
1200 //---------------------------------------------------------------------------
1202 #define DEC_PYCALLBACK__WXCPBOOL2DBL2INT(CBNAME) \
1203 void CBNAME(wxControlPoint* a, bool b, double c, double d, int e, int f); \
1204 void base_##CBNAME(wxControlPoint* a, bool b, double c, double d, int e, int f)
1207 #define IMP_PYCALLBACK__WXCPBOOL2DBL2INT(CLASS, PCLASS, CBNAME) \
1208 void CLASS::CBNAME(wxControlPoint* a, bool b, double c, double d, \
1211 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1212 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1213 PyObject* obj = wxPyMake_wxObject(a,false); \
1214 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oiddii)", obj, (int)b, c, d, e, f));\
1217 wxPyEndBlockThreads(blocked); \
1219 PCLASS::CBNAME(a, b, c, d, e, f); \
1221 void CLASS::base_##CBNAME(wxControlPoint* a, bool b, double c, double d, \
1223 PCLASS::CBNAME(a, b, c, d, e, f); \
1226 //---------------------------------------------------------------------------
1228 #define DEC_PYCALLBACK__WXCP2DBL2INT(CBNAME) \
1229 void CBNAME(wxControlPoint* a, double b, double c, int d, int e); \
1230 void base_##CBNAME(wxControlPoint* a, double b, double c, int d, int e)
1233 #define IMP_PYCALLBACK__WXCP2DBL2INT(CLASS, PCLASS, CBNAME) \
1234 void CLASS::CBNAME(wxControlPoint* a, double b, double c, int d, int e) { \
1236 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1237 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1238 PyObject* obj = wxPyMake_wxObject(a,false); \
1239 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oddii)", obj, b, c, d, e)); \
1242 wxPyEndBlockThreads(blocked); \
1244 PCLASS::CBNAME(a, b, c, d, e); \
1246 void CLASS::base_##CBNAME(wxControlPoint* a, double b, double c, \
1248 PCLASS::CBNAME(a, b, c, d, e); \
1251 //---------------------------------------------------------------------------
1253 #define DEC_PYCALLBACK__2DBLINT(CBNAME) \
1254 void CBNAME(double a, double b, int c); \
1255 void base_##CBNAME(double a, double b, int c)
1258 #define IMP_PYCALLBACK__2DBLINT(CLASS, PCLASS, CBNAME) \
1259 void CLASS::CBNAME(double a, double b, int c) { \
1261 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1262 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1263 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ddi)", a,b,c)); \
1264 wxPyEndBlockThreads(blocked); \
1266 PCLASS::CBNAME(a, b, c); \
1268 void CLASS::base_##CBNAME(double a, double b, int c) { \
1269 PCLASS::CBNAME(a, b, c); \
1272 //---------------------------------------------------------------------------
1274 #define DEC_PYCALLBACK__BOOL2DBLINT(CBNAME) \
1275 void CBNAME(bool a, double b, double c, int d); \
1276 void base_##CBNAME(bool a, double b, double c, int d)
1279 #define IMP_PYCALLBACK__BOOL2DBLINT(CLASS, PCLASS, CBNAME) \
1280 void CLASS::CBNAME(bool a, double b, double c, int d) { \
1282 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1283 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1284 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iddi)", (int)a,b,c,d));\
1285 wxPyEndBlockThreads(blocked); \
1287 PCLASS::CBNAME(a, b, c, d); \
1289 void CLASS::base_##CBNAME(bool a, double b, double c, int d) { \
1290 PCLASS::CBNAME(a, b, c, d); \
1293 //---------------------------------------------------------------------------
1294 //---------------------------------------------------------------------------
1296 #define DEC_PYCALLBACK__STRING(CBNAME) \
1297 void CBNAME(const wxString& a); \
1298 void base_##CBNAME(const wxString& a)
1300 #define IMP_PYCALLBACK__STRING(CLASS, PCLASS, CBNAME) \
1301 void CLASS::CBNAME(const wxString& a) { \
1303 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1304 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1305 PyObject* s = wx2PyString(a); \
1306 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", s)); \
1309 wxPyEndBlockThreads(blocked); \
1311 PCLASS::CBNAME(a); \
1313 void CLASS::base_##CBNAME(const wxString& a) { \
1314 PCLASS::CBNAME(a); \
1317 //---------------------------------------------------------------------------
1319 #define DEC_PYCALLBACK_BOOL_STRING(CBNAME) \
1320 bool CBNAME(const wxString& a); \
1321 bool base_##CBNAME(const wxString& a)
1323 #define IMP_PYCALLBACK_BOOL_STRING(CLASS, PCLASS, CBNAME) \
1324 bool CLASS::CBNAME(const wxString& a) { \
1327 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1328 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1329 PyObject* s = wx2PyString(a); \
1330 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", s)); \
1333 wxPyEndBlockThreads(blocked); \
1335 rval = PCLASS::CBNAME(a); \
1338 bool CLASS::base_##CBNAME(const wxString& a) { \
1339 return PCLASS::CBNAME(a); \
1342 //---------------------------------------------------------------------------
1344 #define DEC_PYCALLBACK_BOOL_STRING_pure(CBNAME) \
1345 bool CBNAME(const wxString& a)
1347 #define IMP_PYCALLBACK_BOOL_STRING_pure(CLASS, PCLASS, CBNAME) \
1348 bool CLASS::CBNAME(const wxString& a) { \
1350 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1351 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1352 PyObject* s = wx2PyString(a); \
1353 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", s)); \
1356 wxPyEndBlockThreads(blocked); \
1360 //---------------------------------------------------------------------------
1362 #define DEC_PYCALLBACK_STRING_STRING_pure(CBNAME) \
1363 wxString CBNAME(const wxString& a)
1365 #define IMP_PYCALLBACK_STRING_STRING_pure(CLASS, PCLASS, CBNAME) \
1366 wxString CLASS::CBNAME(const wxString& a) { \
1368 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1369 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1371 PyObject* s = wx2PyString(a); \
1372 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(O)", s)); \
1375 rval = Py2wxString(ro); \
1379 wxPyEndBlockThreads(blocked); \
1383 //---------------------------------------------------------------------------
1385 #define DEC_PYCALLBACK_STRING_STRING(CBNAME) \
1386 wxString CBNAME(const wxString& a); \
1387 wxString base_##CBNAME(const wxString& a)
1389 #define IMP_PYCALLBACK_STRING_STRING(CLASS, PCLASS, CBNAME) \
1390 wxString CLASS::CBNAME(const wxString& a) { \
1393 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1394 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1396 PyObject* s = wx2PyString(a); \
1397 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(O)", s)); \
1400 rval = Py2wxString(ro); \
1405 rval = PCLASS::CBNAME(a); \
1406 wxPyEndBlockThreads(blocked); \
1410 //---------------------------------------------------------------------------
1412 #define DEC_PYCALLBACK_STRING_STRINGINT_pure(CBNAME) \
1413 wxString CBNAME(const wxString& a,int b)
1415 #define IMP_PYCALLBACK_STRING_STRINGINT_pure(CLASS, PCLASS, CBNAME) \
1416 wxString CLASS::CBNAME(const wxString& a,int b) { \
1418 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1419 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1421 PyObject* s = wx2PyString(a); \
1422 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(Oi)",s,b)); \
1425 rval = Py2wxString(ro); \
1429 wxPyEndBlockThreads(blocked); \
1433 //---------------------------------------------------------------------------
1435 #define DEC_PYCALLBACK_BOOL_STRINGSTRING(CBNAME) \
1436 bool CBNAME(const wxString& a, const wxString& b); \
1437 bool base_##CBNAME(const wxString& a, const wxString& b)
1439 #define IMP_PYCALLBACK_BOOL_STRINGSTRING(CLASS, PCLASS, CBNAME) \
1440 bool CLASS::CBNAME(const wxString& a, const wxString& b) { \
1443 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1444 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1445 PyObject* s1 = wx2PyString(a); \
1446 PyObject* s2 = wx2PyString(b); \
1447 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OO)",s1,s2)); \
1451 wxPyEndBlockThreads(blocked); \
1453 rval = PCLASS::CBNAME(a, b); \
1456 bool CLASS::base_##CBNAME(const wxString& a, const wxString& b) { \
1457 return PCLASS::CBNAME(a, b); \
1460 //---------------------------------------------------------------------------
1462 #define DEC_PYCALLBACK_STRING_(CBNAME) \
1463 wxString CBNAME(); \
1464 wxString base_##CBNAME()
1466 #define IMP_PYCALLBACK_STRING_(CLASS, PCLASS, CBNAME) \
1467 wxString CLASS::CBNAME() { \
1470 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1471 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1473 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
1475 rval = Py2wxString(ro); \
1479 wxPyEndBlockThreads(blocked); \
1481 rval = PCLASS::CBNAME(); \
1484 wxString CLASS::base_##CBNAME() { \
1485 return PCLASS::CBNAME(); \
1488 //---------------------------------------------------------------------------
1490 #define DEC_PYCALLBACK_STRING__const(CBNAME) \
1491 wxString CBNAME() const; \
1492 wxString base_##CBNAME() const;
1494 #define IMP_PYCALLBACK_STRING__const(CLASS, PCLASS, CBNAME) \
1495 wxString CLASS::CBNAME() const { \
1498 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1499 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1501 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
1503 rval = Py2wxString(ro); \
1507 wxPyEndBlockThreads(blocked); \
1509 rval = PCLASS::CBNAME(); \
1512 wxString CLASS::base_##CBNAME() const { \
1513 return PCLASS::CBNAME(); \
1516 //---------------------------------------------------------------------------
1518 #define DEC_PYCALLBACK_STRING__pure(CBNAME) \
1521 #define IMP_PYCALLBACK_STRING__pure(CLASS, PCLASS, CBNAME) \
1522 wxString CLASS::CBNAME() { \
1524 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1525 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1527 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
1529 rval = Py2wxString(ro); \
1533 wxPyEndBlockThreads(blocked); \
1537 //---------------------------------------------------------------------------
1539 #define DEC_PYCALLBACK_STRING__constpure(CBNAME) \
1540 wxString CBNAME() const;
1542 #define IMP_PYCALLBACK_STRING__constpure(CLASS, PCLASS, CBNAME) \
1543 wxString CLASS::CBNAME() const { \
1545 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1546 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1548 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
1550 rval = Py2wxString(ro); \
1554 wxPyEndBlockThreads(blocked); \
1558 //---------------------------------------------------------------------------
1560 #define DEC_PYCALLBACK_BOOL_TAG_pure(CBNAME) \
1561 bool CBNAME(const wxHtmlTag& a)
1564 #define IMP_PYCALLBACK_BOOL_TAG_pure(CLASS, PCLASS, CBNAME) \
1565 bool CLASS::CBNAME(const wxHtmlTag& a) { \
1567 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1568 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1569 PyObject* obj = wxPyConstructObject((void*)&a, wxT("wxHtmlTag"), 0);\
1570 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
1573 wxPyEndBlockThreads(blocked); \
1577 //---------------------------------------------------------------------------
1579 #define DEC_PYCALLBACK__CELLINTINT(CBNAME) \
1580 void CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y); \
1581 void base_##CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y)
1583 #define IMP_PYCALLBACK__CELLINTINT(CLASS, PCLASS, CBNAME) \
1584 void CLASS::CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y) { \
1586 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1587 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1588 PyObject* obj = wxPyConstructObject((void*)cell, wxT("wxHtmlCell"), 0); \
1589 wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(Oii)",obj,x,y)); \
1592 wxPyEndBlockThreads(blocked); \
1594 PCLASS::CBNAME(cell, x, y); \
1596 void CLASS::base_##CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y) { \
1597 PCLASS::CBNAME(cell, x, y); \
1600 //---------------------------------------------------------------------------
1602 #define DEC_PYCALLBACK__COLOUR(CBNAME) \
1603 void CBNAME(const wxColour& c); \
1604 void base_##CBNAME(const wxColour& c)
1606 #define IMP_PYCALLBACK__COLOUR(CLASS, PCLASS, CBNAME) \
1607 void CLASS::CBNAME(const wxColour& c) { \
1609 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1610 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1611 PyObject* obj = wxPyConstructObject((void*)&c, wxT("wxColour"), 0); \
1612 wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(O)",obj)); \
1615 wxPyEndBlockThreads(blocked); \
1617 PCLASS::CBNAME(c); \
1619 void CLASS::base_##CBNAME(const wxColour& c) { \
1620 PCLASS::CBNAME(c); \
1623 //---------------------------------------------------------------------------
1625 #define DEC_PYCALLBACK__CELLINTINTME(CBNAME) \
1626 void CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y, const wxMouseEvent& e); \
1627 void base_##CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y, const wxMouseEvent& e)
1629 #define IMP_PYCALLBACK__CELLINTINTME(CLASS, PCLASS, CBNAME) \
1630 void CLASS::CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y, const wxMouseEvent& e) { \
1632 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1633 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1634 PyObject* obj = wxPyConstructObject((void*)cell, wxT("wxHtmlCell"), 0); \
1635 PyObject* o2 = wxPyConstructObject((void*)&e, wxT("wxMouseEvent"), 0); \
1636 wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(OiiO)",obj,x,y,o2)); \
1640 wxPyEndBlockThreads(blocked); \
1642 PCLASS::CBNAME(cell, x, y, e); \
1644 void CLASS::base_##CBNAME(wxHtmlCell *cell, wxCoord x, wxCoord y, const wxMouseEvent& e) {\
1645 PCLASS::CBNAME(cell, x, y, e); \
1650 //---------------------------------------------------------------------------
1652 #define DEC_PYCALLBACK___pure(CBNAME) \
1656 #define IMP_PYCALLBACK___pure(CLASS, PCLASS, CBNAME) \
1657 void CLASS::CBNAME() { \
1658 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1659 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) \
1660 wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
1661 wxPyEndBlockThreads(blocked); \
1664 //---------------------------------------------------------------------------
1666 #define DEC_PYCALLBACK_wxSize__pure(CBNAME) \
1670 #define IMP_PYCALLBACK_wxSize__pure(CLASS, PCLASS, CBNAME) \
1671 wxSize CLASS::CBNAME() { \
1672 const char* errmsg = #CBNAME " should return a 2-tuple of integers or a wxSize object."; \
1674 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1675 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1678 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
1680 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxSize"))) \
1682 else if (PySequence_Check(ro) && PyObject_Length(ro) == 2) { \
1684 PyObject* o1 = PySequence_GetItem(ro, 0); \
1685 PyObject* o2 = PySequence_GetItem(ro, 1); \
1686 if (PyNumber_Check(o1) && PyNumber_Check(o2)) \
1687 rval = wxSize(PyInt_AsLong(o1), PyInt_AsLong(o2)); \
1689 PyErr_SetString(PyExc_TypeError, errmsg); \
1694 PyErr_SetString(PyExc_TypeError, errmsg); \
1699 wxPyEndBlockThreads(blocked); \
1703 //---------------------------------------------------------------------------
1705 #define DEC_PYCALLBACK_BOOL_WXWIN(CBNAME) \
1706 bool CBNAME(wxWindow* a); \
1707 bool base_##CBNAME(wxWindow* a)
1710 #define IMP_PYCALLBACK_BOOL_WXWIN(CLASS, PCLASS, CBNAME) \
1711 bool CLASS::CBNAME(wxWindow* a) { \
1714 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1715 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1716 PyObject* obj = wxPyMake_wxObject(a,false); \
1717 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
1720 wxPyEndBlockThreads(blocked); \
1722 rval = PCLASS::CBNAME(a); \
1725 bool CLASS::base_##CBNAME(wxWindow* a) { \
1726 return PCLASS::CBNAME(a); \
1729 //---------------------------------------------------------------------------
1731 #define DEC_PYCALLBACK_BOOL_WXWINDC(CBNAME) \
1732 bool CBNAME(wxWindow* a, wxDC& b); \
1733 bool base_##CBNAME(wxWindow* a, wxDC& b)
1736 #define IMP_PYCALLBACK_BOOL_WXWINDC(CLASS, PCLASS, CBNAME) \
1737 bool CLASS::CBNAME(wxWindow* a, wxDC& b) { \
1740 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1741 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1742 PyObject* win = wxPyMake_wxObject(a,false); \
1743 PyObject* dc = wxPyMake_wxObject(&b,false); \
1744 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OO)", win, dc));\
1748 wxPyEndBlockThreads(blocked); \
1750 rval = PCLASS::CBNAME(a, b); \
1753 bool CLASS::base_##CBNAME(wxWindow* a, wxDC& b) { \
1754 return PCLASS::CBNAME(a, b); \
1757 //---------------------------------------------------------------------------
1759 #define DEC_PYCALLBACK_VOID_WXWINBASE(CBNAME) \
1760 void CBNAME(wxWindowBase* a); \
1761 void base_##CBNAME(wxWindowBase* a)
1764 #define IMP_PYCALLBACK_VOID_WXWINBASE(CLASS, PCLASS, CBNAME) \
1765 void CLASS::CBNAME(wxWindowBase* a) { \
1767 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1768 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1769 PyObject* obj = wxPyMake_wxObject(a,false); \
1770 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
1773 wxPyEndBlockThreads(blocked); \
1775 PCLASS::CBNAME(a); \
1777 void CLASS::base_##CBNAME(wxWindowBase* a) { \
1778 PCLASS::CBNAME(a); \
1781 //---------------------------------------------------------------------------
1783 #define DEC_PYCALLBACK_BOOL_(CBNAME) \
1785 bool base_##CBNAME()
1788 #define IMP_PYCALLBACK_BOOL_(CLASS, PCLASS, CBNAME) \
1789 bool CLASS::CBNAME() { \
1792 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1793 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1794 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
1795 wxPyEndBlockThreads(blocked); \
1797 rval = PCLASS::CBNAME(); \
1800 bool CLASS::base_##CBNAME() { \
1801 return PCLASS::CBNAME(); \
1804 //---------------------------------------------------------------------------
1806 #define DEC_PYCALLBACK_BOOL_const(CBNAME) \
1807 bool CBNAME() const; \
1808 bool base_##CBNAME() const
1811 #define IMP_PYCALLBACK_BOOL_const(CLASS, PCLASS, CBNAME) \
1812 bool CLASS::CBNAME() const { \
1815 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1816 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1817 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
1818 wxPyEndBlockThreads(blocked); \
1820 rval = PCLASS::CBNAME(); \
1823 bool CLASS::base_##CBNAME() const { \
1824 return PCLASS::CBNAME(); \
1827 //---------------------------------------------------------------------------
1829 #define DEC_PYCALLBACK_DR_2WXCDR(CBNAME) \
1830 wxDragResult CBNAME(wxCoord x, wxCoord y, wxDragResult def); \
1831 wxDragResult base_##CBNAME(wxCoord x, wxCoord y, wxDragResult def)
1834 #define IMP_PYCALLBACK_DR_2WXCDR(CLASS, PCLASS, CBNAME) \
1835 wxDragResult CLASS::CBNAME(wxCoord a, wxCoord b, wxDragResult c) { \
1838 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1839 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1840 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iii)", a,b,c));\
1841 wxPyEndBlockThreads(blocked); \
1843 rval = PCLASS::CBNAME(a, b, c); \
1844 return (wxDragResult)rval; \
1846 wxDragResult CLASS::base_##CBNAME(wxCoord a, wxCoord b, wxDragResult c) { \
1847 return PCLASS::CBNAME(a, b, c); \
1850 //---------------------------------------------------------------------------
1852 #define DEC_PYCALLBACK_FSF_FSSTRING_pure(CBNAME) \
1853 wxFSFile* CBNAME(wxFileSystem& fs, const wxString& location)
1855 #define IMP_PYCALLBACK_FSF_FSSTRING_pure(CLASS, PCLASS, CBNAME) \
1856 wxFSFile* CLASS::CBNAME(wxFileSystem& a,const wxString& b) { \
1857 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1859 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1861 PyObject* obj = wxPyMake_wxObject(&a,false); \
1862 PyObject* s = wx2PyString(b); \
1863 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(OO)", \
1866 wxPyConvertSwigPtr(ro, (void **)&rval, wxT("wxFSFile")); \
1872 wxPyEndBlockThreads(blocked); \
1876 //---------------------------------------------------------------------------
1878 #define DEC_PYCALLBACK_BOOL_DR(CBNAME) \
1879 bool CBNAME(wxDragResult a); \
1880 bool base_##CBNAME(wxDragResult a)
1883 #define IMP_PYCALLBACK_BOOL_DR(CLASS, PCLASS, CBNAME) \
1884 bool CLASS::CBNAME(wxDragResult a) { \
1887 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1888 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1889 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)", a)); \
1890 wxPyEndBlockThreads(blocked); \
1892 rval = PCLASS::CBNAME(a); \
1895 bool CLASS::base_##CBNAME(wxDragResult a) { \
1896 return PCLASS::CBNAME(a); \
1899 //---------------------------------------------------------------------------
1901 #define DEC_PYCALLBACK_DR_2WXCDR_pure(CBNAME) \
1902 wxDragResult CBNAME(wxCoord x, wxCoord y, wxDragResult def)
1905 #define IMP_PYCALLBACK_DR_2WXCDR_pure(CLASS, PCLASS, CBNAME) \
1906 wxDragResult CLASS::CBNAME(wxCoord a, wxCoord b, wxDragResult c) { \
1907 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1909 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) \
1910 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iii)", a,b,c));\
1911 wxPyEndBlockThreads(blocked); \
1912 return (wxDragResult)rval; \
1915 //---------------------------------------------------------------------------
1917 #define DEC_PYCALLBACK_BOOL_INTINTSTR_pure(CBNAME) \
1918 bool CBNAME(int a, int b, const wxString& c)
1920 #define IMP_PYCALLBACK_BOOL_INTINTSTR_pure(CLASS, PCLASS, CBNAME) \
1921 bool CLASS::CBNAME(int a, int b, const wxString& c) { \
1923 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1924 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
1925 PyObject* s = wx2PyString(c); \
1926 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiO)",a,b,s));\
1929 wxPyEndBlockThreads(blocked); \
1933 //---------------------------------------------------------------------------
1935 #define DEC_PYCALLBACK_SIZET_(CBNAME) \
1937 size_t base_##CBNAME()
1940 #define IMP_PYCALLBACK_SIZET_(CLASS, PCLASS, CBNAME) \
1941 size_t CLASS::CBNAME() { \
1944 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1945 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1946 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
1947 wxPyEndBlockThreads(blocked); \
1949 rval = PCLASS::CBNAME(); \
1952 size_t CLASS::base_##CBNAME() { \
1953 return PCLASS::CBNAME(); \
1956 //---------------------------------------------------------------------------
1958 #define DEC_PYCALLBACK_SIZET__const(CBNAME) \
1959 size_t CBNAME() const; \
1960 size_t base_##CBNAME() const
1963 #define IMP_PYCALLBACK_SIZET__const(CLASS, PCLASS, CBNAME) \
1964 size_t CLASS::CBNAME() const { \
1967 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1968 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
1969 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
1970 wxPyEndBlockThreads(blocked); \
1972 rval = PCLASS::CBNAME(); \
1975 size_t CLASS::base_##CBNAME() const { \
1976 return PCLASS::CBNAME(); \
1979 //---------------------------------------------------------------------------
1981 #define DEC_PYCALLBACK_DATAFMT_SIZET(CBNAME) \
1982 wxDataFormat CBNAME(size_t a); \
1983 wxDataFormat base_##CBNAME(size_t a)
1986 #define IMP_PYCALLBACK_DATAFMT_SIZET(CLASS, PCLASS, CBNAME) \
1987 wxDataFormat CLASS::CBNAME(size_t a) { \
1988 wxDataFormat rval=0; \
1990 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
1991 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
1993 wxDataFormat* ptr; \
1994 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(i)", a)); \
1996 if (wxPyCOnvertSwigPtr(ro, (void **)&ptr, wxT("wxDataFormat"))) \
2001 wxPyEndBlockThreads(blocked); \
2003 rval = PCLASS::CBNAME(a); \
2006 wxDataFormat CLASS::base_##CBNAME(size_t a) { \
2007 return PCLASS::CBNAME(a); \
2010 //---------------------------------------------------------------------------
2012 #define DEC_PYCALLBACK__constany(CBNAME, Type) \
2013 void CBNAME(const Type& a); \
2014 void base_##CBNAME(const Type& a)
2017 #define IMP_PYCALLBACK__constany(CLASS, PCLASS, CBNAME, Type) \
2018 void CLASS::CBNAME(const Type& a) { \
2020 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2021 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2022 PyObject* obj = wxPyConstructObject((void*)&a, wxT(#Type), 0); \
2023 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
2026 wxPyEndBlockThreads(blocked); \
2028 PCLASS::CBNAME(a); \
2030 void CLASS::base_##CBNAME(const Type& a) { \
2031 PCLASS::CBNAME(a); \
2035 //---------------------------------------------------------------------------
2037 #define DEC_PYCALLBACK__any(CBNAME, Type) \
2038 void CBNAME(Type& a); \
2039 void base_##CBNAME(Type& a)
2042 #define IMP_PYCALLBACK__any(CLASS, PCLASS, CBNAME, Type) \
2043 void CLASS::CBNAME(Type& a) { \
2045 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2046 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2047 PyObject* obj = wxPyConstructObject((void*)&a, wxT(#Type), 0); \
2048 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
2051 wxPyEndBlockThreads(blocked); \
2053 PCLASS::CBNAME(a); \
2055 void CLASS::base_##CBNAME(Type& a) { \
2056 PCLASS::CBNAME(a); \
2059 //---------------------------------------------------------------------------
2061 #define DEC_PYCALLBACK_bool_any(CBNAME, Type) \
2062 bool CBNAME(Type& a); \
2063 bool base_##CBNAME(Type& a)
2066 #define IMP_PYCALLBACK_bool_any(CLASS, PCLASS, CBNAME, Type) \
2067 bool CLASS::CBNAME(Type& a) { \
2070 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2071 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2072 PyObject* obj = wxPyConstructObject((void*)&a, wxT(#Type), 0); \
2073 rv = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
2076 wxPyEndBlockThreads(blocked); \
2078 rv = PCLASS::CBNAME(a); \
2081 bool CLASS::base_##CBNAME(Type& a) { \
2082 return PCLASS::CBNAME(a); \
2085 //---------------------------------------------------------------------------
2087 #define DEC_PYCALLBACK_bool_anypure(CBNAME, Type) \
2088 bool CBNAME(Type& a)
2091 #define IMP_PYCALLBACK_bool_anypure(CLASS, PCLASS, CBNAME, Type) \
2092 bool CLASS::CBNAME(Type& a) { \
2094 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2095 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
2096 PyObject* obj = wxPyConstructObject((void*)&a, wxT(#Type), 0); \
2097 rv = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
2100 wxPyEndBlockThreads(blocked); \
2104 //---------------------------------------------------------------------------
2106 #define DEC_PYCALLBACK_STRING_LONGLONG(CBNAME) \
2107 wxString CBNAME(long a, long b) const; \
2108 wxString base_##CBNAME(long a, long b) const
2110 #define IMP_PYCALLBACK_STRING_LONGLONG(CLASS, PCLASS, CBNAME) \
2111 wxString CLASS::CBNAME(long a, long b) const { \
2114 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2115 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2117 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ll)",a,b)); \
2119 rval = Py2wxString(ro); \
2123 wxPyEndBlockThreads(blocked); \
2125 rval = PCLASS::CBNAME(a,b); \
2128 wxString CLASS::base_##CBNAME(long a, long b) const { \
2129 return PCLASS::CBNAME(a,b); \
2132 //---------------------------------------------------------------------------
2134 #define DEC_PYCALLBACK_INT_LONG(CBNAME) \
2135 int CBNAME(long a) const; \
2136 int base_##CBNAME(long a) const
2139 #define IMP_PYCALLBACK_INT_LONG(CLASS, PCLASS, CBNAME) \
2140 int CLASS::CBNAME(long a) const { \
2143 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2144 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2146 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(l)",a)); \
2148 rval = PyInt_AsLong(ro); \
2152 wxPyEndBlockThreads(blocked); \
2154 rval = PCLASS::CBNAME(a); \
2157 int CLASS::base_##CBNAME(long a) const { \
2158 return PCLASS::CBNAME(a); \
2164 #define DEC_PYCALLBACK_INT_LONG_virtual(CBNAME) \
2165 int CBNAME(long a) const;
2168 #define IMP_PYCALLBACK_INT_LONG_virtual(CLASS, PCLASS, CBNAME) \
2169 int CLASS::CBNAME(long a) const { \
2170 int rval=-1; /* this rval is important for OnGetItemImage */ \
2172 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2173 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2175 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(l)",a)); \
2177 rval = PyInt_AsLong(ro); \
2181 wxPyEndBlockThreads(blocked); \
2186 //---------------------------------------------------------------------------
2188 #define DEC_PYCALLBACK_INT_LONGLONG(CBNAME) \
2189 int CBNAME(long a, long b) const; \
2190 int base_##CBNAME(long a, long b) const
2193 #define IMP_PYCALLBACK_INT_LONGLONG(CLASS, PCLASS, CBNAME) \
2194 int CLASS::CBNAME(long a, long b) const { \
2197 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2198 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2200 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ll)",a,b)); \
2202 rval = PyInt_AsLong(ro); \
2206 wxPyEndBlockThreads(blocked); \
2208 rval = PCLASS::CBNAME(a, b); \
2211 int CLASS::base_##CBNAME(long a, long b) const { \
2212 return PCLASS::CBNAME(a, b); \
2218 #define DEC_PYCALLBACK_INT_LONGLONG_virtual(CBNAME) \
2219 int CBNAME(long a, long b) const;
2222 #define IMP_PYCALLBACK_INT_LONGLONG_virtual(CLASS, PCLASS, CBNAME) \
2223 int CLASS::CBNAME(long a, long b) const { \
2224 int rval=-1; /* this rval is important for OnGetItemImage */ \
2226 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2227 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2229 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ll)",a,b)); \
2231 rval = PyInt_AsLong(ro); \
2235 wxPyEndBlockThreads(blocked); \
2240 //---------------------------------------------------------------------------
2242 #define DEC_PYCALLBACK_LISTATTR_LONG(CBNAME) \
2243 wxListItemAttr* CBNAME(long a) const; \
2244 wxListItemAttr* base_##CBNAME(long a) const
2247 #define IMP_PYCALLBACK_LISTATTR_LONG(CLASS, PCLASS, CBNAME) \
2248 wxListItemAttr *CLASS::CBNAME(long a) const { \
2249 wxListItemAttr *rval = NULL; \
2251 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2252 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2254 wxListItemAttr* ptr; \
2255 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(i)", a)); \
2257 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxListItemAttr")))\
2262 wxPyEndBlockThreads(blocked); \
2264 rval = PCLASS::CBNAME(a); \
2267 wxListItemAttr *CLASS::base_##CBNAME(long a) const { \
2268 return PCLASS::CBNAME(a); \
2271 //---------------------------------------------------------------------------
2273 #define DEC_PYCALLBACK_BOOL_ME(CBNAME) \
2274 bool CBNAME(wxMouseEvent& e); \
2275 bool base_##CBNAME(wxMouseEvent& e)
2277 #define IMP_PYCALLBACK_BOOL_ME(CLASS, PCLASS, CBNAME) \
2278 bool CLASS::CBNAME(wxMouseEvent& e) { \
2281 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2282 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2284 PyObject* obj = wxPyConstructObject((void*)&e, wxT("wxMouseEvent"), 0); \
2285 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(O)",obj)); \
2287 rval = PyInt_AsLong(ro); \
2292 wxPyEndBlockThreads(blocked); \
2294 return PCLASS::CBNAME(e); \
2297 bool CLASS::base_##CBNAME(wxMouseEvent& e) { \
2298 return PCLASS::CBNAME(e); \
2302 //---------------------------------------------------------------------------
2304 #define DEC_PYCALLBACK_WIZPG__pure(CBNAME) \
2305 wxWizardPage* CBNAME() const
2307 #define IMP_PYCALLBACK_WIZPG__pure(CLASS, PCLASS, CBNAME) \
2308 wxWizardPage* CLASS::CBNAME() const { \
2309 wxWizardPage* rv = NULL; \
2310 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2311 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
2313 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
2315 wxPyConvertSwigPtr(ro, (void **)&rv, wxT("wxWizardPage")); \
2319 wxPyEndBlockThreads(blocked); \
2323 //---------------------------------------------------------------------------
2325 #define DEC_PYCALLBACK_BITMAP__pure(CBNAME) \
2326 wxBitmap CBNAME() const
2328 #define IMP_PYCALLBACK_BITMAP__pure(CLASS, PCLASS, CBNAME) \
2329 wxBitmap CLASS::CBNAME() const { \
2331 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2332 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
2335 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
2337 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxBitmap"))) \
2342 wxPyEndBlockThreads(blocked); \
2346 //---------------------------------------------------------------------------
2348 #define DEC_PYCALLBACK_OBJECT__pure(CBNAME) \
2351 #define IMP_PYCALLBACK_OBJECT__pure(CLASS, PCLASS, CBNAME) \
2352 wxObject* CLASS::CBNAME() { \
2353 wxObject* rv = NULL; \
2354 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2355 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
2357 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
2359 wxPyConvertSwigPtr(ro, (void **)&rv, wxT("wxObject")); \
2363 wxPyEndBlockThreads(blocked); \
2367 //---------------------------------------------------------------------------
2369 #define DEC_PYCALLBACK_OBJECT_STRING_pure(CBNAME) \
2370 wxObject* CBNAME(const wxString& a)
2372 #define IMP_PYCALLBACK_OBJECT_STRING_pure(CLASS, PCLASS, CBNAME) \
2373 wxObject* CLASS::CBNAME(const wxString& a) { \
2374 wxObject* rv = NULL; \
2375 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2376 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
2377 PyObject* so = wx2PyString(a); \
2379 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(O)", so)); \
2381 wxPyConvertSwigPtr(ro, (void **)&rv, wxT("wxObject")); \
2386 wxPyEndBlockThreads(blocked); \
2390 //---------------------------------------------------------------------------
2392 #define DEC_PYCALLBACK_BOOL_NODE_pure(CBNAME) \
2393 bool CBNAME(wxXmlNode* a)
2396 #define IMP_PYCALLBACK_BOOL_NODE_pure(CLASS, PCLASS, CBNAME) \
2397 bool CLASS::CBNAME(wxXmlNode* a) { \
2399 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2400 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
2401 PyObject* obj = wxPyConstructObject((void*)a, wxT("wxXmlNode"), 0); \
2402 rv = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj)); \
2405 wxPyEndBlockThreads(blocked); \
2409 //---------------------------------------------------------------------------
2411 #define DEC_PYCALLBACK_COORD_SIZET_constpure(CBNAME) \
2412 wxCoord CBNAME(size_t a) const
2415 #define IMP_PYCALLBACK_COORD_SIZET_constpure(CLASS, PCLASS, CBNAME) \
2416 wxCoord CLASS::CBNAME(size_t a) const { \
2419 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2420 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2421 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)", a)); \
2423 wxPyEndBlockThreads(blocked); \
2427 //---------------------------------------------------------------------------
2429 #define DEC_PYCALLBACK_VOID_SIZETSIZET_const(CBNAME) \
2430 void CBNAME(size_t a, size_t b) const; \
2431 void base_##CBNAME(size_t a, size_t b) const
2434 #define IMP_PYCALLBACK_VOID_SIZETSIZET_const(CLASS, PCLASS, CBNAME) \
2435 void CLASS::CBNAME(size_t a, size_t b) const { \
2437 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2438 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
2439 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)",a,b)); \
2440 wxPyEndBlockThreads(blocked); \
2442 PCLASS::CBNAME(a,b); \
2444 void CLASS::base_##CBNAME(size_t a, size_t b) const { \
2445 PCLASS::CBNAME(a,b); \
2448 //---------------------------------------------------------------------------
2450 #define DEC_PYCALLBACK_COORD_const(CBNAME) \
2451 wxCoord CBNAME() const; \
2452 wxCoord base_##CBNAME() const
2455 #define IMP_PYCALLBACK_COORD_const(CLASS, PCLASS, CBNAME) \
2456 wxCoord CLASS::CBNAME() const { \
2459 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2460 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
2461 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
2462 wxPyEndBlockThreads(blocked); \
2464 rval = PCLASS::CBNAME(); \
2467 wxCoord CLASS::base_##CBNAME() const { \
2468 return PCLASS::CBNAME(); \
2471 //---------------------------------------------------------------------------
2473 #define DEC_PYCALLBACK__DCRECTSIZET_constpure(CBNAME) \
2474 void CBNAME(wxDC& a, const wxRect& b, size_t c) const;
2477 #define IMP_PYCALLBACK__DCRECTSIZET_constpure(CLASS, PCLASS, CBNAME) \
2478 void CLASS::CBNAME(wxDC& a, const wxRect& b, size_t c) const { \
2480 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2481 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2482 PyObject* obj = wxPyMake_wxObject(&a,false); \
2483 PyObject* ro = wxPyConstructObject((void*)&b, wxT("wxRect"), 0); \
2484 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OOi)", obj, ro, (int)c)); \
2487 wxPyEndBlockThreads(blocked); \
2490 //---------------------------------------------------------------------------
2492 #define DEC_PYCALLBACK__DCRECTSIZET_const(CBNAME) \
2493 void CBNAME(wxDC& a, const wxRect& b, size_t c) const; \
2494 void base_##CBNAME(wxDC& a, const wxRect& b, size_t c) const
2497 #define IMP_PYCALLBACK__DCRECTSIZET_const(CLASS, PCLASS, CBNAME) \
2498 void CLASS::CBNAME(wxDC& a, const wxRect& b, size_t c) const { \
2500 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2501 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2502 PyObject* obj = wxPyMake_wxObject(&a,false); \
2503 PyObject* ro = wxPyConstructObject((void*)&b, wxT("wxRect"), 0); \
2504 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OOi)", obj, ro, (int)c)); \
2507 wxPyEndBlockThreads(blocked); \
2509 PCLASS::CBNAME(a,b,c); \
2511 void CLASS::base_##CBNAME(wxDC& a, const wxRect& b, size_t c) const { \
2512 PCLASS::CBNAME(a,b,c); \
2515 //---------------------------------------------------------------------------
2518 #define DEC_PYCALLBACK_STRING_SIZET(CBNAME) \
2519 wxString CBNAME(size_t a) const; \
2520 wxString base_##CBNAME(size_t a) const
2522 #define IMP_PYCALLBACK_STRING_SIZET(CLASS, PCLASS, CBNAME) \
2523 wxString CLASS::CBNAME(size_t a) const { \
2526 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2527 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2529 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(l)",a)); \
2531 rval = Py2wxString(ro); \
2535 wxPyEndBlockThreads(blocked); \
2537 rval = PCLASS::CBNAME(a); \
2540 wxString CLASS::base_##CBNAME(size_t a) const { \
2541 return PCLASS::CBNAME(a); \
2544 //---------------------------------------------------------------------------
2546 #define DEC_PYCALLBACK_STRING_SIZET_pure(CBNAME) \
2547 wxString CBNAME(size_t a) const
2549 #define IMP_PYCALLBACK_STRING_SIZET_pure(CLASS, PCLASS, CBNAME) \
2550 wxString CLASS::CBNAME(size_t a) const { \
2553 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2554 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2556 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(l)",a)); \
2558 rval = Py2wxString(ro); \
2562 wxPyEndBlockThreads(blocked); \
2566 //---------------------------------------------------------------------------
2568 #define DEC_PYCALLBACK_VIZATTR_(CBNAME) \
2569 wxVisualAttributes CBNAME() const; \
2570 wxVisualAttributes base_##CBNAME()
2573 #define IMP_PYCALLBACK_VIZATTR_(CLASS, PCLASS, CBNAME) \
2574 wxVisualAttributes CLASS::CBNAME() const { \
2575 wxVisualAttributes rval; \
2577 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
2578 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
2580 wxVisualAttributes* ptr; \
2581 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
2583 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxVisualAttributes"))) \
2588 wxPyEndBlockThreads(blocked); \
2590 rval = PCLASS::CBNAME(); \
2593 wxVisualAttributes CLASS::base_##CBNAME() { \
2594 return PCLASS::CBNAME(); \
2597 //---------------------------------------------------------------------------