Last active
October 16, 2017 18:02
-
-
Save nikitagashkov/33fffb7c871c7b21ce9ab8cb7ac9f1a3 to your computer and use it in GitHub Desktop.
Util to center PyQt5 window on a screen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) 2017 Nick Gashkov | |
# | |
# Distributed under MIT License. See LICENSE file for details. | |
from PyQt5.QtWidgets import QDesktopWidget | |
def center_window_on_screen(window): | |
desktop_widget = QDesktopWidget() | |
screen_size = desktop_widget.screenGeometry() | |
window_size = window.geometry() | |
screen_width, screen_height = screen_size.width(), screen_size.height() | |
window_width, window_height = window_size.width(), window_size.height() | |
horizontal_center_px = (screen_width / 2) - (window_width / 2) | |
vertical_center_px = (screen_height / 2) - (window_height / 2) | |
window.move(horizontal_center_px, vertical_center_px) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment