# 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


class QInputDevice(__PyQt6_QtCore.QObject):
    """
    QInputDevice(name: str, systemId: int, type: QInputDevice.DeviceType, seatName: str = '', parent: typing.Optional[QObject] = None)
    QInputDevice(parent: typing.Optional[QObject] = None)
    """
    def availableVirtualGeometry(self): # real signature unknown; restored from __doc__
        """ availableVirtualGeometry(self) -> QRect """
        pass

    def availableVirtualGeometryChanged(self, *args, **kwargs): # real signature unknown
        """
        pyqtSignal(*types, name: str = ..., revision: int = ..., arguments: Sequence = ...) -> PYQT_SIGNAL
        
        types is normally a sequence of individual types.  Each type is either a
        type object or a string that is the name of a C++ type.  Alternatively
        each type could itself be a sequence of types each describing a different
        overloaded signal.
        name is the optional C++ name of the signal.  If it is not specified then
        the name of the class attribute that is bound to the signal is used.
        revision is the optional revision of the signal that is exported to QML.
        If it is not specified then 0 is used.
        arguments is the optional sequence of the names of the signal's arguments.
        """
        pass

    def capabilities(self): # real signature unknown; restored from __doc__
        """ capabilities(self) -> QInputDevice.Capability """
        pass

    def childEvent(self, *args, **kwargs): # real signature unknown
        pass

    def connectNotify(self, *args, **kwargs): # real signature unknown
        pass

    def customEvent(self, *args, **kwargs): # real signature unknown
        pass

    def devices(self): # real signature unknown; restored from __doc__
        """ devices() -> List[QInputDevice] """
        return []

    def disconnectNotify(self, *args, **kwargs): # real signature unknown
        pass

    def hasCapability(self, cap): # real signature unknown; restored from __doc__
        """ hasCapability(self, cap: QInputDevice.Capability) -> bool """
        return False

    def isSignalConnected(self, *args, **kwargs): # real signature unknown
        pass

    def name(self): # real signature unknown; restored from __doc__
        """ name(self) -> str """
        return ""

    def primaryKeyboard(self, seatName=''): # real signature unknown; restored from __doc__
        """ primaryKeyboard(seatName: str = '') -> QInputDevice """
        return QInputDevice

    def receivers(self, *args, **kwargs): # real signature unknown
        pass

    def seatName(self): # real signature unknown; restored from __doc__
        """ seatName(self) -> str """
        return ""

    def seatNames(self): # real signature unknown; restored from __doc__
        """ seatNames() -> List[str] """
        return []

    def sender(self, *args, **kwargs): # real signature unknown
        pass

    def senderSignalIndex(self, *args, **kwargs): # real signature unknown
        pass

    def systemId(self): # real signature unknown; restored from __doc__
        """ systemId(self) -> int """
        return 0

    def timerEvent(self, *args, **kwargs): # real signature unknown
        pass

    def type(self): # real signature unknown; restored from __doc__
        """ type(self) -> QInputDevice.DeviceType """
        pass

    def __eq__(self, *args, **kwargs): # real signature unknown
        """ Return self==value. """
        pass

    def __ge__(self, *args, **kwargs): # real signature unknown
        """ Return self>=value. """
        pass

    def __gt__(self, *args, **kwargs): # real signature unknown
        """ Return self>value. """
        pass

    def __init__(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
        pass

    def __le__(self, *args, **kwargs): # real signature unknown
        """ Return self<=value. """
        pass

    def __lt__(self, *args, **kwargs): # real signature unknown
        """ Return self<value. """
        pass

    def __ne__(self, *args, **kwargs): # real signature unknown
        """ Return self!=value. """
        pass

    Capability = None # (!) real value is "<flag 'Capability'>"
    DeviceType = None # (!) real value is "<flag 'DeviceType'>"
    __hash__ = None


