got rid of wxEvtHandler::m_isWindow, use virtual functions (overridden in wxWindow) instead

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21418 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-06-26 00:44:55 +00:00
parent 3ed2104c99
commit 4caf847c87
4 changed files with 93 additions and 115 deletions

View File

@@ -876,6 +876,13 @@ public:
#endif // wxUSE_PALETTE
protected:
// event handling specific to wxWindow
#if wxUSE_VALIDATORS
virtual bool TryValidator(wxEvent& event);
#endif // wxUSE_VALIDATORS
virtual bool TryParent(wxEvent& event);
#if wxUSE_CONSTRAINTS
// satisfy the constraints for the windows but don't set the window sizes
void SatisfyConstraints();