[PyQt] Rapid GUI Programming with Python and Qt

2010-07-19 Thread projetmbc
Hello, I would ike to have infos about the future new version for Python 3 of this great book. Is there a publication date ? C. ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] question about dip observe handler

2010-07-19 Thread Phil Thompson
On Sun, 18 Jul 2010 18:11:15 -0400, Darren Dale dsdal...@gmail.com wrote: I am reading the dip documentation at http://www.riverbankcomputing.co.uk/static/Docs/dip/complete_example.html , and have a question about the following: dip will invoke an observe() handler when the value of an

Re: [PyQt] ANN: dip v0.1 Released - An Application Development Framework for PyQt and Python v3

2010-07-19 Thread Lic . José M . Rodriguez Bacallao
and when do you plan to support python 2.6.x? On 7/17/10, Phil Thompson p...@riverbankcomputing.com wrote: On Sat, 17 Jul 2010 21:09:04 +0200, Antonio Valentino antonio.valent...@tiscali.it wrote: Hi Phil, Il giorno Sat, 17 Jul 2010 18:02:57 +0100 Phil Thompson p...@riverbankcomputing.com

Re: [PyQt] question about dip observe handler

2010-07-19 Thread Darren Dale
On Mon, Jul 19, 2010 at 9:33 AM, Phil Thompson p...@riverbankcomputing.com wrote: On Sun, 18 Jul 2010 18:11:15 -0400, Darren Dale dsdal...@gmail.com wrote: I am reading the dip documentation at http://www.riverbankcomputing.co.uk/static/Docs/dip/complete_example.html , and have a question

Re: [PyQt] Rapid GUI Programming with Python and Qt

2010-07-19 Thread Mark Summerfield
On Mon, 19 Jul 2010 15:06:12 +0200 (CEST) projet...@club-internet.fr wrote: Hello, I would ike to have infos about the future new version for Python 3 of this great book. Is there a publication date ? Hi C, I would very much like to do a new edition of the PyQt book, but it will probably not

[PyQt] Embedding PyQt scripts into Qt applications - manual update

2010-07-19 Thread Oleksandr Iakovliev
Hi PyQt trolls, I have finally updated my manual about embedding PyQt scripts into Qt C++ applications (up to last versions of Qt and PyQt). You may find it interesting - it opens a way to create hybrid applications where you have both C++ and Python codes running together and both using Qt

[PyQt] Get Signals from all buttons in the form

2010-07-19 Thread starglider develop
Hi, I have a form with 12 QPushButtons and need to connect the signals to the corresponding button pressed without have to use the usual self.connect(obj,SIGNAL(),self.function), because I don't khow many buttons where made. Yes I'm a newbe. Thank you in advance.

[PyQt] QDomElement set text?

2010-07-19 Thread Scott Ballard
If I have an XML element such as mirrorhhello/mirrorh I can retrieve its text (hello) using the method .text(), but how do I set it? Or do I somehow have to use a QTextNode to set the QDomElement? Any thoughts? Thanks, -Scott ___ PyQt mailing list

Re: [PyQt] Get Signals from all buttons in the form

2010-07-19 Thread Doug Bell
starglider develop wrote: Hi, I have a form with 12 QPushButtons and need to connect the signals to the corresponding button pressed without have to use the usual self.connect(obj,SIGNAL(),self.function), because I don't khow many buttons where made. Read the documentation for QButtonGroup.

Re: [PyQt] Get Signals from all buttons in the form

2010-07-19 Thread 机械唯物主义 : linjunhalida
or: buttons = [QPushButton(button %d % i) for i in range(12)] for button in buttons: button.clicked.connect(lambda button=button: do_something(button)) On Tue, Jul 20, 2010 at 8:57 AM, Doug Bell do...@bellz.org wrote: starglider develop wrote: Hi, I have a form with 12 QPushButtons and

Re: [PyQt] Rapid GUI Programming with Python and Qt

2010-07-19 Thread Sathishkumar Duraisamy
Hi Mark Summerfield, I am fan of your book Rapid GUI Programming with Python and Qt. Its pleasure to have new edition. But two year is little long I have found the pyqt does not have any support for the classes for embedded linux. But David Boddie has given some support for it in