pyside QGraphicsScene:为什么它不起作用?

时间:2012-01-28 09:21:33

标签: python qt pyside

我是Qt和PySyde的新手。我试图创建一个小应用程序来可视化sime线条图。 为了做到这一点,我尝试使用QGraphicsView和QGraphicsScene。我做了一个测试,以了解它是如何工作但事实并非如此。我google了很多,我不知道为什么它不起作用。 有人可以解释一下原因并给我带来光明吗?

我的代码(只想在场景上放置一行和一个示例文本):

#!/usr/bin/python
# -*- coding: utf-8 -*-

import sys
from PySide import QtGui, QtCore

class Example(QtGui.QWidget):

    def __init__(self):
        super(Example, self).__init__()
        self.initUI()

    def initUI(self):

        hbox=QtGui.QHBoxLayout()
        leftpanel=QtGui.QFrame()
        leftpanel.setGeometry(0,0,300,400)
        scene=QtGui.QGraphicsScene()
        scene.addText("Hello, world!")
        view=QtGui.QGraphicsView(scene,leftpanel)
        view.setSceneRect(0,0,300,400)
        pen=QtGui.QPen(QtCore.Qt.black,2)
        scene.addLine(0,0,200,200,pen)
        hbox.addWidget(leftpanel)
        rightpanel=QtGui.QFrame()
        hbox.addWidget(rightpanel)
        szoveg=QtGui.QLabel(rightpanel)
        szoveg.setText(u"Hello World!")
        self.setLayout(hbox)
        self.resize(500,500)
        self.setWindowTitle('blabla')
        self.show()


def main():

    app = QtGui.QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())


if __name__ == '__main__':
    main()

1 个答案:

答案 0 :(得分:2)

您需要在某处保存对场景的引用,例如在Example实例中:

def initUI(self):
    # ...
    scene = QtGui.QGraphicsScene()
    self.scene = scene  # save reference to scene, or it will be destroyed
    scene.addText("Hello, world!")
    # ...

在另一个功能中,您将能够向场景中添加更多项目:

def anotherFunction(self):     
    self.scene.addText("Another Hello, world!")