Rotating a QDialog widget
Unsolved
General and Desktop
-
I am in need to ratate the entire output of the display, I did in this way :
if rotate != 0 : scene = QGraphicScene() view = QGraphicView() view = setGeometry(mainFrameWindow.geometry()) scene.addWidget(MainFrameWindow.pageMain) view.setScene(scene) view.rotate(rotate) view.mode(0) else: MainFrameWindow.pageMain.show()
with rotate in range 0 to 270, and it is working fine.
The problem is that in my application i have also QDialog windows, and I din't find any way to rotate them too.
Have someone of you ever faced this kind of problem?