[PyQt] pyqt4 and android

2012-12-10 Thread José M . Rodriguez Bacallao
hi folks, can I install PyQt4 on android? ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] Shortening multiple widget initializations to one line

2012-12-10 Thread Matt Newell
On Sunday, December 09, 2012 11:48:18 PM Shriramana Sharma wrote: Hi -- recently I was trying to shorten the following overly verbose (IMO) lines to: self . p1xSpin = QSpinBox () self . p1ySpin = QSpinBox () self . c1xSpin = QSpinBox ()

Re: [PyQt] Shortening multiple widget initializations to one line

2012-12-10 Thread David Cortesi
On Mon, Dec 10, 2012 at 4:00 AM, pyqt-requ...@riverbankcomputing.com wrote: is there any other method I can follow to shorten the tortuous list of repetitive commands for initializing multiple widgets? If you don't mind referring to the objects by index number rather than individual names,

Re: [PyQt] Shortening multiple widget initializations to one line

2012-12-10 Thread Shriramana Sharma
Hello -- thanks all for your kind replies. The ideas for multiple creation are all useful. One more point below: On Mon, Dec 10, 2012 at 9:49 PM, Matt Newell newe...@blur.com wrote: self . p1xSpin, self . p1ySpin, self . c1xSpin, self . c1ySpin, self . c2xSpin, self