##// END OF EJS Templates
Merge pull request #1768 from minrk/parallelmagics...
Merge pull request #1768 from minrk/parallelmagics Update parallel magics They now display all output, so you can do parallel plotting or other actions with complex display. The `px` magic has now both line and cell modes, and in cell mode finer control has been added about how to collate output from multiple engines. Tests, docs and example notebook added.

File last commit:

r4428:a610b53b
r7060:a1360828 merge
Show More
gui-qt.py
41 lines | 1020 B | text/x-python | PythonLexer
Fernando Perez
Added a Qt4 simple example to test %gui functionality....
r2211 #!/usr/bin/env python
"""Simple Qt4 example to manually test event loop integration.
This is meant to run tests manually in ipython as:
In [5]: %gui qt
In [6]: %run gui-qt.py
Ref: Modified from http://zetcode.com/tutorials/pyqt4/firstprograms/
"""
import sys
from PyQt4 import QtGui, QtCore
class SimpleWindow(QtGui.QWidget):
def __init__(self, parent=None):
QtGui.QWidget.__init__(self, parent)
self.setGeometry(300, 300, 200, 80)
self.setWindowTitle('Hello World')
quit = QtGui.QPushButton('Close', self)
quit.setGeometry(10, 10, 60, 35)
self.connect(quit, QtCore.SIGNAL('clicked()'),
self, QtCore.SLOT('close()'))
if __name__ == '__main__':
app = QtCore.QCoreApplication.instance()
if app is None:
app = QtGui.QApplication([])
sw = SimpleWindow()
sw.show()
Fernando Perez
In-progress work on trying to get a robust inputhook setup....
r2213 try:
Fernando Perez
Make gui support code and examples uniform and all working correctly....
r4419 from IPython.lib.guisupport import start_event_loop_qt4
start_event_loop_qt4(app)
Fernando Perez
In-progress work on trying to get a robust inputhook setup....
r2213 except ImportError:
app.exec_()