wx.lib.agw.flatnotebook.FlatNotebookDragEvent¶
This event will be sent when a EVT_FLATNOTEBOOK_PAGE_DRAGGED_FOREIGN
is
mapped in the parent.
Class Hierarchy¶
Known Superclasses¶
wx.lib.agw.flatnotebook.FlatNotebookEvent
Methods Summary¶
Default class constructor. |
|
Returns the new notebook. |
|
Returns the old notebook. |
|
Sets the new notebook. |
|
Sets the old notebook. |
Class API¶
- class FlatNotebookDragEvent(FlatNotebookEvent)¶
This event will be sent when a
EVT_FLATNOTEBOOK_PAGE_DRAGGED_FOREIGN
is mapped in the parent.
Methods¶
- __init__(self, eventType, eventId=1, nSel=-1, nOldSel=-1)¶
Default class constructor.
- Parameters:
eventType – the event type;
eventId – the event identifier;
nSel – the current selection;
nOldSel – the old selection.
- GetNotebook(self)¶
Returns the new notebook.
- GetOldNotebook(self)¶
Returns the old notebook.
- SetNotebook(self, notebook)¶
Sets the new notebook.
- Parameters:
notebook – an instance of
FlatNotebook
.
- SetOldNotebook(self, old)¶
Sets the old notebook.
- Parameters:
notebook – an instance of
FlatNotebook
.