| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- # Copyright (C) 2022 The Qt Company Ltd.
- # SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
- """
- This file contains the exact signatures for all functions in module
- PySide6.QtQuickControls2, except for defaults which are replaced by "...".
- """
- # mypy: disable-error-code="override, overload-overlap"
- # Module `PySide6.QtQuickControls2`
- import PySide6.QtQuickControls2
- import PySide6.QtCore
- import typing
- from shiboken6 import Shiboken
- class QIntList: ...
- class QQuickAttachedPropertyPropagator(PySide6.QtCore.QObject):
- def __init__(self, /, parent: PySide6.QtCore.QObject | None = ...) -> None: ...
- def attachedChildren(self, /) -> typing.List[PySide6.QtQuickControls2.QQuickAttachedPropertyPropagator]: ...
- def attachedParent(self, /) -> PySide6.QtQuickControls2.QQuickAttachedPropertyPropagator: ...
- def attachedParentChange(self, newParent: PySide6.QtQuickControls2.QQuickAttachedPropertyPropagator, oldParent: PySide6.QtQuickControls2.QQuickAttachedPropertyPropagator, /) -> None: ...
- def initialize(self, /) -> None: ...
- class QQuickStyle(Shiboken.Object):
- def __init__(self, /) -> None: ...
- @staticmethod
- def name() -> str: ...
- @staticmethod
- def setFallbackStyle(style: str, /) -> None: ...
- @staticmethod
- def setStyle(style: str, /) -> None: ...
- # eof
|