I'm using Python 3.2 with Eric5 and QTDesigner to try and display a jpg in a QGraphicsView scene. The following code gives me a The file could not be opened. Reason: [Errno 22] Invalid argument: " error on the first pass and then ends with a The debugged program raised the exception unhandled AttributeError "'MyForm' object has no attribute 'QGraphicsView'" File: , Line: 17
The referenced screentest.ui file is just a simple QGraphicsView object box on a form.
Any suggestions are greatly appreciated.
#UIGraphicTest.py
import sys
# from PyQt4 import QtCore
from PyQt4 import QtGui
from screentest import Ui_MainWindow
class MyForm(QtGui.QMainWindow):
def __init__(self, parent=None):
QtGui.QWidget.__init__(self, parent)
self.ui = Ui_MainWindow()
self.ui.setupUi(self)
if __name__ == "__main__":
app = QtGui.QApplication(sys.argv)
myapp = MyForm()
grview = myapp.QGraphicsView()
scene = myapp.QGraphicsScene()
scene.addPixmap(QtGui.QPixmap('att-logo.jpg'))
grview.setScene(scene)
myapp.show()
sys.exit(app.exec_())
.pyGUI file? You should have given theQGraphicsViewa name. – Blender Apr 27 '11 at 21:27