Re: [PyQt] ANN: PyQt v5.0 Released

2013-06-17 Thread ruidc
Congrats and thanks, will there be windows binaries for Py2.7 coming to sourceforge? RuiDC -- View this message in context: http://python.6.x6.nabble.com/ANN-PyQt-v5-0-Released-tp5021558p5021578.html Sent from the PyQt mailing list archive at Nabble.com

Re: [PyQt] ANN: PyQt v4.9.3 Released

2012-06-26 Thread ruidc
Any ETA for the windows binaries? also, is there a way to download previous versions via the website? Thanks in advance, RuiDC -- View this message in context: http://python.6.n6.nabble.com/ANN-PyQt-v4-9-3-Released-tp4979387p4979592.html Sent from the PyQt mailing list archive at Nabble.com

Re: [PyQt] why do closeEvent and destroyed slot not get called on accepting PyQt4 QDialog?

2011-04-08 Thread RuiDC
fantastic!, that was exactly the penny drop I was missing! Lessons learned: 1. Don't hook handler for destroyed signal onto the object being destroyed. (seems obvious in retrospect) 2. QDialog.accept() does not fire closeEvent, even though it does get destroyed - bug or documentation is mislead

[PyQt] why do closeEvent and destroyed slot not get called on accepting PyQt4 QDialog?

2011-04-06 Thread RuiDC
The question & code are here: http://stackoverflow.com/questions/5570402/why-do-closeevent-and-destroyed-slot-not-get-called-on-accepting-pyqt4-qdialog but hopefully someone here can give me an answer on: 1. how to get the closeEvent to fire from accepting (or do I have to do a self.close()?) 2.