]> git.saurik.com Git - wxWidgets.git/commitdiff
add event table for wxAuiNotebook (partially fixes #4175)
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sat, 22 Nov 2008 12:10:54 +0000 (12:10 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sat, 22 Nov 2008 12:10:54 +0000 (12:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56892 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/aui/auibook.h

index 55d8064bbf9e7c7dcc2673ffcb4e0b974e8593f5..a5f790cef9a8b5213eabfd0df872d2b8923f532d 100644 (file)
@@ -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.
            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();
 
     /**