I have a QgraphicsScene in which I add some custom QGraphicsItems. The zooming function I took out of the Qt example for elastic nodes:


    void renderArea::wheelEvent(QWheelEvent *event)
    {
        scaleView(pow((double)2, -event->delta() / 240.0));
        scene->update();
    }

    void renderArea::scaleView(qreal scaleFactor)
    {
        qreal factor = transform().scale(scaleFactor, scaleFactor).mapRect(QRectF(0, 0, 1, 1)).width();
        if (factor  100)
            return;

        scale(scaleFactor, scaleFactor);
    }

    void renderArea::zoomIn()
    {
        scaleView(qreal(1.2));
    }

    void renderArea::zoomOut()
    {
        scaleView(1 / qreal(1.2));
    }

But in my application when zooming in too much the items are not displayed anymore. I thought that the scene wasn't updating each time so I added the update() function of the scene. But it is still not working.

Any ideas why is this happening and how I could solve it?

link|improve this question

69% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.