QPointingDevice#
The QPointingDevice
class describes a device from which mouse, touch or tablet events originate. More…
Synopsis#
Properties#
Functions#
def
buttonCount
()def
maximumPoints
()def
__eq__
(other)def
pointerType
()def
setCapabilities
(caps)def
setMaximumTouchPoints
(c)def
setType
(devType)def
uniqueId
()
Signals#
def
grabChanged
(grabber, transition, event, point)
Static functions#
def
primaryPointingDevice
([seatName=””])
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description#
Each QPointerEvent
contains a QPointingDevice
pointer to allow accessing device-specific properties like type and capabilities. It is the responsibility of the platform or generic plug-ins to register the available pointing devices via QWindowSystemInterface before generating any pointer events. Applications do not need to instantiate this class, they should just access the global instances pointed to by device()
.
- class PySide6.QtGui.QPointingDevice([parent=None])#
PySide6.QtGui.QPointingDevice(name, systemId, devType, pType, caps, maxPoints, buttonCount[, seatName=””[, uniqueId=QPointingDeviceUniqueId()[, parent=None]]])
- Parameters:
buttonCount – int
caps –
Capabilities
devType –
DeviceType
maxPoints – int
uniqueId –
PySide6.QtGui.QPointingDeviceUniqueId
name – str
systemId – int
seatName – str
pType –
PointerType
parent –
PySide6.QtCore.QObject
Creates a new invalid pointing device instance as a child of parent
.
Creates a new pointing device instance with the given name
, deviceType
, pointerType
, capabilities
, maxPoints
, buttonCount
, seatName
, uniqueId
and parent
.
Note
Properties can be used directly when from __feature__ import true_property
is used or via accessor functions otherwise.
- property PᅟySide6.QtGui.QPointingDevice.buttonCount: int#
- Access functions:
buttonCount
()
- property PᅟySide6.QtGui.QPointingDevice.maximumPoints: int#
- Access functions:
- property PᅟySide6.QtGui.QPointingDevice.pointerType: PointerType#
- Access functions:
pointerType
()
- property PᅟySide6.QtGui.QPointingDevice.uniqueId: PySide6.QtGui.QPointingDeviceUniqueId#
- Access functions:
uniqueId
()
- PySide6.QtGui.QPointingDevice.PointerType#
(inherits enum.Flag
) This enum represents what is interacting with the pointing device.
There is some redundancy between this property and DeviceType
. For example, if a touchscreen is used, then the DeviceType
is TouchScreen
and PointerType
is Finger
(always). But on a graphics tablet, it’s often possible for both ends of the stylus to be used, and programs need to distinguish them. Therefore the concept is extended so that every QPointerEvent
has a PointerType, and it can simplify some event handling code to ignore the DeviceType and react differently depending on the PointerType alone.
Valid values are:
Constant
Description
QPointingDevice.PointerType.Unknown
The pointer type is unknown.
QPointingDevice.PointerType.Generic
A mouse or something acting like a mouse (the core pointer on X11).
QPointingDevice.PointerType.Finger
The user’s finger.
QPointingDevice.PointerType.Pen
The drawing end of a stylus.
QPointingDevice.PointerType.Eraser
The other end of the stylus (if it has a virtual eraser on the other end).
QPointingDevice.PointerType.Cursor
A transparent circle with cross-hairs as found on a
Puck
device.QPointingDevice.PointerType.AllPointerTypes
Any of the above (used as a default filter value).
- PySide6.QtGui.QPointingDevice.GrabTransition#
This enum represents a transition of exclusive or passive grab from one object (possibly nullptr
) to another (possibly nullptr
). It is emitted as an argument of the grabChanged()
signal.
Valid values are:
Constant
Description
QPointingDevice.GrabExclusive
Emitted after
setExclusiveGrabber()
.QPointingDevice.UngrabExclusive
Emitted after
setExclusiveGrabber()
when the grabber is set tonullptr
, to notify that the grab has terminated normally.QPointingDevice.CancelGrabExclusive
Emitted after
setExclusiveGrabber()
when the grabber is set to a different object, to notify that the old grabber’s grab is “stolen”.QPointingDevice.GrabPassive
Emitted after
addPassiveGrabber()
.QPointingDevice.UngrabPassive
Emitted when a passive grab is terminated normally, for example after
removePassiveGrabber()
.QPointingDevice.CancelGrabPassive
Emitted when a passive grab is terminated abnormally (a gesture is canceled).
QPointingDevice.OverrideGrabPassive
This value is not currently used.
- PySide6.QtGui.QPointingDevice.buttonCount()#
- Return type:
int
Returns the maximum number of on-device buttons that can be detected.
Getter of property buttonCount
.
- PySide6.QtGui.QPointingDevice.grabChanged(grabber, transition, event, point)#
- Parameters:
grabber –
PySide6.QtCore.QObject
transition –
GrabTransition
event –
PySide6.QtGui.QPointerEvent
point –
PySide6.QtGui.QEventPoint
This signal is emitted when the grabber
object gains or loses an exclusive or passive grab of point
during delivery of event
. The transition
tells what happened, from the perspective of the grabber
object.
Note
A grab transition from one object to another results in two signals, to notify that one object has lost its grab, and to notify that there is another grabber. In other cases, when transitioning to or from a non-grabbing state, only one signal is emitted: the grabber
argument is never nullptr
.
- PySide6.QtGui.QPointingDevice.maximumPoints()#
- Return type:
int
Returns the maximum number of simultaneous touch points (fingers) that can be detected.
Getter of property maximumPoints
.
- PySide6.QtGui.QPointingDevice.__eq__(other)#
- Parameters:
other –
PySide6.QtGui.QPointingDevice
- Return type:
bool
- PySide6.QtGui.QPointingDevice.pointerType()#
- Return type:
Returns the pointer type.
Getter of property pointerType
.
- static PySide6.QtGui.QPointingDevice.primaryPointingDevice([seatName=""])#
- Parameters:
seatName – str
- Return type:
Returns the primary pointing device (the core pointer, traditionally assumed to be a mouse) on the given seat seatName
.
If multiple pointing devices are registered, this function prefers a mouse or touchpad that matches the given seatName
and that does not have another device as its parent. Usually only one master or core device does not have a parent device. But if such a device is not found, this function creates a new virtual “core pointer” mouse. Thus Qt continues to work on platforms that are not yet doing input device discovery and registration.
- PySide6.QtGui.QPointingDevice.setCapabilities(caps)#
- Parameters:
caps –
Capabilities
Note
This function is deprecated.
Please use the constructor rather than setters.
- PySide6.QtGui.QPointingDevice.setMaximumTouchPoints(c)#
- Parameters:
c – int
Note
This function is deprecated.
Please use the constructor rather than setters.
- PySide6.QtGui.QPointingDevice.setType(devType)#
- Parameters:
devType –
DeviceType
Note
This function is deprecated.
Please use the constructor rather than setters.
Sets the device type devType
and infers the pointer type.
- PySide6.QtGui.QPointingDevice.uniqueId()#
- Return type:
Returns a unique ID (of dubious utility) for the device.
You probably should rather be concerned with QPointerEventPoint::uniqueId().
Getter of property uniqueId
.