Tagged Questions

2
votes
3answers
272 views

restrict movable area of qgraphicsitem

Is there a way to restrict the area where a QGraphicsItem like QRect can be moved when setFlag(ItemIsMovable) is set? I'm new to pyqt and trying to find a way to move an item with the mouse, and the ...
1
vote
1answer
56 views

Set QGraphicsTextItem origin in PyQt

If I want to place one letter (a QGraphicsTextItem) in a QGraphicsView, is there any way I can set the text to display in the middle of the coordinates I specify? If I use ...
1
vote
2answers
194 views

Unable to fully remove border of PyQt QGraphicsView

I have tried calling self.setStyleSheet("background: transparent; border: transparent;") on a QGraphicsView, but it still leaves a 1 pixel border on the top edge. I have also tried replacing border: ...
1
vote
1answer
134 views

QGraphicsView error - Trying to show a jpg with Python

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: " ...
1
vote
3answers
1k views

QGraphicsView with automatic items placing

I would like to write an asset browser using QGraphicsView. It's a little different from examples using QGraphicsView and QGraphicsItems, because I want only one scrollbar and I want items to move ...
0
votes
0answers
38 views

Maintaining view/scroll position in QGraphicsView when swapping images

I'm having trouble with zooming TIFF images loaded into a QGraphicsView with QGraphicsPixmapItem. The problem is more maintaining image quality along with having a zoom speed that doesn't make the ...
0
votes
1answer
221 views

How can I layer images in PyQt using QGraphicsScene and QGraphicsView

Let's say I have two images, image A and image B. Using QGraphicsScene and QGraphicsView, how can I draw image A to the background, and layer image B on top of image A? Thanks in advance.
0
votes
1answer
516 views

How to improve QGraphicsView performance in a 2D static scene with many items? (no way to solve it?)

If understood correctly, QGraphicsView is supposed to handle million items efficiently. In my application, I only have some few thousand and the performance is already very bad. When the View is ...
0
votes
1answer
446 views

QGraphicsView not displaying QGraphicsItems

Using PyQt4. My goal is to load in "parts" of a .png, assign them to QGraphicsItems, add them to the scene, and have the QGraphicsView display them. (Right now I don't care about their coordinates, ...