[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.platform.swt] Re: Images in JFace TreeViewer leaves

Yigit Aytan wrote:
Hello!

I've got a TreeViewer which displays a contact list and I want to display emoticons depending on their nicknames( like Msn Messenger ). Is it possible?

Thanks...

Implement the ITableLabelProvider interface and use it as the label provider in your TreeViewer. The TreeViewer will see that you implemented the interface, and automatically call the getColumnImage method to find the correct image:


ITableLabelProvider.getColumnImage(Object element, int columnIndex)

Do you have to change the image if the contact's status changes? I can explain this too if you need.

Matthew