You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
846 B
24 lines
846 B
""" A Qt API selector that can be used to switch between PyQt and PySide.
|
|
|
|
This uses the ETS 4.0 selection pattern of:
|
|
PySide first, PyQt with API v2. second.
|
|
|
|
Do not use this if you need PyQt with the old QString/QVariant API.
|
|
"""
|
|
|
|
import os
|
|
|
|
from pydev_ipython.qt_loaders import (load_qt, QT_API_PYSIDE,
|
|
QT_API_PYQT, QT_API_PYQT5, QT_API_PYQT6)
|
|
|
|
QT_API = os.environ.get('QT_API', None)
|
|
if QT_API not in [QT_API_PYSIDE, QT_API_PYQT, QT_API_PYQT5, QT_API_PYQT6, None]:
|
|
raise RuntimeError("Invalid Qt API %r, valid values are: %r, %r, %r, %r" %
|
|
(QT_API, QT_API_PYSIDE, QT_API_PYQT, QT_API_PYQT5, QT_API_PYQT6))
|
|
if QT_API is None:
|
|
api_opts = [QT_API_PYSIDE, QT_API_PYQT, QT_API_PYQT5, QT_API_PYQT6]
|
|
else:
|
|
api_opts = [QT_API]
|
|
|
|
QtCore, QtGui, QtSvg, QT_API = load_qt(api_opts)
|