Hi all,

I'm working on a Qt application, which is using Qt3. Its a dump analyzer tool. One of the widgets displays the list of all the processes which were running at the time of crash of the system. Now in this list view, my intention is to highlight the Default Task. For that I'm iterating over the items and setting the appropriate item selected by using setSelected() and making it open using setOpen()
But I'm, also, intending to highlight the text of the item, in order to distinguish it from other item's text, be easily visible. QListView's setFont() changes the whole list's font. The rectangle consisting of the item's contents, is to be highlighted too. How to do it?
I'll appreciate it, if someone gives me the pointer to the right material on this or a sample code.

Thanks for your kind help