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
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
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