[PyQt] How to exclude the Lineedits in QSpinbox

2012-06-25 Thread mani kandan
I have a function to check if the selected type of children of a widget have been filled or not. Here is the code: def fillCompleted(self, parent, combo=True, spin=True, dspin=True, line=True): '''Checks if all fields in a parent widget have been filled''' filledCompletely =

[PyQt] Compiling PyQt 4.9.1 with SIP 4.13.3

2012-06-25 Thread 拉佛 薩
Hi All, I'm having a trouble compiling the PyQt 4.9.1 against SIP 4.13.3.I'm getting the following error during the compilation: PyQt-x11-gpl-4.9.1/sip/phonon/abstractaudiooutput.sip:33:33: error: abstractaudiooutput.h: No such file or

Re: [PyQt] Compiler Flags and PyQt

2012-06-25 Thread Hans-Peter Jansen
On Sunday 24 June 2012, 19:32:44 Phil Thompson wrote: On Sun, 24 Jun 2012 12:05:15 -0400, Scott Kitterman deb...@kitterman.com wrote: Passing the CCPFLAGS via CFLAGS/CXXFLAGS as discussed yesterday worked great for SIP4. I it mostly working for PyQT, but it doesn't appear that

Re: [PyQt] How to exclude the Lineedits in QSpinbox

2012-06-25 Thread Hans-Peter Jansen
On Monday 25 June 2012, 15:08:46 mani kandan wrote: How do I classify between the acual lineedits, and lineedits of the spin/double spinboxes? Check the names and avoid the qt ones. While this is dirty as hell, it's quite unlikely, that the qt names will change over time.. Pete

Re: [PyQt] Compiler Flags and PyQt

2012-06-25 Thread Scott Kitterman
On Monday, June 25, 2012 08:55:30 PM Hans-Peter Jansen wrote: @Scott: here's how I solved this (line 96 ff.): https://build.opensuse.org/package/view_file?file=python-qt4.specpackage=py thon-qt4project=home%3Afrispete%3APyQtrev=6161032f9d1629c3293dd3356c02dc49 Thank you. I'll give something