我创建了一个自定义QDialog
类并覆盖了closeEvent
只是隐藏对话框,因为它是另一个小部件的子级。我的对话框只能在其父级关闭时关闭,而不是在它被接受、拒绝或用户单击关闭按钮时关闭。
这一切都很好,但现在我需要打开一个到数据库的连接,并且只有在对话框被破坏时才关闭它,而不仅仅是在它关闭时。
我的代码:
from PyQt4.QtCore import *
from PyQt4.QtGui import *
import sys
def Log_Closed():
print "Bye bye"
class My_dlg(QDialog):
def __init__(self, parent=None):
QDialog.__init__( self, parent )
#self.conn = open_connection()
print "Connection Opened"
close_btn = QPushButton("Actually Close")
QVBoxLayout(self).addWidget(close_btn)
close_btn.clicked.connect(self.Actually_Close)
self.destroyed.connect(Log_Closed)
def Actually_Close(self):
print "Actually Close"
self.parent().close()
def closeEvent(self, event):
if event.type() == QEvent.Close:
event.ignore()
self.hide()
print "hidden"
# And I guess I need something like
def destroyEvent(self, event):
#self.conn.close()
print "Connection Closed"
event.accept()
if __name__ == "__main__":
app = QApplication(sys.argv)
main= QMainWindow()
tsd = My_dlg(main)
tsd.show()
sys.exit(app.exec_())
有任何想法吗?