Show More
@@ -1,25 +1,30 b'' | |||
|
1 | 1 | import sys |
|
2 | 2 | from IPython.external.qt_for_kernel import QtCore, QtGui |
|
3 | 3 | |
|
4 | # If we create a QApplication, keep a reference to it so that it doesn't get | |
|
5 | # garbage collected. | |
|
6 | _appref = None | |
|
7 | ||
|
4 | 8 | def inputhook(context): |
|
9 | global _appref | |
|
5 | 10 | app = QtCore.QCoreApplication.instance() |
|
6 | 11 | if not app: |
|
7 | return | |
|
12 | _appref = app = QtGui.QApplication([" "]) | |
|
8 | 13 | event_loop = QtCore.QEventLoop(app) |
|
9 | 14 | |
|
10 | 15 | if sys.platform == 'win32': |
|
11 | 16 | # The QSocketNotifier method doesn't appear to work on Windows. |
|
12 | 17 | # Use polling instead. |
|
13 | 18 | timer = QtCore.QTimer() |
|
14 | 19 | timer.timeout.connect(event_loop.quit) |
|
15 | 20 | while not context.input_is_ready(): |
|
16 | 21 | timer.start(50) # 50 ms |
|
17 | 22 | event_loop.exec_() |
|
18 | 23 | timer.stop() |
|
19 | 24 | else: |
|
20 | 25 | # On POSIX platforms, we can use a file descriptor to quit the event |
|
21 | 26 | # loop when there is input ready to read. |
|
22 | 27 | notifier = QtCore.QSocketNotifier(context.fileno(), QtCore.QSocketNotifier.Read) |
|
23 | 28 | notifier.setEnabled(True) |
|
24 | 29 | notifier.activated.connect(event_loop.exit) |
|
25 | 30 | event_loop.exec_() |
General Comments 0
You need to be logged in to leave comments.
Login now