/////////////////////////////////////////////////////////////////////////////
-// Name: notebook.h
+// Name: wx/generic/notebook.h
// Purpose: wxNotebook class (a.k.a. property sheet, tabbed dialog)
// Author: Julian Smart
// Modified by:
-// RCS-ID: $Id$
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
int SetSelection(size_t nPage);
// cycle thru the tabs
// void AdvanceSelection(bool bForward = true);
- // get the currently selected page
- int GetSelection() const { return m_nSelection; }
// changes selected page without sending events
int ChangeSelection(size_t nPage);
wxNotebookPage *pPage,
const wxString& strText,
bool bSelect = false,
- int imageId = -1);
+ int imageId = NO_IMAGE);
// callbacks
// ---------
// helper functions
void ChangePage(int nOldSel, int nSel); // change pages
- int m_nSelection; // the current selection (-1 if none)
-
wxTabView* m_tabView;
DECLARE_DYNAMIC_CLASS(wxNotebook)