Tagged Questions

4
votes
1answer
904 views

How to use Qt Model/View framework with the Graphics View framework

I am working on a mapping application and need to display the data objects using a table, a form and as graphical objects in the map. I'm using PyQt, but that's not really important as this is a Qt ...
2
votes
1answer
512 views

Make QGraphicsView do smooth centerOn

i am not really newbie in Qt, but there are a few things i don't know... I am programming in Python, but feel free to post your answers in ANY language. So, i have a few QGraphicsItem (s), positioned ...
2
votes
3answers
275 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
57 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
196 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
331 views

PyQt4 on Mac: QGraphicsView with OpenGL is flickering

under Mac OS X I have a problem with QGraphicsView and OpenGL. Sometimes, not everytime, when the QGraphicsView gets updated, then there is a flickering. Without OpenGL it's all fine. But I need ...
1
vote
2answers
589 views

Pyqt: How-to set item always in the center of a QGraphicsView when scrolling is possible?

I have a QGraphicsView. To that I added a QGraphicsScene and to that a added an QPixmap(*.jpeg) and QGraphicsEllipseItem(a circle). The QPixmap is much more bigger than the QGraphicsView, so scrolling ...
1
vote
1answer
205 views

PyQt QGraphicsView fails to setWindowIcon

I'm using sub-classed QGraphicsView's in an MDIArea I want to be able to change the icon of the window from 'within' the object, but it just seems to ignore me... no errors or warnings... it just ...
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
40 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
59 views

Super-imposing Scenes with QGraphicsView

I'm still something of a PyQt newbee - I've got a QGraphicsView that displays 3 different QGraphicScenes - they are switched using a dictionary. class MyScenes: def _initScenes(self): ...
0
votes
1answer
41 views

PyQt: Setting CompositionMode for QGraphicsItems (e.g. Multiply)

I tried this by reimplementing drawItems in QGraphicsView and QGraphicsScene, but nothing happens (it says to set the IndirectPainting Flag, but this gives me an error). Using the composition mode ...
0
votes
1answer
186 views

Qt: Using QTransform object for rotate differs from setting setRotation() in QGraphicsItem

While setting a QGraphicsItem rotation, I get different results upon the transformation origin point while using setRotation() and using: transform = QTransform() transform.rotate(myAngle) ...
0
votes
1answer
223 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
297 views

pyqt graphicsitem mouse enter event

I am trying to connect to the mouse-enter event of QGraphicsItems that are placed onto a QGraphicsScene and visualized through a QGraphicsView. From what I understand, the method to override for this ...
0
votes
1answer
468 views

How to anchor QGraphicsWidget/Item (make them static) on QGraphicsView

I want to make something like a hud. I have a QGraphicsScene with a huge QPixmap, that I added to a much smaller QGraphicsView. Now I need to add some control elements, like QLabel, QPushButton and ...
0
votes
1answer
450 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, ...