# encoding: utf-8
# module PyQt5.QtWidgets
# from C:\Programs\Python\Python311\Lib\site-packages\pyqt5-5.15.9-py3.11-win-amd64.egg\PyQt5\QtWidgets.pyd
# by generator 1.147
# no doc

# imports
import PyQt5.QtCore as __PyQt5_QtCore
import PyQt5.QtGui as __PyQt5_QtGui
import sip as __sip


from .QGraphicsLayoutItem import QGraphicsLayoutItem

class QGraphicsLayout(QGraphicsLayoutItem):
    """ QGraphicsLayout(parent: typing.Optional[QGraphicsLayoutItem] = None) """
    def activate(self): # real signature unknown; restored from __doc__
        """ activate(self) """
        pass

    def addChildLayoutItem(self, layoutItem): # real signature unknown; restored from __doc__
        """ addChildLayoutItem(self, layoutItem: QGraphicsLayoutItem) """
        pass

    def count(self): # real signature unknown; restored from __doc__
        """ count(self) -> int """
        return 0

    def getContentsMargins(self): # real signature unknown; restored from __doc__
        """ getContentsMargins(self) -> Tuple[float, float, float, float] """
        pass

    def invalidate(self): # real signature unknown; restored from __doc__
        """ invalidate(self) """
        pass

    def isActivated(self): # real signature unknown; restored from __doc__
        """ isActivated(self) -> bool """
        return False

    def itemAt(self, i): # real signature unknown; restored from __doc__
        """ itemAt(self, i: int) -> QGraphicsLayoutItem """
        return QGraphicsLayoutItem

    def removeAt(self, index): # real signature unknown; restored from __doc__
        """ removeAt(self, index: int) """
        pass

    def setContentsMargins(self, left, top, right, bottom): # real signature unknown; restored from __doc__
        """ setContentsMargins(self, left: float, top: float, right: float, bottom: float) """
        pass

    def setGraphicsItem(self, *args, **kwargs): # real signature unknown
        pass

    def setOwnedByLayout(self, *args, **kwargs): # real signature unknown
        pass

    def sizeHint(self, *args, **kwargs): # real signature unknown
        pass

    def updateGeometry(self): # real signature unknown; restored from __doc__
        """ updateGeometry(self) """
        pass

    def widgetEvent(self, e): # real signature unknown; restored from __doc__
        """ widgetEvent(self, e: QEvent) """
        pass

    def __init__(self, parent, QGraphicsLayoutItem=None, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        pass

    def __len__(self, *args, **kwargs): # real signature unknown
        """ Return len(self). """
        pass


