Virtualize OnInternalIdle.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34619 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2005-06-09 21:51:21 +00:00
parent f6becba596
commit 37617433bb
2 changed files with 29 additions and 1 deletions

View File

@@ -75,6 +75,8 @@ public:
DEC_PYCALLBACK_BOOL_(HasTransparentBackground);
DEC_PYCALLBACK_VOID_(OnInternalIdle);
PYPRIVATE;
};
@@ -108,7 +110,9 @@ IMP_PYCALLBACK_BOOL_const(wxPyControl, wxControl, ShouldInheritColours);
IMP_PYCALLBACK_VIZATTR_(wxPyControl, wxControl, GetDefaultAttributes);
IMP_PYCALLBACK_BOOL_(wxPyControl, wxControl, HasTransparentBackground);
%}
IMP_PYCALLBACK_VOID_(wxPyControl, wxControl, OnInternalIdle);
%}
// And now the one for SWIG to see
MustHaveApp(wxPyControl);
@@ -165,6 +169,9 @@ public:
bool base_ShouldInheritColours() const;
wxVisualAttributes base_GetDefaultAttributes();
void base_OnInternalIdle();
};