I'm in charge of a large-ish (100+KLOC) Qt app with dozens of windows and hundreds of different types of widgets in it.
Today, a user asked me if there was any way to make some of the app's larger windows fit better on his 13" laptop's display.
Of course there are ways to make the windows more space-efficient, reorganize the GUI to allow more showing/hiding of various things, use a smaller font, and so on... but I think what he really wants is a way to simply scale the entire window uniformly down by a certain percent.... an effect something like the what Apple's Expose does, or what some VNC clients do.
So my question is... is there any way to tell Qt to scale an entire window down by x% that doesn't involve modifying/redesigning the majority of the codebase? I know that QPainter has a setScale() method, and QGraphicsView allows nice global scaling, but my app is of the hierarchy-of-QWidgets variety, so I would need a way to scale the entire hierarchy, not just scale within a particular QWidget's canvas.