************************ wx.MouseCaptureLostEvent ************************ Inheritance diagram for `wx.MouseCaptureLostEvent`: | .. inheritance-diagram:: wx.MouseCaptureLostEvent | Description =========== An mouse capture lost event is sent to a window that obtained mouse capture, which was subsequently loss due to "external" event, for example when a dialog box is shown or if another application captures the mouse. If this happens, this event is sent to all windows that are on capture stack (i.e. called `CaptureMouse`, but didn't call `ReleaseMouse` yet). The event is **not** sent if the capture changes because of a call to `CaptureMouse` or `ReleaseMouse`. This event is currently emitted under Windows only. .. seealso:: `wx.MouseCaptureChangedEvent `_, `wx.Window.CaptureMouse <../Widgets/wx.Window.html#CaptureMouse>`_, `wx.Window.ReleaseMouse <../Widgets/wx.Window.html#ReleaseMouse>`_, `wx.Window.GetCapture <../Widgets/wx.Window.html#GetCapture>`_ Derived From ^^^^^^^^^^^^^ * `wx.Event `_ * `wx.Object <../Widgets/wx.Object.html>`_ Event Handling ^^^^^^^^^^^^^^ ================================================== ================================================== Event Name Description ================================================== ================================================== wx.EVT_MOUSE_CAPTURE_LOST(func) Process a ``wx.wxEVT_MOUSE_CAPTURE_LOST`` event. ================================================== ================================================== Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(winid=0) Constructor. **Parameters:** * `winid` (int) | **Returns:** `wx.MouseCaptureLostEvent `_