Hi,
I'm using a QGraphicsScene with several QGraphicsObjects of different zValue.
Now I have made a Control Widget (a few QPushbuttons and QComboBoxes and Layouts on a QWidget) with QCreator and added it to the
Qt Code:
  1. QGraphicsScene with scene->addWidget(controlWidget);
To copy to clipboard, switch view to plain text mode 
The problem is: the widget is being overlapped by most of the other objects in the scene.

I tried the QWidget::raise(); method to no avail at all. Is there any way to make QWidget appear in front of all QGraphicsScene members?
I cannot ensure that the widget is addet as last member to the scene.

I am running out of ideas :-( Any help is welcome, thank you for reading!

Sebastian