SWT Text Icon Search option

java, swt

Solution

Windows does not support this feature.

There is a bug report here with some suggestions how to implement it yourself.

Problem

In RCP application I am using SWT Text as follows - `Text text = new Text(shell, SWT.SEARCH | SWT.ICON_CANCEL | SWT.ICON_SEARCH);` Inside the `Text` there is an option to get a icon of Search and Cancel. I am getting this icon on Ubuntu Linux, whereas on Windows 7 this icon in not visible. Can anybody help me on this ?

Original source