// implement base class virtuals
- virtual int GetSelection() const;
virtual bool SetPageText(size_t n, const wxString& strText);
virtual wxString GetPageText(size_t n) const;
virtual int GetPageImage(size_t n) const;
wxWindow *page,
const wxString& text,
bool bSelect = false,
- int imageId = -1);
+ int imageId = NO_IMAGE);
virtual int SetSelection(size_t n) { return DoSetSelection(n, SetSelection_SendEvent); }
virtual int ChangeSelection(size_t n) { return DoSetSelection(n); }
virtual void SetImageList(wxImageList *imageList);
wxBookCtrlEvent* CreatePageChangingEvent() const;
void MakeChangedEvent(wxBookCtrlEvent &event);
- // the currently selected page or wxNOT_FOUND if none
- int m_selection;
-
// whether the toolbar needs to be realized
bool m_needsRealizing;