Re: [PyQt] PyQt4.Gui.QFileDialog

2011-11-01 Thread Janwillem van Dijk
I am sorry to say that this does not help either. On linux the dialog shows until the sleep finishes on windows it exits as soon as the button is clicked as expected. For the time being I changed to traits. Bit heavy weight perhaps but give the opportunity to have a few other parameters

Re: [PyQt] PyQt4.Gui.QFileDialog

2011-11-01 Thread Hans-Peter Jansen
On Monday 31 October 2011, 08:07:00 Janwillem wrote: I want a small script with just a few filedialogs not a full blown gui application . However when I try the code below the dialog does not disappear after clicking the Open button on the dialog but stays on top until the script exits. What

Re: [PyQt] PyQt4.Gui.QFileDialog

2011-11-01 Thread Andreas Pakulat
On 01.11.11 12:27:45, Janwillem van Dijk wrote: I am sorry to say that this does not help either. On linux the dialog shows until the sleep finishes on windows it exits as soon as the button is clicked as expected. For the time being I changed to traits. Bit heavy weight perhaps but give the

Re: [PyQt] PyQt4.Gui.QFileDialog

2011-10-31 Thread Matteo Boscolo
with this configuration Python 2.6.6 PyQt4 4.7.3 open dialog dialog finished C:\Users\mboscolo\Documents\.bzr.log finished it works perfectly .. after press the opendialog the form is closed and start to print the rest of the debug regards, Matteo Il 31/10/2011 08:07, Janwillem ha scritto:

Re: [PyQt] PyQt4.Gui.QFileDialog

2011-10-31 Thread Janwillem
Thanks, yes I see, that is under windows (XP on VirtualBox, python 2.7.1 and pyqt4 4.7.2 in my case) but under linux (ubuntu 11.10, python 2.7.2+ and pyqt 4.7.3) it only closes after the sleep has finished (or in case of my practical application, until the data processing finished) So any tips

Re: [PyQt] PyQt4.Gui.QFileDialog

2011-10-31 Thread Matteo Boscolo
Try this after instantiate the application: app.setQuitOnLastWindowClosed(False) and this after closing the dialog: app.closeAllWindows() I use this in some case in my com application .. hope it helps Regards, Matteo Il 31/10/2011 09:08, Janwillem ha scritto: Thanks, yes I see, that is

Re: [PyQt] PyQt4.Gui.QFileDialog

2011-10-31 Thread Vincent Vande Vyvre
Le 31/10/11 09:32, Matteo Boscolo a crit: Try this after instantiate the application: app.setQuitOnLastWindowClosed(False) and this after closing the dialog: app.closeAllWindows() I use this in some case in my

Re: [PyQt] PyQt4.Gui.QFileDialog

2011-10-31 Thread Vincent Vande Vyvre
Le 31/10/11 10:07, Vincent Vande Vyvre a crit: Le 31/10/11 09:32, Matteo Boscolo a crit: Try this after instantiate the application: app.setQuitOnLastWindowClosed(False) and this after closing the dialog: