added/documented wxWizard::HasNext/PrevPage()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17484 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-10-08 20:37:56 +00:00
parent bd5dd71130
commit d329818b2a
3 changed files with 38 additions and 3 deletions

View File

@@ -201,6 +201,15 @@ public:
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize);
#endif // WXWIN_COMPATIBILITY_2_2
// the methods below may be overridden by the derived classes to provide
// custom logic for determining the pages order
virtual bool HasNextPage(wxWizardPage *page)
{ return page->GetNext() != NULL; }
virtual bool HasPrevPage(wxWizardPage *page)
{ return page->GetPrev() != NULL; }
};
// include the real class declaration