For QGraphicsScene::drawItems the reference says:

Reimplement this function to provide custom painting of all items for the scene; gaining complete control over how each item is drawn.

But this function is marked as obsolete. Is there any new equivalent method?

link|improve this question

27% accept rate
feedback

1 Answer

QGraphicsView::paintEvent() now calls

d->scene->d_func()->drawItems()

which means the method is part of class QGraphicsScenePrivate which you cannot override afaik.

If you need to change the way your items are drawn, first try to think of another way (i.e. a solution which does not require stepping into the drawItems() method). If you can't find any solution like that, your only chance is reactivating the pre-4.6-behaviour by setting

QGraphicsView::setOptimizationFlag( QGraphicsView::IndirectPainting )
link|improve this answer
What I'm looking are two things: 1.- A Way to know the progress of painting 2.- A way to stop the process of painting And ... I would like to use a future deleted method .... Thanks Tim – tonnot Nov 25 '11 at 12:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.