Re: [PyQt] Working with os.popen and qprogressdialog

2008-03-09 Thread David Boddie
On Sun Mar 9 23:21:05 GMT 2008, JMiahMan wrote: > Andreas Pakulat-2 wrote: > > > Thats because while you run your process the event loop is not run and > > thus no painting updates are being done. I suggest to take a look at > > QProcess as that one sends the output in an asynchronous way and thu

Re: [PyQt] Working with os.popen and qprogressdialog

2008-03-09 Thread JMiahMan
Andreas Pakulat-2 wrote: > > Thats because while you run your process the event loop is not run and > thus no painting updates are being done. I suggest to take a look at > QProcess as that one sends the output in an asynchronous way and thus > allows the event loop to update the paintings. > >

Re: [PyQt] Re: Joystick Keyboard

2008-03-09 Thread Aaron Digulla
Neil Wallace schrieb: >> I'm trying to write a program that creates an onscreen keyboard that >> uses an 2-analogue stick joypad for input. 1. Create a class which derives from QObject 2. Add a timer in there which calls a method to poll the joystick 3. Emit a signal in that method with the joys

Re: [PyQt] Working with os.popen and qprogressdialog

2008-03-09 Thread Andreas Pakulat
On 08.03.08 22:04:57, JMiahMan wrote: > > I need to create a progress bar for a command that I run with popen, but so > far I've had no luck. Here's a sniplet of code: > > Pd = QtGui.QProgressDialog ( "Creating Disk Image...", "Stop", 0, 0, self) > Pd.show () > from os.path import isd