QGraphicsViewe without any "Frame" in Full screen - how to?
Unsolved
General and Desktop
-
Put it in a
QDockWidget
or in its own (maybe even frameless/borderless)QWidget
.And how to come back to normal view mode?
You have to find a way, since
FramelessWindowHint
removes all window/frame decorations and shows only the rendered widget itself.
( maybe aQWidget
with a layout and yourQGraphicsView
+ some control buttons) -
@ademmler QGraphicsView inherits QFrame.
step1: remove it from the current layout
step2: set its parent to nullptr
step3: save its flags and size
step4: set its size to full screen
step5: set flag to show it on the topreverse these steps when it is set back.