##// END OF EJS Templates
* Refactored payload handling mechanism....
* Refactored payload handling mechanism. * Paging is now integrated into the IPythonWidget. * The first cut at %edit support is now connected to the edit payload. This needs some more work.

File last commit:

r2765:1f32be1b
r2835:d0e5fafc
Show More
util.py
25 lines | 810 B | text/x-python | PythonLexer
""" Defines miscellaneous Qt-related helper classes and functions.
"""
# System library imports.
from PyQt4 import QtCore
# IPython imports.
from IPython.utils.traitlets import HasTraits
#-----------------------------------------------------------------------------
# Metaclasses
#-----------------------------------------------------------------------------
MetaHasTraits = type(HasTraits)
MetaQObject = type(QtCore.QObject)
# You can switch the order of the parents here and it doesn't seem to matter.
class MetaQObjectHasTraits(MetaQObject, MetaHasTraits):
""" A metaclass that inherits from the metaclasses of both HasTraits and
QObject.
Using this metaclass allows a class to inherit from both HasTraits and
QObject. See QtKernelManager for an example.
"""
pass