[PyQt] Selected text color of QTreeWidgetItem

2008-07-08 Thread Jake Richards
Hello: Is there any way to set the highlighted text color of QTreeWidgetItems? Using setColor or setForeground, it only sets the color of the non-highlighted text. QTreeWidgetItems don't seem to have a setPalette call but the QTreeWidget does. The problem with setting the palette on the QTreeWi

Re: [PyQt] core dump in pyqt application

2008-07-08 Thread Andreas Pakulat
On 08.07.08 18:10:20, Iván García wrote: > By creating and calling a SIGNAL from my thread to the main app it > totally fix my problem, Yeap, Qt then uses its QueuedConnection, which essentially does the same (i.e. creating an event, posting it to the other thread and the eventloop in that threa

Re: [PyQt] core dump in pyqt application

2008-07-08 Thread Iván García
By creating and calling a SIGNAL from my thread to the main app it totally fix my problem, thanks. Andreas Pakulat wrote: On 07.07.08 12:09:56, Iván García wrote: Can I use then SendEvent or PostEvent as you mentioned before within my thread in order to call the Main QT thread and then ch