##// END OF EJS Templates
* Added ability to interrupt a kernel to FrontendWidget...
* Added ability to interrupt a kernel to FrontendWidget * Fixed bug where 'Cut' operation was permitted with keyboard shortcut * Fixed usability issue: calltips are now closed when Enter is pressed

File last commit:

r2669:d47877e3
r2687:022578d1
Show More
ipython_widget.py
100 lines | 3.4 KiB | text/x-python | PythonLexer
epatters
* Updated FrontendWidget to use BlockBreaker for parsing input...
r2630 # System library imports
from PyQt4 import QtCore, QtGui
# Local imports
epatters
* Created an IPythonWidget subclass of FrontendWidget to contain IPython specific functionality....
r2627 from frontend_widget import FrontendWidget
class IPythonWidget(FrontendWidget):
""" A FrontendWidget for an IPython kernel.
"""
#---------------------------------------------------------------------------
epatters
Minor comment cleanup.
r2669 # 'QObject' interface
epatters
* Created an IPythonWidget subclass of FrontendWidget to contain IPython specific functionality....
r2627 #---------------------------------------------------------------------------
epatters
* Added 'started_listening' and 'stopped_listening' signals to QtKernelManager. The FrontendWidget listens for these signals....
r2643 def __init__(self, parent=None):
super(IPythonWidget, self).__init__(parent)
epatters
* Created an IPythonWidget subclass of FrontendWidget to contain IPython specific functionality....
r2627
self._magic_overrides = {}
epatters
Minor comment cleanup.
r2669 #---------------------------------------------------------------------------
# 'FrontendWidget' interface
#---------------------------------------------------------------------------
epatters
* Created an IPythonWidget subclass of FrontendWidget to contain IPython specific functionality....
r2627 def execute_source(self, source, hidden=False, interactive=False):
""" Reimplemented to override magic commands.
"""
magic_source = source.strip()
if magic_source.startswith('%'):
magic_source = magic_source[1:]
magic, sep, arguments = magic_source.partition(' ')
if not magic:
magic = magic_source
callback = self._magic_overrides.get(magic)
if callback:
output = callback(arguments)
if output:
self.appendPlainText(output)
self._show_prompt('>>> ')
return True
else:
return super(IPythonWidget, self).execute_source(source, hidden,
interactive)
#---------------------------------------------------------------------------
# 'IPythonWidget' interface
#---------------------------------------------------------------------------
def set_magic_override(self, magic, callback):
""" Overrides an IPython magic command. This magic will be intercepted
by the frontend rather than passed on to the kernel and 'callback'
will be called with a single argument: a string of argument(s) for
the magic. The callback can (optionally) return text to print to the
console.
"""
self._magic_overrides[magic] = callback
def remove_magic_override(self, magic):
""" Removes the override for the specified magic, if there is one.
"""
try:
del self._magic_overrides[magic]
except KeyError:
pass
if __name__ == '__main__':
epatters
* Added a function for spawning a localhost kernel in a new process on random ports....
r2641 import signal
epatters
* Implemented a proper main() function for kernel.py that reads command line input....
r2667 from IPython.frontend.qt.kernelmanager import QtKernelManager
epatters
* Added a function for spawning a localhost kernel in a new process on random ports....
r2641
epatters
* Implemented a proper main() function for kernel.py that reads command line input....
r2667 # Create a KernelManager.
kernel_manager = QtKernelManager()
kernel_manager.start_kernel()
epatters
* Added a function for spawning a localhost kernel in a new process on random ports....
r2641 kernel_manager.start_listening()
epatters
* Created an IPythonWidget subclass of FrontendWidget to contain IPython specific functionality....
r2627
epatters
* Implemented a proper main() function for kernel.py that reads command line input....
r2667 # Don't let Qt or ZMQ swallow KeyboardInterupts.
# FIXME: Gah, ZMQ swallows even custom signal handlers. So for now we leave
# behind a kernel process when Ctrl-C is pressed.
#def sigint_hook(signum, frame):
# QtGui.qApp.quit()
#signal.signal(signal.SIGINT, sigint_hook)
signal.signal(signal.SIGINT, signal.SIG_DFL)
# Create the application, making sure to clean up nicely when we exit.
epatters
* Added a function for spawning a localhost kernel in a new process on random ports....
r2641 app = QtGui.QApplication([])
epatters
* Implemented a proper main() function for kernel.py that reads command line input....
r2667 def quit_hook():
kernel_manager.stop_listening()
kernel_manager.kill_kernel()
app.aboutToQuit.connect(quit_hook)
# Launch the application.
epatters
* Added 'started_listening' and 'stopped_listening' signals to QtKernelManager. The FrontendWidget listens for these signals....
r2643 widget = IPythonWidget()
widget.kernel_manager = kernel_manager
epatters
* Created an IPythonWidget subclass of FrontendWidget to contain IPython specific functionality....
r2627 widget.setWindowTitle('Python')
widget.resize(640, 480)
widget.show()
epatters
* Added a function for spawning a localhost kernel in a new process on random ports....
r2641 app.exec_()
epatters
* Implemented a proper main() function for kernel.py that reads command line input....
r2667
epatters
* Created an IPythonWidget subclass of FrontendWidget to contain IPython specific functionality....
r2627