Similar to google.com/maps, I would like it so that if my mouse is over a QGraphicsItem, then when I move the wheelmouse forward and back, the area of the image under the mouse is what is centered in my QGraphicsView.
Can I accomplish this in the wheelEvent method of the custom QGraphicsIte I have created?
I have some code like this
update();
qreal factor = 1.2;
if (event->delta() < 0)
factor = 1.0 / factor;
scale(factor, factor);
scaleFactor *=factor;
this->scene()->setSceneRect(0,0,this->boundingRect().width(), this->boundingRect().height());
What can I add to this to give the desired effect?
As an example, in google maps, if you hold your mouse over utah, and keep zooming in with the wheel mouse, eventually Utah is the only thing left in the viewport.
Let's rephrase your aim in a more direct way. On the wheel event:
You've implemented (1) with the scale call. What remains is (2). To scroll the view to a certain location, you need to do:
This scrolls the scene so (x, y) is at the top-left corner of the view. But you want (x, y) to be at the mouse position (in relation to the QGraphicsView). So you need to scroll to (x-mx, y-my) where (mx, my) is the mouse position in relation to the QGraphicsView and (x, y) is the scene position that was under the mouse before the wheel event.
This is untested and may be wrong in the details (for example in the exact behavior of QScrollBar::setValue) but the math concept is correct so it should be enough for you to get it working.