Re: [PyKDE] BUG - disconnect

2002-11-04 Thread Kaleb Pederson
On Sunday 03 November 2002 12:13 pm, Phil Thompson wrote: On Tuesday 29 October 2002 12:46 am, Kaleb Pederson wrote: Disconnect doesn't seem to work as expected. snip which are all very similar to the documentation examples. SIP can't seem to tell which method really should be

[PyKDE] QListBoxItem

2002-11-04 Thread Rune Hansen
I'm pondering over how to set the text of a single QListBoxItem (not every item) to bold or to a colour. Can anyone help me? python2.2.1, pyqt.3.3x regards /rune ___ PyKDE mailing list[EMAIL PROTECTED] http://mats.gmd.de/mailman/listinfo/pykde

Re: [PyKDE] QListBoxItem

2002-11-04 Thread Peter Osborne
Yup, I've done this. You need to reimplement the class, redifining the paintCell method. Something like this will atleast get you started: class myListViewItem(QListViewItem): def __init__(self, qlistview, parent=None): QListViewItem.__init__(self, qlistview, None)

Re: [PyKDE] Qt.Py updated

2002-11-04 Thread Jonathan Gardner
On Monday 04 November 2002 12:41 am, Marc Schmitt wrote: On Montag, 4. November 2002 09:58, J�r�me Martin wrote: I have build sip/PyQt and PyKDE for Mandrake 8.2. I can send you tthe rpm in order to update your download page. I have also planed to build for Mdk9.0 Hi J�r�me, thanks for

[PyKDE] Python list handling for QRect, QPoint, and QSize

2002-11-04 Thread Hans-Peter Jansen
Hi Phil, since I catched the flu this weekend, I think of contributing something useful to PyQt. Namely the IMHO missing handling of python lists, where QRect, QPoint, and QSize objects are expected. (QColor?) On my first cursory look, there seem to be to ways, but I don't know their

Re: [PyKDE] Python list handling for QRect, QPoint, and QSize

2002-11-04 Thread Phil Thompson
On Monday 04 November 2002 6:36 pm, Hans-Peter Jansen wrote: Hi Phil, since I catched the flu this weekend, I think of contributing something useful to PyQt. Namely the IMHO missing handling of python lists, where QRect, QPoint, and QSize objects are expected. (QColor?) I'm not sure I

Re: [PyKDE] Python list handling for QRect, QPoint, and QSize

2002-11-04 Thread Phil Thompson
On Monday 04 November 2002 7:38 pm, Hans-Peter Jansen wrote: On Monday 04 November 2002 19:57, Phil Thompson wrote: On Monday 04 November 2002 6:36 pm, Hans-Peter Jansen wrote: Hi Phil, since I catched the flu this weekend, I think of contributing something useful to PyQt. Namely

Re: [PyKDE] BUG - disconnect

2002-11-04 Thread Kaleb Pederson
Thanks. Although it isn't usually necessary, it will be nice to have. There is a bug in PyQt with respect to connections being removed when the associated object has been deleted. But I'll try to post some example code within the week. Basically, if I create a parentless object and connect

Re: [PyKDE] BUG - disconnect

2002-11-04 Thread Kaleb Pederson
On Monday 04 November 2002 05:59 am, Kaleb Pederson wrote: Thanks. Although it isn't usually necessary, it will be nice to have. There is a bug in PyQt with respect to connections being removed when the associated object has been deleted. But I'll try to post some example code within the