X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/15aad3b9386e52524eefbd2619571a038070419b..a66f2f42f5a31702624f6fccbd3b9ad37e1993c8:/include/wx/notebook.h?ds=sidebyside diff --git a/include/wx/notebook.h b/include/wx/notebook.h index 7d1f7cc5fc..657912d8a0 100644 --- a/include/wx/notebook.h +++ b/include/wx/notebook.h @@ -56,15 +56,11 @@ public: wxNotebookBase() { } wxNotebookBase(wxWindow *parent, - wxWindowID id, + wxWindowID winid, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, - const wxString& name = wxNOTEBOOK_NAME) - : wxBookCtrl(parent, id, pos, size, style, name) - { - } - + const wxString& name = wxNOTEBOOK_NAME) ; // wxNotebook-specific additions to wxBookCtrl interface // ----------------------------------------------------- @@ -102,9 +98,9 @@ protected: class WXDLLEXPORT wxNotebookEvent : public wxBookCtrlEvent { public: - wxNotebookEvent(wxEventType commandType = wxEVT_NULL, int id = 0, + wxNotebookEvent(wxEventType commandType = wxEVT_NULL, int winid = 0, int nSel = -1, int nOldSel = -1) - : wxBookCtrlEvent(commandType, id, nSel, nOldSel) + : wxBookCtrlEvent(commandType, winid, nSel, nOldSel) { } @@ -119,19 +115,19 @@ END_DECLARE_EVENT_TYPES() typedef void (wxEvtHandler::*wxNotebookEventFunction)(wxNotebookEvent&); -#define EVT_NOTEBOOK_PAGE_CHANGED(id, fn) \ +#define EVT_NOTEBOOK_PAGE_CHANGED(winid, fn) \ DECLARE_EVENT_TABLE_ENTRY( \ wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, \ - id, \ + winid, \ -1, \ (wxObjectEventFunction)(wxEventFunction)(wxNotebookEventFunction) &fn, \ NULL \ ), -#define EVT_NOTEBOOK_PAGE_CHANGING(id, fn) \ +#define EVT_NOTEBOOK_PAGE_CHANGING(winid, fn) \ DECLARE_EVENT_TABLE_ENTRY( \ wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, \ - id, \ + winid, \ -1, \ (wxObjectEventFunction)(wxEventFunction)(wxNotebookEventFunction) &fn, \ NULL \