Quote Originally Posted by roband915 View Post
That didn´t work either I´m afraid
What happened then ?

Speaking of zoom method, here is how I usually do :

Qt Code:
  1. void MyView::wheelEvent(QWheelEvent *e)
  2. {
  3. const qreal zoomStep = 0.25 ;
  4. double zoomFactor = pow( 2.0, e->delta() / 8.0 / 15.0 * zoomStep ) ;
  5. scale(zoomFactor, zoomFactor);
  6.  
  7. e->setModifiers(Qt::NoModifier) ; // to avoid [CTRL+wheel] behave like QAbstractScrollArea, maybe not useful for everyone
  8. QGraphicsView::wheelEvent(e) ;
  9. }
To copy to clipboard, switch view to plain text mode 

Plus, you can choose to zoom on view's center or under cursor using QGraphiscView::transformationAnchor