Common default notebook name.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31335 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2005-01-13 20:36:26 +00:00
parent 630ad6c6b6
commit e211b7b106

View File

@@ -48,14 +48,14 @@ public:
const wxPoint& pos = wxDefaultPosition, const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, const wxSize& size = wxDefaultSize,
long style = 0, long style = 0,
const wxString& name = wxT("notebook")); const wxString& name = wxNotebookNameStr);
// Create() function // Create() function
bool Create(wxWindow *parent, bool Create(wxWindow *parent,
wxWindowID id, wxWindowID id,
const wxPoint& pos = wxDefaultPosition, const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, const wxSize& size = wxDefaultSize,
long style = 0, long style = 0,
const wxString& name = wxT("notebook")); const wxString& name = wxNotebookNameStr);
// dtor // dtor
~wxNotebook(); ~wxNotebook();
@@ -92,7 +92,7 @@ public:
int GetPageCount() const; int GetPageCount() const;
// cycle thru the tabs // cycle thru the tabs
void AdvanceSelection(bool bForward = TRUE); void AdvanceSelection(bool bForward = true);
// currently it's always 1 because wxGTK doesn't support multi-row // currently it's always 1 because wxGTK doesn't support multi-row
@@ -107,7 +107,7 @@ public:
bool InsertPage(size_t nPage, bool InsertPage(size_t nPage,
wxNotebookPage *pPage, wxNotebookPage *pPage,
const wxString& strText, const wxString& strText,
bool bSelect = FALSE, bool bSelect = false,
int imageId = -1); int imageId = -1);
/* /*
// get the panel which represents the given page // get the panel which represents the given page
@@ -125,7 +125,7 @@ public:
// -------------- // --------------
#if wxUSE_CONSTRAINTS #if wxUSE_CONSTRAINTS
virtual void SetConstraintSizes(bool recurse = TRUE); virtual void SetConstraintSizes(bool recurse = true);
virtual bool DoPhase(int nPhase); virtual bool DoPhase(int nPhase);
#endif #endif