HI,
I had the same problem, I created my own Icons, so needed a clickable image+text with transparent background. I did this:
http://www.javafr.com/codes/SWT-CUSTOM-FILE-BROWSER_48514.aspx there are 2 things:
1- shell.setBackgroundMode(SWT.INHERRIT_DFAULT);
to make all childrens hinerit from the shell background
2-Class MyIcon entends Composite{
MyIcon(Composite parent, int style){
super(parent, SWT.TRANSPARENCE_ALPHA);}
}
It's very young but I draw my own Image in a Composite with a transparent background, so I see the background image of my shell.
Hope it can help
