I have created a QWidget
with lots of children widgets in it. In order to look at the whole picture I want to scale the QWidget
down. Then scale it back. However the QWidget
doesn't have a scale
interface.
The QGraphicsView
has a scale
interface so I tried to put the QWidget
in a QGraphicsView
. The scale works, however it's very cumbersome to do drag&drop in a QGraphicsView
(There is a question on stackoverflow about this).
So are there any way else to scale a QWidget
?