.. wxPython Phoenix documentation
This file was generated by Phoenix's sphinx generator and associated
tools, do not edit by hand.
Copyright: (c) 2011-2020 by Total Control Software
License: wxWindows License
.. include:: headings.inc
.. _wx.GestureEvent:
==========================================================================================================================================
|phoenix_title| **wx.GestureEvent**
==========================================================================================================================================
This is the base class for all supported gesture events.
.. versionadded:: 4.1/wxWidgets-3.1.1
.. note::
Gesture events are not generated by default, you must call :meth:`wx.Window.EnableTouchEvents` with the appropriate parameter to request their generation.
.. seealso:: :ref:`wx.PanGestureEvent`, :ref:`wx.ZoomGestureEvent`, :ref:`wx.RotateGestureEvent`
|
|class_hierarchy| Class Hierarchy
=================================
.. raw:: html

Inheritance diagram for class
GestureEvent:
|
|sub_classes| Known Subclasses
==============================
:ref:`wx.LongPressEvent`, :ref:`wx.PanGestureEvent`, :ref:`wx.PressAndTapEvent`, :ref:`wx.RotateGestureEvent`, :ref:`wx.TwoFingerTapEvent`, :ref:`wx.ZoomGestureEvent`
|
|method_summary| Methods Summary
================================
================================================================================ ================================================================================
:meth:`~wx.GestureEvent.__init__` Constructor.
:meth:`~wx.GestureEvent.GetPosition` Returns the position where the event took effect, in client coordinates: position of Pan event, center of zoom for Zoom event, center of rotation for Rotate event, center of box formed by 2 fingers for Two Finger Tap event and position of the pressed finger for Press and Tap Event.
:meth:`~wx.GestureEvent.IsGestureEnd` Returns ``True`` if the event was the last in a gesture sequence.
:meth:`~wx.GestureEvent.IsGestureStart` Returns ``True`` if the event was the first in a gesture sequence.
:meth:`~wx.GestureEvent.SetGestureEnd` Sets the event to be the last in a gesture sequence.
:meth:`~wx.GestureEvent.SetGestureStart` Sets the event to be the first in a gesture sequence.
:meth:`~wx.GestureEvent.SetPosition` Sets the position where the event took effect, in client coordinates: position of Pan event, center of zoom for Zoom event, center of rotation for Rotate event.
================================================================================ ================================================================================
|
|property_summary| Properties Summary
=====================================
================================================================================ ================================================================================
:attr:`~wx.GestureEvent.Position` See :meth:`~wx.GestureEvent.GetPosition` and :meth:`~wx.GestureEvent.SetPosition`
================================================================================ ================================================================================
|
|api| Class API
===============
.. class:: wx.GestureEvent(Event)
**Possible constructors**::
GestureEvent(winid: int=0, type: EventType=wxEVT_NULL) -> None
This is the base class for all supported gesture events.
.. method:: __init__(self, winid: int=0, type: EventType=wxEVT_NULL)
Constructor.
:param `winid`:
:type `winid`: wx.WindowID
:param `type`:
:type `type`: wx.EventType
:rtype: `None`
.. method:: GetPosition(self)
Returns the position where the event took effect, in client coordinates: position of Pan event, center of zoom for Zoom event, center of rotation for Rotate event, center of box formed by 2 fingers for Two Finger Tap event and position of the pressed finger for Press and Tap Event.
:rtype: :ref:`wx.Point`
.. method:: IsGestureEnd(self)
Returns ``True`` if the event was the last in a gesture sequence.
:rtype: `bool`
.. method:: IsGestureStart(self)
Returns ``True`` if the event was the first in a gesture sequence.
:rtype: `bool`
.. method:: SetGestureEnd(self, isEnd: bool=True)
Sets the event to be the last in a gesture sequence.
:param `isEnd`:
:type `isEnd`: bool
:rtype: `None`
.. method:: SetGestureStart(self, isStart: bool=True)
Sets the event to be the first in a gesture sequence.
:param `isStart`:
:type `isStart`: bool
:rtype: `None`
.. method:: SetPosition(self, pos : Point)
Sets the position where the event took effect, in client coordinates: position of Pan event, center of zoom for Zoom event, center of rotation for Rotate event.
:param `pos`:
:type `pos`: wx.Point
:rtype: `None`
.. attribute:: Position
See :meth:`~wx.GestureEvent.GetPosition` and :meth:`~wx.GestureEvent.SetPosition`