Yes thanks guys - it works wonderfull

Code.

Qt Code:
  1. void RuletV1::on_pushButton_clicked()
  2. {
  3. QTransform tra;
  4. qreal dx = 50;
  5. qreal dy = 50;
  6. tra.translate(dx,dy);
  7. tra.rotate(Sumarum(30)); //every time add 30 and return
  8. tra.translate(-dx,-dy);
  9. dynamic_cast<CircleItem*>(m_elipsa)->setTransform(tra);
  10. }
To copy to clipboard, switch view to plain text mode 

Qt Code:
  1. qreal RuletV1::Sumarum(qreal num) { return myangle+=num; }
To copy to clipboard, switch view to plain text mode 

//public: qreal Sumarum(qreal Broj);
//private: qreal myangle;

................
Side questions -> just a little direction needed

1) If i recall CSS i would make elastic design web pages - i need to do the same in QT: Resizing the window (QMainWindow) needs to resize all elements on the view (QGraphicsView)

2) If i want to rotate my circle for a few seconds, what are my possibilites? Is there a built-in mechanism? wich class if apropriate
.........................

THX