Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

To reduce the amount of text I add the link to my previous topic about shift when drawing: Draw shift when drawing on QGraphicsView

So what is the problem now...

That solutions worked fine before I started to test it on another examples. First I added a lot of vertices (points) on view (about 1000 vertics) and the problem was that my scene hasn't any scroll bars, so 1000 vertices didn't fit on screen.

The code of my class constructor which inherits QGraphicsView was:

GraphWidget::GraphWidget(QWidget *parent)
    :QGraphicsView(parent)
{
    QGraphicsScene *scene = new QGraphicsScene(this);
    scene->setItemIndexMethod(QGraphicsScene::NoIndex);
    scene->setSceneRect(0, 0, 400, 400);
    setScene(scene);

    setCacheMode(CacheBackground);
    setViewportUpdateMode(BoundingRectViewportUpdate);
    setRenderHint(QPainter::Antialiasing);


    generateRandomNodes();
}

I've commented the line

scene->setSceneRect(0, 0, 400, 400);

and problem was fixed - all nodes were adding finely and I scrollbars appeared.

But then I realized that I encountered with the new problem: when I add vertices they [again] appear on wrong places with big shift. Actually when I add first vertex - it appears in the wrong place, when I add second - it appears in the wrong place too + previous vertex is shifted too.

Please help, what should I do? How to solve that and why is it happening?

Thanks.

share|improve this question

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.