Qt 6.11 is out! See what's new in the release
blog
Changing window size and setting widgets size,placement based on screen size
General and Desktop
1
Posts
1
Posters
619
Views
1
Watching
-
Hai, after a long time,
I am using QT 5.0.1 and QT-creator 2.6.2
In my application i have small LCD with size of 240X320 and dvi connector to connect Desktop LCD.
my question is how to change the window size according to screen size and also how to place the widgets based on screen size
to knw the desktop size I have below code
@
QDesktopWidget widget;
QRect mainScreenSize = widget.availableGeometry(widget.primaryScreen());
qDebug()<<mainScreenSize;
w.setGeometry(mainScreenSize);
@
but how can i set the widgets to that size
please any one suggetion