This code works, but I wonder if there is any simpler way:

def center(self):
    qr = self.frameGeometry()
    cp = gui.QDesktopWidget().availableGeometry().center()
    qr.moveCenter(cp)
    self.move(qr.topLeft())
link|improve this question

2  
This seems about as right as you can get it to me. – jdi Feb 20 at 17:07
A nice snippet from ZetCode. I wondered if there was some shorter way, too. – BlaXpirit Feb 20 at 22:48
feedback

2 Answers

up vote 1 down vote accepted

No, it's the simplest way. Here is a snippet I've used in C++:

  QRect desktopRect = QApplication::desktop()->availableGeometry(this);
  QPoint center = desktopRect.center();

  move(center.x() - width() * 0.5, center.y() - height());
link|improve this answer
1  
I think it's better to use frameGeometry() like in OP's code instead width() and height()(Qt. Window Geometry) – reclosedev Feb 20 at 18:07
feedback

just add this line to your main windows :

self.move(QtGui.QApplication.desktop().screen().rect().center()- self.rect().center())
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.