##// END OF EJS Templates
Add OS X input hook...
Add OS X input hook It almost works: not responsive due to input callback not waking app until window is interacted with

File last commit:

r21934:c0fffd17
r22159:11696ddc
Show More
qt.py
11 lines | 384 B | text/x-python | PythonLexer
from IPython.external.qt_for_kernel import QtCore, QtGui
def inputhook(context):
app = QtCore.QCoreApplication.instance()
if not app:
return
event_loop = QtCore.QEventLoop(app)
notifier = QtCore.QSocketNotifier(context.fileno(), QtCore.QSocketNotifier.Read)
notifier.setEnabled(True)
notifier.activated.connect(event_loop.exit)
event_loop.exec_()