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 45 46 47 48 49 50 51 52 53
|
# -*- coding: utf-8 -*-
# Copyright (c) Vispy Development Team. All Rights Reserved.
# Distributed under the (new) BSD License. See LICENSE.txt for more info.
"""PySide6 proxy backend for the qt backend.
Based on PySide2 backend.
"""
import sys
from .. import backends
from ...util import logger
from ... import config
USE_EGL = config['gl_backend'].lower().startswith('es')
try:
# Try importing (QtOpenGL first to fail without import QtCore)
if not USE_EGL:
from PySide6 import QtOpenGL # noqa
from PySide6 import QtGui, QtCore # noqa
except Exception as exp:
# Fail: this backend cannot be used
available, testable, why_not, which = False, False, str(exp), None
else:
# Success
available, testable, why_not = True, True, None
# What is this for? PyQt5 sets this to true, PySide sets this to false
has_uic = False
import PySide6
# PySide6 doesn't have qWait as well, redefines it
from PySide6 import QtTest
@staticmethod
def qWait(msec):
import time
start = time.time()
PySide6.QtWidgets.QApplication.processEvents()
while time.time() < start + msec * 0.001:
PySide6.QtWidgets.QApplication.processEvents()
QtTest.QTest.qWait = qWait
which = ('PySide6', PySide6.__version__, QtCore.__version__)
# Remove _qt module to force an import even if it was already imported
sys.modules.pop(__name__.replace('_pyside6', '_qt'), None)
# Import _qt. Keep a ref to the module object!
if backends.qt_lib is None:
backends.qt_lib = 'pyside6' # Signal to _qt what it should import
from . import _qt # noqa
from ._qt import * # noqa
else:
logger.warning('%s already imported, cannot switch to %s'
% (backends.qt_lib, 'pyside6'))
|