# encoding: utf-8
# module PyQt5.QtGui
# from C:\Programs\Python\Python311\Lib\site-packages\pyqt5-5.15.9-py3.11-win-amd64.egg\PyQt5\QtGui.pyd
# by generator 1.147
# no doc

# imports
import PyQt5.QtCore as __PyQt5_QtCore
import sip as __sip


from .QInputEvent import QInputEvent

class QTouchEvent(QInputEvent):
    """
    QTouchEvent(eventType: QEvent.Type, device: typing.Optional[QTouchDevice] = None, modifiers: Union[Qt.KeyboardModifiers, Qt.KeyboardModifier] = Qt.NoModifier, touchPointStates: Union[Qt.TouchPointStates, Qt.TouchPointState] = Qt.TouchPointStates(), touchPoints: Iterable[QTouchEvent.TouchPoint] = [])
    QTouchEvent(a0: QTouchEvent)
    """
    def device(self): # real signature unknown; restored from __doc__
        """ device(self) -> QTouchDevice """
        return QTouchDevice

    def setDevice(self, adevice): # real signature unknown; restored from __doc__
        """ setDevice(self, adevice: QTouchDevice) """
        pass

    def target(self): # real signature unknown; restored from __doc__
        """ target(self) -> QObject """
        pass

    def touchPoints(self): # real signature unknown; restored from __doc__
        """ touchPoints(self) -> List[QTouchEvent.TouchPoint] """
        return []

    def touchPointStates(self): # real signature unknown; restored from __doc__
        """ touchPointStates(self) -> Qt.TouchPointStates """
        pass

    def window(self): # real signature unknown; restored from __doc__
        """ window(self) -> QWindow """
        return QWindow

    def __init__(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
        pass



