qt.py
53 lines
| 2.0 KiB
| text/x-python
|
PythonLexer
Thomas Kluyver
|
r22654 | import sys | ||
Christoph
|
r24529 | import os | ||
Thomas Kluyver
|
r21934 | from IPython.external.qt_for_kernel import QtCore, QtGui | ||
Thomas Kluyver
|
r22707 | # If we create a QApplication, keep a reference to it so that it doesn't get | ||
# garbage collected. | ||||
_appref = None | ||||
Christoph
|
r24529 | _already_warned = False | ||
Thomas A Caswell
|
r23367 | |||
Thomas A Caswell
|
r25035 | |||
Thomas Kluyver
|
r21934 | def inputhook(context): | ||
Thomas Kluyver
|
r22707 | global _appref | ||
Thomas Kluyver
|
r21934 | app = QtCore.QCoreApplication.instance() | ||
if not app: | ||||
Christoph
|
r24529 | if sys.platform == 'linux': | ||
Christoph
|
r24533 | if not os.environ.get('DISPLAY') \ | ||
and not os.environ.get('WAYLAND_DISPLAY'): | ||||
Christoph
|
r24529 | import warnings | ||
global _already_warned | ||||
if not _already_warned: | ||||
_already_warned = True | ||||
warnings.warn( | ||||
luz.paz
|
r24559 | 'The DISPLAY or WAYLAND_DISPLAY environment variable is ' | ||
'not set or empty and Qt5 requires this environment ' | ||||
Christoph
|
r24533 | 'variable. Deactivate Qt5 code.' | ||
Christoph
|
r24529 | ) | ||
return | ||||
Thomas Kluyver
|
r22707 | _appref = app = QtGui.QApplication([" "]) | ||
Thomas Kluyver
|
r21934 | event_loop = QtCore.QEventLoop(app) | ||
Thomas Kluyver
|
r22654 | |||
if sys.platform == 'win32': | ||||
# The QSocketNotifier method doesn't appear to work on Windows. | ||||
# Use polling instead. | ||||
timer = QtCore.QTimer() | ||||
timer.timeout.connect(event_loop.quit) | ||||
while not context.input_is_ready(): | ||||
timer.start(50) # 50 ms | ||||
event_loop.exec_() | ||||
timer.stop() | ||||
else: | ||||
# On POSIX platforms, we can use a file descriptor to quit the event | ||||
# loop when there is input ready to read. | ||||
Thomas A Caswell
|
r23367 | notifier = QtCore.QSocketNotifier(context.fileno(), | ||
QtCore.QSocketNotifier.Read) | ||||
Thomas A Caswell
|
r25035 | try: | ||
# connect the callback we care about before we turn it on | ||||
notifier.activated.connect(event_loop.exit) | ||||
notifier.setEnabled(True) | ||||
# only start the event loop we are not already flipped | ||||
if not context.input_is_ready(): | ||||
event_loop.exec_() | ||||
finally: | ||||
notifier.setEnabled(False) | ||||