I've this QT program i made working ok for the current pc resolution i'm using, 1280x1024
When i switched the resolution to 1024x768 and 800x600 i noticed that application was a display mess, with several things being cut off from the screen, very large widgets,etc
I searched the QT help and forum and noticed the sizehint function and Qdesktopwidget could be possible solutions for it, but at the moment i'm confused in how to use them properly to solve my problem

With Qdesktopwidget i can retrieve current screen resolution but this means that i have to resize and position "manually" all my widgets (which includes qlinedits, comboboxs,buttons, setspacings, etc) to behave accordingly to the one of the 3 resolutions, there's isn't a simplier way to do such thing? Thanks