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

@@ -44,18 +44,18 @@ public:
wxNotebook(); wxNotebook();
// the same arguments as for wxControl (@@@ any special styles?) // the same arguments as for wxControl (@@@ any special styles?)
wxNotebook(wxWindow *parent, wxNotebook(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);
// 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();
@@ -83,7 +83,7 @@ public:
virtual void SetPadding(const wxSize& padding); virtual void SetPadding(const wxSize& padding);
// sets the size of the tabs (assumes all tabs are the same size) // sets the size of the tabs (assumes all tabs are the same size)
virtual void SetTabSize(const wxSize& sz); virtual void SetTabSize(const wxSize& sz);
// calculate size for wxNotebookSizer // calculate size for wxNotebookSizer
wxSize CalcSizeFromPage(const wxSize& sizePage) const; wxSize CalcSizeFromPage(const wxSize& sizePage) const;
wxRect GetPageRect() const ; wxRect GetPageRect() const ;
@@ -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
@@ -119,13 +119,13 @@ public:
void OnSelChange(wxNotebookEvent& event); void OnSelChange(wxNotebookEvent& event);
void OnSetFocus(wxFocusEvent& event); void OnSetFocus(wxFocusEvent& event);
void OnNavigationKey(wxNavigationKeyEvent& event); void OnNavigationKey(wxNavigationKeyEvent& event);
void OnMouse(wxMouseEvent &event); void OnMouse(wxMouseEvent &event);
// implementation // implementation
// -------------- // --------------
#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