wx.aui.AuiNotebookEvent¶
This class is used by the events generated by wx.aui.AuiNotebook.
Please note that most events generated by wx.aui.AuiNotebook are handled by the notebook object itself, i.e. they do not propagate upwards to the notebook parent window, in spite of being command events. In order to handle these events you should use wx.EvtHandler.Bind to connect to the events on the notebook object itself and don’t forget to use wx.Event.Skip to ensure that the notebook still processes them too.
Events Emitted by this Class¶
Handlers bound for the following event types will receive a wx.aui.AuiNotebookEvent parameter.
EVT_AUINOTEBOOK_PAGE_CLOSE: A page is about to be closed. Processes a
wxEVT_AUINOTEBOOK_PAGE_CLOSEevent.EVT_AUINOTEBOOK_PAGE_CLOSED(winid, fn): A page has been closed. Processes a
wxEVT_AUINOTEBOOK_PAGE_CLOSEDevent.EVT_AUINOTEBOOK_PAGE_CHANGED: The page selection was changed. Processes a
wxEVT_AUINOTEBOOK_PAGE_CHANGEDevent.EVT_AUINOTEBOOK_PAGE_CHANGING: The page selection is about to be changed. Processes a
wxEVT_AUINOTEBOOK_PAGE_CHANGINGevent. This event can be vetoed.EVT_AUINOTEBOOK_BUTTON: The window list button has been pressed. Processes a
wxEVT_AUINOTEBOOK_BUTTONevent.EVT_AUINOTEBOOK_BEGIN_DRAG: Dragging is about to begin. Processes a
wxEVT_AUINOTEBOOK_BEGIN_DRAGevent.EVT_AUINOTEBOOK_END_DRAG: Dragging has ended. Processes a
wxEVT_AUINOTEBOOK_END_DRAGevent.EVT_AUINOTEBOOK_DRAG_MOTION: Emitted during a drag and drop operation. Processes a
wxEVT_AUINOTEBOOK_DRAG_MOTIONevent.EVT_AUINOTEBOOK_ALLOW_DND: Whether to allow a tab to be dropped. Processes a
wxEVT_AUINOTEBOOK_ALLOW_DNDevent. This event must be specially allowed.EVT_AUINOTEBOOK_DRAG_DONE(winid, fn): Notify that the tab has been dragged. Processes a
wxEVT_AUINOTEBOOK_DRAG_DONEevent.EVT_AUINOTEBOOK_TAB_MIDDLE_DOWN(winid, fn): The middle mouse button is pressed on a tab. Processes a
wxEVT_AUINOTEBOOK_TAB_MIDDLE_DOWNevent.EVT_AUINOTEBOOK_TAB_MIDDLE_UP(winid, fn): The middle mouse button is released on a tab. Processes a
wxEVT_AUINOTEBOOK_TAB_MIDDLE_UPevent.EVT_AUINOTEBOOK_TAB_RIGHT_DOWN(winid, fn): The right mouse button is pressed on a tab. Processes a
wxEVT_AUINOTEBOOK_TAB_RIGHT_DOWNevent.EVT_AUINOTEBOOK_TAB_RIGHT_UP(winid, fn): The right mouse button is released on a tab. Processes a
wxEVT_AUINOTEBOOK_TAB_RIGHT_UPevent.EVT_AUINOTEBOOK_BG_DCLICK(winid, fn): Double clicked on the tabs background area. Processes a
wxEVT_AUINOTEBOOK_BG_DCLICKevent.
See also
Class Hierarchy¶
Methods Summary¶
Constructor. |
|
Class API¶
- class wx.aui.AuiNotebookEvent(BookCtrlEvent)¶
Possible constructors:
AuiNotebookEvent(command_type=wxEVT_NULL, win_id=0) -> None
This class is used by the events generated by AuiNotebook.
Methods¶
- __init__(self, command_type=wxEVT_NULL, win_id=0)¶
Constructor.
- Parameters:
command_type (wx.EventType)
win_id (int)
- Return type:
None
- Clone(self)¶
- Return type:
Event