# encoding: utf-8
# module PyQt6.QtGui
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\PyQt6\QtGui.pyd
# by generator 1.147
# no doc

# imports
import PyQt6.QtCore as __PyQt6_QtCore
import PyQt6.sip as __PyQt6_sip


from .QSinglePointEvent import QSinglePointEvent

class QTabletEvent(QSinglePointEvent):
    """ QTabletEvent(t: QEvent.Type, device: QPointingDevice, pos: QPointF, globalPos: QPointF, pressure: float, xTilt: float, yTilt: float, tangentialPressure: float, rotation: float, z: float, keyState: Qt.KeyboardModifier, button: Qt.MouseButton, buttons: Qt.MouseButton) """
    def clone(self): # real signature unknown; restored from __doc__
        """ clone(self) -> QTabletEvent """
        return QTabletEvent

    def pressure(self): # real signature unknown; restored from __doc__
        """ pressure(self) -> float """
        return 0.0

    def rotation(self): # real signature unknown; restored from __doc__
        """ rotation(self) -> float """
        return 0.0

    def tangentialPressure(self): # real signature unknown; restored from __doc__
        """ tangentialPressure(self) -> float """
        return 0.0

    def xTilt(self): # real signature unknown; restored from __doc__
        """ xTilt(self) -> float """
        return 0.0

    def yTilt(self): # real signature unknown; restored from __doc__
        """ yTilt(self) -> float """
        return 0.0

    def z(self): # real signature unknown; restored from __doc__
        """ z(self) -> float """
        return 0.0

    def __init__(self, t, device, pos, globalPos, pressure, xTilt, yTilt, tangentialPressure, rotation, z, keyState, button, buttons): # real signature unknown; restored from __doc__
        pass


