Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
How to Center a Window on the Screen: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(Cleanup) |
||
(3 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{LangSwitch}} | |||
[[Category:snippets]] | [[Category:snippets]] | ||
<code> | |||
#include <QStyle> | |||
#include <QDesktopWidget> | |||
window->setGeometry( | |||
QStyle::alignedRect( | |||
Qt::LeftToRight, | |||
Qt::AlignCenter, | |||
window->size(), | |||
qApp->desktop()->availableGeometry() | |||
) | |||
); | |||
</code> |
Latest revision as of 12:15, 28 June 2015
En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh
#include <QStyle>
#include <QDesktopWidget>
window->setGeometry(
QStyle::alignedRect(
Qt::LeftToRight,
Qt::AlignCenter,
window->size(),
qApp->desktop()->availableGeometry()
)
);