# encoding: utf-8
# module PyQt5.QtGui
# from C:\Programs\Python\Python313\Lib\site-packages\PyQt5\QtGui.pyd
# by generator 1.147
# no doc

# imports
import PyQt5.QtCore as __PyQt5_QtCore
import sip as __sip


class QPaintDevice(__sip.simplewrapper):
    """ QPaintDevice() """
    def colorCount(self): # real signature unknown; restored from __doc__
        """ colorCount(self) -> int """
        return 0

    def depth(self): # real signature unknown; restored from __doc__
        """ depth(self) -> int """
        return 0

    def devicePixelRatio(self): # real signature unknown; restored from __doc__
        """ devicePixelRatio(self) -> int """
        return 0

    def devicePixelRatioF(self): # real signature unknown; restored from __doc__
        """ devicePixelRatioF(self) -> float """
        return 0.0

    def devicePixelRatioFScale(self): # real signature unknown; restored from __doc__
        """ devicePixelRatioFScale() -> float """
        return 0.0

    def height(self): # real signature unknown; restored from __doc__
        """ height(self) -> int """
        return 0

    def heightMM(self): # real signature unknown; restored from __doc__
        """ heightMM(self) -> int """
        return 0

    def logicalDpiX(self): # real signature unknown; restored from __doc__
        """ logicalDpiX(self) -> int """
        return 0

    def logicalDpiY(self): # real signature unknown; restored from __doc__
        """ logicalDpiY(self) -> int """
        return 0

    def metric(self, metric): # real signature unknown; restored from __doc__
        """ metric(self, metric: QPaintDevice.PaintDeviceMetric) -> int """
        return 0

    def paintEngine(self): # real signature unknown; restored from __doc__
        """ paintEngine(self) -> Optional[QPaintEngine] """
        pass

    def paintingActive(self): # real signature unknown; restored from __doc__
        """ paintingActive(self) -> bool """
        return False

    def physicalDpiX(self): # real signature unknown; restored from __doc__
        """ physicalDpiX(self) -> int """
        return 0

    def physicalDpiY(self): # real signature unknown; restored from __doc__
        """ physicalDpiY(self) -> int """
        return 0

    def width(self): # real signature unknown; restored from __doc__
        """ width(self) -> int """
        return 0

    def widthMM(self): # real signature unknown; restored from __doc__
        """ widthMM(self) -> int """
        return 0

    def __init__(self): # real signature unknown; restored from __doc__
        pass

    __weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """list of weak references to the object"""


    PdmDepth = 6
    PdmDevicePixelRatio = 11
    PdmDevicePixelRatioScaled = 12
    PdmDpiX = 7
    PdmDpiY = 8
    PdmHeight = 2
    PdmHeightMM = 4
    PdmNumColors = 5
    PdmPhysicalDpiX = 9
    PdmPhysicalDpiY = 10
    PdmWidth = 1
    PdmWidthMM = 3


