QtQuickControls2.pyi 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # Copyright (C) 2022 The Qt Company Ltd.
  2. # SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
  3. """
  4. This file contains the exact signatures for all functions in module
  5. PySide6.QtQuickControls2, except for defaults which are replaced by "...".
  6. """
  7. # mypy: disable-error-code="override, overload-overlap"
  8. # Module `PySide6.QtQuickControls2`
  9. import PySide6.QtQuickControls2
  10. import PySide6.QtCore
  11. import typing
  12. from shiboken6 import Shiboken
  13. class QIntList: ...
  14. class QQuickAttachedPropertyPropagator(PySide6.QtCore.QObject):
  15. def __init__(self, /, parent: PySide6.QtCore.QObject | None = ...) -> None: ...
  16. def attachedChildren(self, /) -> typing.List[PySide6.QtQuickControls2.QQuickAttachedPropertyPropagator]: ...
  17. def attachedParent(self, /) -> PySide6.QtQuickControls2.QQuickAttachedPropertyPropagator: ...
  18. def attachedParentChange(self, newParent: PySide6.QtQuickControls2.QQuickAttachedPropertyPropagator, oldParent: PySide6.QtQuickControls2.QQuickAttachedPropertyPropagator, /) -> None: ...
  19. def initialize(self, /) -> None: ...
  20. class QQuickStyle(Shiboken.Object):
  21. def __init__(self, /) -> None: ...
  22. @staticmethod
  23. def name() -> str: ...
  24. @staticmethod
  25. def setFallbackStyle(style: str, /) -> None: ...
  26. @staticmethod
  27. def setStyle(style: str, /) -> None: ...
  28. # eof