Hello to everyone,

Here is what i have:
- a QDialog, containing a QGraphicsView.
- The View is "containing" a Scene, in which i only put a QImage.
- In the QDialog, there is a Zoom out button which scale(.5, .5) on the View, and another Zoom in button which scale(2, 2) the View.

Now i wish to add another widget on the graphics view, which is on top of all others (The QImage), but which doesnt "scales". What is the best thing to do to achieve this?
In other words: do i have to only scale the QImage (So the other widget doesnt scales)? If yes, how?

Thanks a lot!
Pierre.