I have written code for my graph and it works fine, but when I need to resize it, problems start.
Resize event doesn't fit my QGraphicScene to QGraphicsView, but same code in paint event works fine.
I can't use paint event, 'cause it makes recursive painting in symbian(It works fine in desktop).
Resize event works fine if I resize window after first run, but I wan't to fit scene in my view from first run to end of program.
Here is pics of resizeEvent:

and paintEvent:

Both event's have same code inside.
Thanks in advance.
paintEventis called right afterresizeEvent, so why don't you let the paint stuff in thepaintEventand just change members that need to be adapted to the new size in theresizeEvent... you should not paint anything in theresizeEventanyway ... Can you explain your "I can't use paint event, 'cause it makes recursive painting in symbian" ? – vrince Jul 11 '11 at 17:44