From 4a15036c35a5913328d220b449c68d0c6405da89 Mon Sep 17 00:00:00 2001 From: Francesco Montorsi Date: Sat, 22 Nov 2008 12:10:54 +0000 Subject: [PATCH] add event table for wxAuiNotebook (partially fixes #4175) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56892 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/aui/auibook.h | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/interface/wx/aui/auibook.h b/interface/wx/aui/auibook.h index 55d8064bbf..a5f790cef9 100644 --- a/interface/wx/aui/auibook.h +++ b/interface/wx/aui/auibook.h @@ -20,7 +20,7 @@ the control's look and feel. An effort has been made to try to maintain an API as similar to that of - wxNotebook. + wxNotebook (note that wxAuiNotebook does not derive from wxNotebook!). The default theme that is used is wxAuiDefaultTabArt, which provides a modern, glossy look and feel. @@ -54,12 +54,35 @@ With this style, tabs are drawn along the bottom of the notebook. @endStyleTable + + @beginEventTable{wxAuiNotebookEvent} + @event{EVT_AUINOTEBOOK_PAGE_CLOSE(id, func)} + @todo Provide description. + @event{EVT_AUINOTEBOOK_PAGE_CHANGED(id, func)} + @todo Provide description. + @event{EVT_AUINOTEBOOK_PAGE_CHANGING(id, func)} + @todo Provide description. + @event{EVT_AUINOTEBOOK_BUTTON(id, func)} + @todo Provide description. + @event{EVT_AUINOTEBOOK_BEGIN_DRAG(id, func)} + @todo Provide description. + @event{EVT_AUINOTEBOOK_END_DRAG(id, func)} + @todo Provide description. + @event{EVT_AUINOTEBOOK_DRAG_MOTION(id, func)} + @todo Provide description. + @event{EVT_AUINOTEBOOK_ALLOW_DND(id, func)} + @todo Provide description. + @endEventTable + @library{wxaui} @category{aui} */ class wxAuiNotebook : public wxControl { public: + /** + Default ctor. + */ wxAuiNotebook(); /** -- 2.45.2