[PyQt] Long running processes, threads, progress dialog

2011-03-21 Thread Catriona Johnson
Hello I have a GUI application that occasionally has a number of long running processes - eg data deletions , html report generation. I have a custom progress widget that displays a spinning icon (my client didn't like the Qt QProgressDialog) which I display during long running processes - the us

Re: [PyQt] Bug in setEventFilter?

2011-03-21 Thread Brett Stottlemyer
Phil, Great support. Appears to work well. Brett -Original Message- From: Phil Thompson [mailto:p...@riverbankcomputing.com] Sent: Saturday, March 19, 2011 10:44 AM To: Brett Stottlemyer Cc: pyqt@riverbankcomputing.com Subject: Re: [PyQt] Bug in setEventFilter? On Sat, 19 Mar 2011 10:

[PyQt] sip bug wrapping protected enum in ABC

2011-03-21 Thread Demetrius Cassidy
With a simple class definition like the following, it seems that SIP tries to wrap SIPTransaction::States using a sip generated class, but of course that class is not created for ABCs. I am using the latest SIP snapshot, SIP 4.12.2-snapshot-ecb3e795382e, to test this code. class SIPTransaction /A

Re: [PyQt] fixed size array

2011-03-21 Thread Phil Thompson
On Mon, 21 Mar 2011 11:28:38 +0100, John Beuving wrote: > Hi, > > I have the following c++ code which I want to sip. > > struct message > { > int id; > char username[250]; > char field[20]; > }; > > The sip parser gives a syntax error on the line with the square brackets. > What

[PyQt] fixed size array

2011-03-21 Thread John Beuving
Hi, I have the following c++ code which I want to sip. struct message { int id; char username[250]; char field[20]; }; The sip parser gives a syntax error on the line with the square brackets. What is the best solution to work around this problem? John _