I made a QListWidget, added few items in code and made a QButton that calls this function on click:
def add_new(self):
self.listWidget.addItem
item = QtGui.QListWidgetItem()
item.setFlags(item.flags() | Qt.ItemIsEditable)
self.listWidget.addItem(item)
item.setText(_translate("Form", "Enter new string here.", None))
Using this code I can add new item to list, but it doesn't remain there after closing widget.
On the other hand, i made all items editable, but those changes also do not remain saved after closing widget.
Is there a way (other than using qlistview) to make changes to QListWidget permanent?
hide()method if you just want to keep the data during your main window session, andshowwhen you want to display it again, or else you'll have to code a way of storing that data, for example saving the contents of yourQListWidgetinto a file, and then loading it when you start your widget. – X.Jacobs Feb 21 at 18:22