X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7fa03f04345b620d1a14529b05961116b20a1297..e12a951e754d0e6a67a211a1d8fb788e0a166094:/include/wx/notebook.h diff --git a/include/wx/notebook.h b/include/wx/notebook.h index c1a04385bf..78523bd13d 100644 --- a/include/wx/notebook.h +++ b/include/wx/notebook.h @@ -5,7 +5,7 @@ // Modified by: // Created: 01.02.01 // RCS-ID: $Id$ -// Copyright: (c) 1996-2000 wxWidgets team +// Copyright: (c) 1996-2000 Vadim Zeitlin // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// @@ -94,6 +94,14 @@ public: // On platforms that support it, get the theme page background colour, else invalid colour virtual wxColour GetThemeBackgroundColour() const { return wxNullColour; } + + // Reserved for future use + virtual void ReservedNotebookFunc1() {} + virtual void ReservedNotebookFunc2() {} + virtual void ReservedNotebookFunc3() {} + virtual void ReservedNotebookFunc4() {} + virtual void ReservedNotebookFunc5() {} + protected: DECLARE_NO_COPY_CLASS(wxNotebookBase) }; @@ -123,7 +131,7 @@ END_DECLARE_EVENT_TYPES() typedef void (wxEvtHandler::*wxNotebookEventFunction)(wxNotebookEvent&); #define wxNotebookEventHandler(func) \ - (wxObjectEventFunction)wxStaticCastEvent(wxNotebookEventFunction, &func) + (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxNotebookEventFunction, &func) #define EVT_NOTEBOOK_PAGE_CHANGED(winid, fn) \ wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, winid, wxNotebookEventHandler(fn))