// adds a new page to the control
virtual bool AddPage(wxWindow *page,
const wxString& text,
- bool bSelect = false,
+ bool select = false,
int imageId = -1);
// the same as AddPage(), but adds the page at the specified position
virtual bool InsertPage(size_t n,
wxWindow *page,
const wxString& text,
- bool bSelect = false,
+ bool select = false,
int imageId = -1) = 0;
// set the currently selected page, return the index of the previously
virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const;
#ifdef __WXMSW__
- // Windows-only at present. Also, you must use the wxNB_FIXEDWIDTH
- // style.
- void SetTabSize(const wxSize& sz);
-
// Windows only: attempts to apply the UX theme page background to this page
void ApplyThemeBackground(wxWindow* window, const wxColour& colour);
#endif