Some tweaks

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@19374 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2003-02-28 00:16:52 +00:00
parent c74807054b
commit 44c2734d93

View File

@@ -65,7 +65,7 @@ enum {
class wxNotebookEvent : public wxNotifyEvent { class wxNotebookEvent : public wxNotifyEvent {
public: public:
wxNotebookEvent(wxEventType commandType = wxEVT_NULL, int id = 0, wxNotebookEvent(wxEventType commandType = wxEVT_NULL, int id = 0,
int nSel = -1, int nOldSel = -1); int sel = -1, int oldSel = -1);
int GetSelection(); int GetSelection();
int GetOldSelection(); int GetOldSelection();
@@ -96,36 +96,36 @@ public:
%pragma(python) addtomethod = "wxPreNotebook:val._setOORInfo(val)" %pragma(python) addtomethod = "wxPreNotebook:val._setOORInfo(val)"
int GetPageCount(); int GetPageCount();
int SetSelection(int nPage); int SetSelection(int page);
void AdvanceSelection(bool bForward = TRUE); void AdvanceSelection(bool forward = TRUE);
int GetSelection(); int GetSelection();
bool SetPageText(int nPage, const wxString& strText); bool SetPageText(int page, const wxString& text);
wxString GetPageText(int nPage) const; wxString GetPageText(int page) const;
void SetImageList(wxImageList* imageList); void SetImageList(wxImageList* imageList);
void AssignImageList(wxImageList *imageList) ; void AssignImageList(wxImageList *imageList) ;
%pragma(python) addtomethod = "AssignImageList:_args[0].thisown = 0" %pragma(python) addtomethod = "AssignImageList:_args[0].thisown = 0"
wxImageList* GetImageList(); wxImageList* GetImageList();
int GetPageImage(int nPage); int GetPageImage(int page);
bool SetPageImage(int nPage, int nImage); bool SetPageImage(int page, int image);
int GetRowCount(); int GetRowCount();
void SetPageSize(const wxSize& size); void SetPageSize(const wxSize& size);
void SetPadding(const wxSize& padding); void SetPadding(const wxSize& padding);
bool DeletePage(int nPage); bool DeletePage(int page);
bool RemovePage(int nPage); bool RemovePage(int page);
bool DeleteAllPages(); bool DeleteAllPages();
bool AddPage(/*wxNotebookPage*/ wxWindow *pPage, bool AddPage(/*wxNotebookPage*/ wxWindow *page,
const wxString& strText, const wxString& text,
int bSelect = FALSE, int select = FALSE,
int imageId = -1); int imageId = -1);
bool InsertPage(int nPage, bool InsertPage(int page,
/*wxNotebookPage*/ wxWindow *pPage, /*wxNotebookPage*/ wxWindow *page,
const wxString& strText, const wxString& text,
bool bSelect = FALSE, bool select = FALSE,
int imageId = -1); int imageId = -1);
/*wxNotebookPage*/ wxWindow *GetPage(int nPage); /*wxNotebookPage*/ wxWindow *GetPage(int page);
%addmethods { %addmethods {
void ResizeChildren() { void ResizeChildren() {