************** wx.NotifyEvent ************** Inheritance diagram for `wx.NotifyEvent`: | .. inheritance-diagram:: wx.NotifyEvent | Description =========== This class is not used by the event handlers by itself, but is a base class for other event classes (such as `wx.NotebookEvent `_). It (or an object of a derived class) is sent when the controls state is being changed and allows the program to `Veto <#Veto>`_ this change if it wants to prevent it from happening. .. seealso:: `wx.NotebookEvent `_ Derived From ^^^^^^^^^^^^^ * `wx.CommandEvent `_ * `wx.Event `_ * `wx.EvtHandler `_ * `wx.Object <../Widgets/wx.Object.html>`_ Known Subclasses ^^^^^^^^^^^^^^^^ `wx.BookCtrlBaseEvent`, `wx.ChoicebookEvent`, `wx.ListEvent `_, `wx.ListbookEvent`, `wx.NotebookEvent `_, `wx.SpinEvent `_, `wx.SplitterEvent `_, `wx.ToolbookEvent`, `wx.TreeEvent `_, `wx.TreebookEvent `_ Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ * `Allow <#Allow>`_ * `IsAllowed <#IsAllowed>`_ * `Veto <#Veto>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(commandType=wx.wxEVT_NULL, winid=0) Constructore. Used internally. **Parameters:** * `commandType` (eventtype) * `winid` (int) | **Returns:** `wx.NotifyEvent `_ -------- .. method:: Allow() This is the opposite of `Veto <#Veto>`_: it explicitly allows the event to be processed. For most events it is not necessary to call this method as the events are allowed anyhow but some are forbidden by default (this will be mentioned in the corresponding event description). -------- .. method:: IsAllowed() Returns ``True`` if the change is allowed (`Veto <#Veto>`_ hasn't been called) or ``False`` otherwise (if it was). | **Returns:** `bool` -------- .. method:: Veto() Prevents the change announced by this event from happening. It is in general a good idea to notify the user about the reasons for vetoing the change because otherwise the applications behaviour (which just refuses to do what the user wants) might be quite surprising.