X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7fa03f04345b620d1a14529b05961116b20a1297..7b504551c292ecb4296693983161ac5ad03745f6:/include/wx/notebook.h diff --git a/include/wx/notebook.h b/include/wx/notebook.h index c1a04385bf..74fcc220cc 100644 --- a/include/wx/notebook.h +++ b/include/wx/notebook.h @@ -5,17 +5,13 @@ // Modified by: // Created: 01.02.01 // RCS-ID: $Id$ -// Copyright: (c) 1996-2000 wxWidgets team +// Copyright: (c) 1996-2000 Vadim Zeitlin // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// #ifndef _WX_NOTEBOOK_H_BASE_ #define _WX_NOTEBOOK_H_BASE_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "notebookbase.h" -#endif - // ---------------------------------------------------------------------------- // headers // ---------------------------------------------------------------------------- @@ -94,6 +90,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 +127,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))