X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fbfdbb0f86b0969d652813f6cd5a61f714fff616..36a0190ebd5bd9a7302f60f6dcd608b80574e21c:/interface/wx/notebook.h diff --git a/interface/wx/notebook.h b/interface/wx/notebook.h index 59829ac0d8..d3cace7776 100644 --- a/interface/wx/notebook.h +++ b/interface/wx/notebook.h @@ -2,7 +2,6 @@ // Name: notebook.h // Purpose: interface of wxNotebook // Author: wxWidgets team -// RCS-ID: $Id$ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -26,6 +25,10 @@ enum #define wxNB_NOPAGETHEME 0x0400 #define wxNB_FLAT 0x0800 +wxEventType wxEVT_NOTEBOOK_PAGE_CHANGED; +wxEventType wxEVT_NOTEBOOK_PAGE_CHANGING; + + /** @class wxNotebook @@ -65,10 +68,10 @@ enum @beginEventEmissionTable{wxBookCtrlEvent} @event{EVT_NOTEBOOK_PAGE_CHANGED(id, func)} The page selection was changed. - Processes a @c wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED event. + Processes a @c wxEVT_NOTEBOOK_PAGE_CHANGED event. @event{EVT_NOTEBOOK_PAGE_CHANGING(id, func)} The page selection is about to be changed. - Processes a @c wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING event. + Processes a @c wxEVT_NOTEBOOK_PAGE_CHANGING event. This event can be vetoed. @endEventTable @@ -106,7 +109,7 @@ enum @library{wxcore} @category{bookctrl} - @appearance{notebook.png} + @appearance{notebook} @see wxBookCtrl, wxBookCtrlEvent, wxImageList, @ref page_samples_notebook */