其他分享
首页 > 其他分享> > 如何在PyQt中保存QLineEdits中的文本,即使Widget被关闭了?

如何在PyQt中保存QLineEdits中的文本,即使Widget被关闭了?

作者:互联网

您好我已经使用PyQt为我的脚本制作了一个GUI我有几个Line编辑和几个按钮

(…..)=(self.(…..).text())我使用该文本作为我的脚本作为变量(但我不认为这对问题很重要)我想要能够在QLineEdits中键入文本并保存,以便下次打开时文本仍然存在

我使用PyQt5然后我使用Py-installer将它变成一个应用程序所以我希望能够将文本保存在QLineEdits中,然后当它关闭时它将被保存在那里,以便下次打开它>

PS.我正在与其他人分享这个应用程序所以我希望它能够保存用户放入的东西(他们正在为他们添加自定义的内容,例如(名称或类似名称)

这是我的pyqt5代码示例:

enter image description here

解决方法:

对于较旧的应用程序,它实现了保存窗口小部件状态并恢复它们的功能.

为了使其正常工作,应用程序必须满足以下要求:

>您必须设置OrganizationName,OrganizationDomain和ApplicationName.
>要保存状态的每个窗口小部件都必须具有objectName
>当您想要恢复状态时,必须使用restore(),在创建所有小部件之后,一个好的选择.
>如果要保存状态,必须使用save(),一个好的地方是closeEvent().

在下一部分中,我展示了一个例子:

import sys

from PyQt5 import QtWidgets, QtCore

# for PyQt4 change QtWidget to QtGui and PyQt5 to PyQt4


def restore(settings):
    finfo = QtCore.QFileInfo(settings.fileName())
    if finfo.exists() and finfo.isFile():
        for w in QtWidgets.qApp.allWidgets():
            mo = w.metaObject()
            if w.objectName() and not w.objectName().startswith("qt_"):
                settings.beginGroup(w.objectName())
                for i in range( mo.propertyCount(), mo.propertyOffset()-1, -1):
                    prop = mo.property(i)
                    if prop.isWritable():
                        name = prop.name()
                        val = settings.value(name, w.property(name))
                        if str(val).isdigit():
                            val = int(val)
                        w.setProperty(name, val)
                settings.endGroup()

def save(settings):
    for w in QtWidgets.qApp.allWidgets():
        mo = w.metaObject()
        if w.objectName() and not w.objectName().startswith("qt_"):
            settings.beginGroup(w.objectName())
            for i in range(mo.propertyCount()):
                prop = mo.property(i)
                name = prop.name()
                if prop.isWritable():
                    settings.setValue(name, w.property(name))
            settings.endGroup()


class Widget(QtWidgets.QWidget):
    def __init__(self, parent=None):
        super().__init__(parent)
        self.setObjectName("widget")
        self.init_ui()
        self.settings = QtCore.QSettings()
        print(self.settings.fileName())
        restore(self.settings)

    def init_ui(self):
        lay = QtWidgets.QVBoxLayout(self)
        lineEdit1 = QtWidgets.QLabel("label")
        lineEdit1.setObjectName("label")
        lineEdit2 = QtWidgets.QLineEdit()
        lineEdit2.setObjectName("lineEdit2")
        combobox = QtWidgets.QComboBox()
        combobox.addItems(["1", "2", "3"])
        combobox.setObjectName("combo")
        lay.addWidget(lineEdit1)
        lay.addWidget(lineEdit2)
        lay.addWidget(combobox)

    def closeEvent(self, event):
        save(self.settings)
        super().closeEvent(event)


if __name__ == '__main__':
    app = QtWidgets.QApplication(sys.argv)
    QtCore.QCoreApplication.setOrganizationName("Eyllanesc")
    QtCore.QCoreApplication.setOrganizationDomain("eyllanesc.com")
    QtCore.QCoreApplication.setApplicationName("MyApp")
    ex = Widget()
    ex.show()
    sys.exit(app.exec_())

更新:

在你使用Qt Designer的情况下,不再需要放置objectsNames,因为它们已经建立,但另一方面,提供Qt Designer的类不是一个小部件,而是一个负责填充小部件的类,所以我们必须创建窗口小部件才能覆盖closeEvent方法,如下所示:

from PyQt5 import QtCore, QtGui, QtWidgets

class Ui_MainWindow(object):
    def setupUi(self, MainWindow):
        ...
    def retranslateUi(self, MainWindow):
        ...

class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow):
    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.setupUi(self)
        self.settings = QtCore.QSettings()
        restore(self.settings)

    def closeEvent(self, event):
        save(self.settings)
        super().closeEvent(event)

if __name__ == "__main__":
    import sys
    app = QtWidgets.QApplication(sys.argv)
    QtCore.QCoreApplication.setOrganizationName("Eyllanesc")
    QtCore.QCoreApplication.setOrganizationDomain("eyllanesc.com")
    QtCore.QCoreApplication.setApplicationName("MyApp")
    w = MainWindow()
    w.show()
    sys.exit(app.exec_())

标签:qsettings,pyqt5,python,pyqt,pyqt4
来源: https://codeday.me/bug/20190927/1824722.html