# 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 .QValidator import QValidator

class QIntValidator(QValidator):
    """
    QIntValidator(parent: typing.Optional[QObject] = None)
    QIntValidator(bottom: int, top: int, parent: typing.Optional[QObject] = None)
    """
    def bottom(self): # real signature unknown; restored from __doc__
        """ bottom(self) -> int """
        return 0

    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 disconnectNotify(self, *args, **kwargs): # real signature unknown
        pass

    def fixup(self, input): # real signature unknown; restored from __doc__
        """ fixup(self, input: str) -> str """
        return ""

    def isSignalConnected(self, *args, **kwargs): # real signature unknown
        pass

    def receivers(self, *args, **kwargs): # real signature unknown
        pass

    def sender(self, *args, **kwargs): # real signature unknown
        pass

    def senderSignalIndex(self, *args, **kwargs): # real signature unknown
        pass

    def setBottom(self, a0): # real signature unknown; restored from __doc__
        """ setBottom(self, a0: int) """
        pass

    def setRange(self, bottom, top): # real signature unknown; restored from __doc__
        """ setRange(self, bottom: int, top: int) """
        pass

    def setTop(self, a0): # real signature unknown; restored from __doc__
        """ setTop(self, a0: int) """
        pass

    def timerEvent(self, *args, **kwargs): # real signature unknown
        pass

    def top(self): # real signature unknown; restored from __doc__
        """ top(self) -> int """
        return 0

    def validate(self, a0, a1): # real signature unknown; restored from __doc__
        """ validate(self, a0: str, a1: int) -> Tuple[QValidator.State, str, int] """
        pass

    def __init__(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
        pass


