Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Good afternoon. I have a full screen stretch widget QGraphicsView. Is it possible to hang labels and buttons on top of it in some places?
Hi yes it is. Just use the view as parent and it will be on top.
QPushButton *button = new QPushButton("Im on top!",view); button->move( 100, 0); // use move to move it around