Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remember last geometry of PyQt application?

Tags:

c++

python

qt

pyqt

I am using PyQt5 5.5.1 (64-bit) with Python 3.4.0 (64-bit) on Windows 8.1 64-bit.

I am having trouble restoring the position and size (geometry) of my very simple PyQt app.

Here is minimal working application:

import sys
from PyQt5.QtWidgets import QApplication, QWidget

class myApp(QWidget):
    def __init__(self):
        super().__init__()
        self.initUI()


    def initUI(self):
        self.show()

if __name__ == '__main__':
    app = QApplication(sys.argv)
    view = myApp()
    sys.exit(app.exec())

What I read online is that this is the default behavior and we need to use QSettings to save and retrieve settings from Windows registry, which is stored in

\\HKEY_CURRENT_USER\Software\{CompanyName}\{AppName}\

Here are some of the links I read.

I could have followed those tutorials but those tutorials/docs were written for C++ users.

C++ is not my glass of beer, and converting those codes are impossible to me.


Related:

QSettings(): How to save to current working directory

like image 789
Santosh Kumar Avatar asked Dec 11 '22 19:12

Santosh Kumar


1 Answers

This should do.

import sys
from PyQt5.QtWidgets import QApplication, QWidget
from PyQt5.QtCore import QSettings, QPoint, QSize

class myApp(QWidget):
    def __init__(self):
        super(myApp, self).__init__()

        self.settings = QSettings( 'My company', 'myApp')     

        # Initial window size/pos last saved. Use default values for first time
        self.resize(self.settings.value("size", QSize(270, 225)))
        self.move(self.settings.value("pos", QPoint(50, 50)))

    def closeEvent(self, e):
        # Write window size and position to config file
        self.settings.setValue("size", self.size())
        self.settings.setValue("pos", self.pos())

        e.accept()

if __name__ == '__main__':
    app = QApplication(sys.argv)
    frame = myApp()
    frame.show()
    app.exec_()

I simplified this example: QSettings(): How to save to current working directory

like image 63
Valentin H Avatar answered Dec 13 '22 11:12

Valentin H