1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
"""
This stub file is to aid in the PyCharm auto-completion of the Qt imports.
"""
from typing import Union
try:
from PyQt5 import QtCore, QtGui, QtWidgets
QtCore = QtCore
QtGui = QtGui
QtWidgets = QtWidgets
except ImportError:
try:
from PyQt6 import QtCore, QtGui, QtWidgets
QtCore = QtCore
QtGui = QtGui
QtWidgets = QtWidgets
except ImportError:
try:
from PySide2 import QtCore, QtGui, QtWidgets
QtCore = QtCore
QtGui = QtGui
QtWidgets = QtWidgets
except ImportError:
try:
from PySide6 import QtCore, QtGui, QtWidgets
QtCore = QtCore
QtGui = QtGui
QtWidgets = QtWidgets
except ImportError as e:
raise ImportError("No suitable qt binding found") from e
App: QtWidgets.QApplication
VERSION_INFO: str
QT_LIB: str
QtVersion: str
def exec_() -> QtWidgets.QApplication: ...
def mkQApp(name: Union[str, None] = None) -> QtWidgets.QApplication: ...
def isQObjectAlive(obj: QtCore.QObject) -> bool: ...
|