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
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.
>
>
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
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