在官方的例子中"在QT中嵌入mayavi" http://docs.enthought.com/mayavi/mayavi/auto/example_qt_embedding.html#example-qt-embedding, 主要代码说:
if __name__ == "__main__":
# Don't create a new QApplication, it would unhook the Events
# set by Traits on the existing QApplication. Simply use the
# '.instance()' method to retrieve the existing one.
app = QtGui.QApplication.instance()
...
我很困惑。什么是现有的QApplication"?这是实际代码的第一行,没有现有的QApplication。此外,在现有QApplication"?
上由Traits设置的"事件是什么?