If I run this code:
#!/usr/local/bin/ python3
import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
class Window(QMainWindow):
def
This answer to this question is as found here: Python PySide (Internal c++ Object Already Deleted)
Apparently, assigning one widget to QMainWindow using setCentralWidget and then assigning another widget with setCentralWidget will cause the underlying c++ QWidget to be deleted, even though I have an object that maintains reference to it.
Note: QMainWindow takes ownership of the widget pointer and deletes it at the appropriate time.
Brain's answer explains the problem perfectly. This Link explain things in more detail.
My solution to this problem was to set the widgets as attributes of the object (e.g. simply using self.label = ...
instead of label = ...
in your class methods). You might want to do the same for any layouts attached to the widget.
This way you create a copy of the widget so that when C++ memory cleanup occurs, you still have a reference to the widget.
Hope this helps.
In another case, the solution was to add all child objects to a detached layout first, and adding the layout to the parent layout as the last step. That is:
l = QGridLayout()
l.addWidget(QLabel("child1"), 0, 0)
l.addWidget(QLabel("child2"), 0, 1)
...
parentLayout.addLayout(l)
This problem also occurs in PyQT5 when you run a continuous thread and close the mainwindow/dialog without closing thread first but in background the thread is processing. When you again open the window the second thread generated and delete the pre-existed widgets. You need to exit the thread first before re-run it. You can exit the thread by put the check on visibility of any widget in the mainwindow/dialog
**if self.widget.isVisible() == False:
break**