.. include:: headings.inc .. _PowerEvent: ========================================================================================================================================== |phoenix_title| **PowerEvent** ========================================================================================================================================== The power events are generated when the system power state changes, e.g. the system is suspended, hibernated, plugged into or unplugged from the wall socket and so on. PowerEvents are emitted by Windows. Notice that currently only suspend and resume events are generated and only under MS Windows platform. To avoid the need to change the code using this event later when these events are implemented on the other platforms please use the test ``ifdef wxHAS_POWER_EVENTS`` instead of directly testing for the platform in your code: this symbol will be defined for all platforms supporting the power events. .. _PowerEvent-events: |events| Events Emitted by this Class ===================================== Handlers bound for the following event types will receive a :ref:`PowerEvent` parameter. - EVT_POWER_SUSPENDING: System is about to be suspended, this event can be vetoed to prevent suspend from taking place. - EVT_POWER_SUSPENDED: System is about to suspend: normally the application should quickly (i.e. without user intervention) close all the open files and network connections here, possibly remembering them to reopen them later when the system is resumed. - EVT_POWER_SUSPEND_CANCEL: System suspension was cancelled because some application vetoed it. - EVT_POWER_RESUME: System resumed from suspend: normally the application should restore the state in which it had been before the suspension. .. seealso:: :func:`GetPowerType`, :func:`GetBatteryState` | |class_hierarchy| Inheritance Diagram ===================================== Inheritance diagram for class **PowerEvent** .. raw:: html

Inheritance diagram of PowerEvent

| |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~PowerEvent.__init__` :meth:`~PowerEvent.IsVetoed` Returns whether Veto has been called. :meth:`~PowerEvent.Veto` Call this to prevent suspend from taking place in ``wxEVT_POWER_SUSPENDING`` handler (it is ignored for all the others). ================================================================================ ================================================================================ | |api| Class API =============== .. class:: PowerEvent(Event) The power events are generated when the system power state changes, e.g. **Possible constructors**:: PowerEvent() PowerEvent(evtType) .. method:: __init__(self, *args, **kw) |overload| **Overloaded Implementations**: **~~~** **__init__** `(self)` **~~~** **__init__** `(self, evtType)` :param `evtType`: :type `evtType`: EventType **~~~** .. method:: IsVetoed(self) Returns whether Veto has been called. :rtype: `bool` .. method:: Veto(self) Call this to prevent suspend from taking place in ``wxEVT_POWER_SUSPENDING`` handler (it is ignored for all the others).