# encoding: utf-8
# module PyQt6.QtQuick3D
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\PyQt6\QtQuick3D.pyd
# by generator 1.147
# no doc

# imports
import PyQt6.QtCore as __PyQt6_QtCore
import PyQt6.QtQml as __PyQt6_QtQml
import PyQt6.sip as __PyQt6_sip


# no functions
# classes

class QQuick3D(__PyQt6_sip.simplewrapper):
    """
    QQuick3D()
    QQuick3D(a0: QQuick3D)
    """
    def idealSurfaceFormat(self, samples=-1): # real signature unknown; restored from __doc__
        """ idealSurfaceFormat(samples: int = -1) -> QSurfaceFormat """
        pass

    def __init__(self, a0=None): # real signature unknown; restored from __doc__ with multiple overloads
        pass

    __weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """list of weak references to the object (if defined)"""



class QQuick3DObject(__PyQt6_QtCore.QObject, __PyQt6_QtQml.QQmlParserStatus):
    # no doc
    def parentItem(self): # real signature unknown; restored from __doc__
        """ parentItem(self) -> QQuick3DObject """
        return QQuick3DObject

    def setParentItem(self, parentItem): # real signature unknown; restored from __doc__
        """ setParentItem(self, parentItem: QQuick3DObject) """
        pass

    def setState(self, state): # real signature unknown; restored from __doc__
        """ setState(self, state: str) """
        pass

    def state(self): # real signature unknown; restored from __doc__
        """ state(self) -> str """
        return ""

    def stateChanged(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 __init__(self, *args, **kwargs): # real signature unknown
        pass


class QQuick3DGeometry(QQuick3DObject):
    """ QQuick3DGeometry(parent: typing.Optional[QQuick3DObject] = None) """
    def addAttribute(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
        """
        addAttribute(self, semantic: QQuick3DGeometry.Attribute.Semantic, offset: int, componentType: QQuick3DGeometry.Attribute.ComponentType)
        addAttribute(self, att: QQuick3DGeometry.Attribute)
        """
        pass

    def addSubset(self, offset, count, boundsMin, boundsMax, name=''): # real signature unknown; restored from __doc__
        """ addSubset(self, offset: int, count: int, boundsMin: QVector3D, boundsMax: QVector3D, name: str = '') """
        pass

    def attribute(self, index): # real signature unknown; restored from __doc__
        """ attribute(self, index: int) -> QQuick3DGeometry.Attribute """
        pass

    def attributeCount(self): # real signature unknown; restored from __doc__
        """ attributeCount(self) -> int """
        return 0

    def boundsMax(self): # real signature unknown; restored from __doc__
        """ boundsMax(self) -> QVector3D """
        pass

    def boundsMin(self): # real signature unknown; restored from __doc__
        """ boundsMin(self) -> QVector3D """
        pass

    def childEvent(self, *args, **kwargs): # real signature unknown
        pass

    def classBegin(self, *args, **kwargs): # real signature unknown
        pass

    def clear(self): # real signature unknown; restored from __doc__
        """ clear(self) """
        pass

    def componentComplete(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 indexData(self): # real signature unknown; restored from __doc__
        """ indexData(self) -> QByteArray """
        pass

    def isSignalConnected(self, *args, **kwargs): # real signature unknown
        pass

    def primitiveType(self): # real signature unknown; restored from __doc__
        """ primitiveType(self) -> QQuick3DGeometry.PrimitiveType """
        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 setBounds(self, min, max): # real signature unknown; restored from __doc__
        """ setBounds(self, min: QVector3D, max: QVector3D) """
        pass

    def setIndexData(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
        """
        setIndexData(self, data: QByteArray)
        setIndexData(self, offset: int, data: QByteArray)
        """
        pass

    def setPrimitiveType(self, type): # real signature unknown; restored from __doc__
        """ setPrimitiveType(self, type: QQuick3DGeometry.PrimitiveType) """
        pass

    def setStride(self, stride): # real signature unknown; restored from __doc__
        """ setStride(self, stride: int) """
        pass

    def setVertexData(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
        """
        setVertexData(self, data: QByteArray)
        setVertexData(self, offset: int, data: QByteArray)
        """
        pass

    def stride(self): # real signature unknown; restored from __doc__
        """ stride(self) -> int """
        return 0

    def subsetBoundsMax(self, subset): # real signature unknown; restored from __doc__
        """ subsetBoundsMax(self, subset: int) -> QVector3D """
        pass

    def subsetBoundsMin(self, subset): # real signature unknown; restored from __doc__
        """ subsetBoundsMin(self, subset: int) -> QVector3D """
        pass

    def subsetCount(self, subset=None): # real signature unknown; restored from __doc__ with multiple overloads
        """
        subsetCount(self, subset: int) -> int
        subsetCount(self) -> int
        """
        return 0

    def subsetName(self, subset): # real signature unknown; restored from __doc__
        """ subsetName(self, subset: int) -> str """
        return ""

    def subsetOffset(self, subset): # real signature unknown; restored from __doc__
        """ subsetOffset(self, subset: int) -> int """
        return 0

    def timerEvent(self, *args, **kwargs): # real signature unknown
        pass

    def vertexData(self): # real signature unknown; restored from __doc__
        """ vertexData(self) -> QByteArray """
        pass

    def __init__(self, parent, QQuick3DObject=None, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        pass

    Attribute = None # (!) real value is "<class 'PyQt6.QtQuick3D.QQuick3DGeometry.Attribute'>"
    PrimitiveType = None # (!) real value is "<enum 'PrimitiveType'>"


class QQuick3DTextureData(QQuick3DObject):
    """ QQuick3DTextureData(parent: typing.Optional[QQuick3DObject] = None) """
    def childEvent(self, *args, **kwargs): # real signature unknown
        pass

    def classBegin(self, *args, **kwargs): # real signature unknown
        pass

    def componentComplete(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 format(self): # real signature unknown; restored from __doc__
        """ format(self) -> QQuick3DTextureData.Format """
        pass

    def hasTransparency(self): # real signature unknown; restored from __doc__
        """ hasTransparency(self) -> bool """
        return False

    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 setFormat(self, format): # real signature unknown; restored from __doc__
        """ setFormat(self, format: QQuick3DTextureData.Format) """
        pass

    def setHasTransparency(self, hasTransparency): # real signature unknown; restored from __doc__
        """ setHasTransparency(self, hasTransparency: bool) """
        pass

    def setSize(self, size): # real signature unknown; restored from __doc__
        """ setSize(self, size: QSize) """
        pass

    def setTextureData(self, data): # real signature unknown; restored from __doc__
        """ setTextureData(self, data: QByteArray) """
        pass

    def size(self): # real signature unknown; restored from __doc__
        """ size(self) -> QSize """
        pass

    def textureData(self): # real signature unknown; restored from __doc__
        """ textureData(self) -> QByteArray """
        pass

    def timerEvent(self, *args, **kwargs): # real signature unknown
        pass

    def __init__(self, parent, QQuick3DObject=None, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        pass

    Format = None # (!) real value is "<enum 'Format'>"


# variables with complex values

__loader__ = None # (!) real value is '<_frozen_importlib_external.ExtensionFileLoader object at 0x0000028920CFC750>'

__spec__ = None # (!) real value is "ModuleSpec(name='PyQt6.QtQuick3D', loader=<_frozen_importlib_external.ExtensionFileLoader object at 0x0000028920CFC750>, origin='C:\\\\Users\\\\xukai\\\\Downloads\\\\??2\\\\venv\\\\Lib\\\\site-packages\\\\PyQt6\\\\QtQuick3D.pyd')"

