Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Define 'closing widget'? If you're essentially deleting the widget and then recreating it, this obviously won't keep any state. If you'd hide it and re-show, things will stay as they were. – Avaris Feb 19 at 20:34
closing using function self.close() – speedyTeh Feb 20 at 1:50
Could you show the part where you show and close the widget? – Avaris Feb 20 at 2:04
Use the hide() method if you just want to keep the data during your main window session, and show when 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 your QListWidget into a file, and then loading it when you start your widget. – X.Jacobs Feb 21 at 18:22
Thanks, file, that's the answer! – speedyTeh Feb 27 at 21:05

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.