I am new to Qt in general and QGraphicsView in particular. When I rotate a Qgraphicspixmapitem in it, it appears to move also. I have figured out that this has something to do with the QGraphicsView adjusting to keep the scene in view.
I have removed the scroll bars because I don't need them and I want parts of the scene to go out of view without the QGraphicsView changing its view. In other words, I want everything in my QGraphicsView to have absolute positions and I don't want the QGraphicsView to change its viewpoint (or whatever its called, do correct me on the terminologies).
|
| ||||
|
feedback
|
|
The function you need is QGraphicsView::setSceneRect :
So, set the sceneRect for your view to the rectangle of the scene that you want in the view, and all should be good. | |||
|
feedback
|