avoid conflict between wxBookCtrlBase::DoSetSelection() and the derived classes; refactor more common code into the base class

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41843 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-10-09 21:29:12 +00:00
parent 6500a868fe
commit deb325e3b2
8 changed files with 60 additions and 41 deletions

View File

@@ -222,22 +222,36 @@ public:
virtual bool HasMultiplePages() const { return true; }
protected:
// typically, wxBookCtrl-derived classes will use DoSetSelection() function
// to implement SetSelection() and ChangeSelection() functions.
// these flags make DoSetSelection() more readable
// flags for DoSetSelection()
enum
{
SetSelection_SendEvent = 1
};
// if using DoSetSelection() for implementing [Set|Change]Selection,
// then override UpdateSelectedPage() and MakeChangedEvent()
virtual int DoSetSelection(size_t nPage, int flags, wxBookCtrlBaseEvent &event);
// set the selection to the given page, sending the events (which can
// possibly prevent the page change from taking place) if SendEvent flag is
// included
virtual int DoSetSelection(size_t nPage, int flags = 0);
// if the derived class uses DoSetSelection() for implementing
// [Set|Change]Selection, it must override UpdateSelectedPage(),
// CreatePageChangingEvent() and MakeChangedEvent(), but as it might not
// use it, these functions are not pure virtual
// called to notify the control about a new current page
virtual void UpdateSelectedPage(size_t WXUNUSED(newsel))
{ wxFAIL_MSG(wxT("Override this function!")); }
virtual void MakeChangedEvent(wxBookCtrlBaseEvent &WXUNUSED(event))
// create a new "page changing" event
virtual wxBookCtrlBaseEvent* CreatePageChangingEvent() const
{ wxFAIL_MSG(wxT("Override this function!")); return NULL; }
// modify the event created by CreatePageChangingEvent() to "page changed"
// event, usually by just calling SetEventType() on it
virtual void MakeChangedEvent(wxBookCtrlBaseEvent& WXUNUSED(event))
{ wxFAIL_MSG(wxT("Override this function!")); }
// Should we accept NULL page pointers in Add/InsertPage()?
//
// Default is no but derived classes may override it if they can treat NULL