How to Center a Window on the Screen: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 5: | Line 5: | ||
= How to center a window on the screen = | = How to center a window on the screen = | ||
<code> | <code> | ||
#include <QStyle> | |||
#include <QDesktopWidget> | |||
window- | window->setGeometry( | ||
QStyle::alignedRect( | |||
Qt::LeftToRight, | |||
Qt::AlignCenter, | |||
window->size(), | |||
qApp->desktop()->availableGeometry() | |||
)); | |||
</code> |