// wxWindows
#ifndef WX_PRECOMP
#include "wx/app.h"
+ #include "wx/dcclient.h"
#include "wx/string.h"
#include "wx/settings.h"
#endif // WX_PRECOMP
} // end of wxNotebook::GetRowCount
int wxNotebook::SetSelection(
- int nPage
+ size_t nPage
)
{
wxCHECK_MSG( IS_VALID_PAGE(nPage), -1, wxT("notebook page out of range") );
} // end of wxNotebook::SetSelection
bool wxNotebook::SetPageText(
- int nPage
+ size_t nPage
, const wxString& rsStrText
)
{
} // end of wxNotebook::SetPageText
wxString wxNotebook::GetPageText (
- int nPage
+ size_t nPage
) const
{
BOOKTEXT vBookText;
} // end of wxNotebook::GetPageText
int wxNotebook::GetPageImage (
- int nPage
+ size_t nPage
) const
{
wxCHECK_MSG( IS_VALID_PAGE(nPage), -1, wxT("notebook page out of range") );
} // end of wxNotebook::GetPageImage
bool wxNotebook::SetPageImage (
- int nPage
+ size_t nPage
, int nImage
)
{
// Remove one page from the notebook, without deleting
//
wxNotebookPage* wxNotebook::DoRemovePage (
- int nPage
+ size_t nPage
)
{
wxNotebookPage* pPageRemoved = wxNotebookBase::DoRemovePage(nPage);
// Same as AddPage() but does it at given position
//
bool wxNotebook::InsertPage (
- int nPage
+ size_t nPage
, wxNotebookPage* pPage
, const wxString& rsStrText
, bool bSelect