# 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 .QInputEvent import QInputEvent

class QPointerEvent(QInputEvent):
    # no doc
    def allPointsAccepted(self): # real signature unknown; restored from __doc__
        """ allPointsAccepted(self) -> bool """
        return False

    def clone(self): # real signature unknown; restored from __doc__
        """ clone(self) -> QPointerEvent """
        return QPointerEvent

    def isBeginEvent(self): # real signature unknown; restored from __doc__
        """ isBeginEvent(self) -> bool """
        return False

    def isEndEvent(self): # real signature unknown; restored from __doc__
        """ isEndEvent(self) -> bool """
        return False

    def isUpdateEvent(self): # real signature unknown; restored from __doc__
        """ isUpdateEvent(self) -> bool """
        return False

    def point(self, i): # real signature unknown; restored from __doc__
        """ point(self, i: int) -> QEventPoint """
        return QEventPoint

    def pointById(self, id): # real signature unknown; restored from __doc__
        """ pointById(self, id: int) -> QEventPoint """
        return QEventPoint

    def pointCount(self): # real signature unknown; restored from __doc__
        """ pointCount(self) -> int """
        return 0

    def pointerType(self): # real signature unknown; restored from __doc__
        """ pointerType(self) -> QPointingDevice.PointerType """
        pass

    def pointingDevice(self): # real signature unknown; restored from __doc__
        """ pointingDevice(self) -> QPointingDevice """
        return QPointingDevice

    def points(self): # real signature unknown; restored from __doc__
        """ points(self) -> List[QEventPoint] """
        return []

    def setAccepted(self, accepted): # real signature unknown; restored from __doc__
        """ setAccepted(self, accepted: bool) """
        pass

    def __init__(self, *args, **kwargs): # real signature unknown
        pass


