# 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 .QValidator import QValidator

class QDoubleValidator(QValidator):
    """
    QDoubleValidator(parent: typing.Optional[QObject] = None)
    QDoubleValidator(bottom: float, top: float, decimals: int, parent: typing.Optional[QObject] = None)
    """
    def bottom(self): # real signature unknown; restored from __doc__
        """ bottom(self) -> float """
        return 0.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 decimals(self): # real signature unknown; restored from __doc__
        """ decimals(self) -> int """
        return 0

    def disconnectNotify(self, *args, **kwargs): # real signature unknown
        pass

    def isSignalConnected(self, *args, **kwargs): # real signature unknown
        pass

    def notation(self): # real signature unknown; restored from __doc__
        """ notation(self) -> QDoubleValidator.Notation """
        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: float) """
        pass

    def setDecimals(self, a0): # real signature unknown; restored from __doc__
        """ setDecimals(self, a0: int) """
        pass

    def setNotation(self, a0): # real signature unknown; restored from __doc__
        """ setNotation(self, a0: QDoubleValidator.Notation) """
        pass

    def setRange(self, minimum, maximum, decimals=0): # real signature unknown; restored from __doc__
        """ setRange(self, minimum: float, maximum: float, decimals: int = 0) """
        pass

    def setTop(self, a0): # real signature unknown; restored from __doc__
        """ setTop(self, a0: float) """
        pass

    def timerEvent(self, *args, **kwargs): # real signature unknown
        pass

    def top(self): # real signature unknown; restored from __doc__
        """ top(self) -> float """
        return 0.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

    ScientificNotation = 1
    StandardNotation = 0


