up vote 6 down vote favorite
share [g+] share [fb]

Anyone know of an SWT widget that can be a text editor with support for syntax highlighting? I'm aware of the StyledText widget but I'm hoping that somebody has already written some libraries so one can just specify the keywords that should be highlighted.

link|improve this question

76% accept rate
feedback

3 Answers

up vote 3 down vote accepted

Indeed, the general principle of syntax highlighting are using the StyledText Widget. alt text

The JavaSourcecodeViewer is a more advanced example. alt text

The JavaViewer is even more detailed (source code).

link|improve this answer
Thanks --- I was hoping to find a "simplified" widget where all that would be necessary is to provide a few sets of keywords and that's it....much like the geshi syntax highlighting system used in the mediawiki – David Apr 9 '09 at 15:52
I understand. I am not sure such a custom component does exist, but I will keep looking – VonC Apr 9 '09 at 16:56
feedback

I'd look into what Eclipse uses in their code editor. Because if any SWT application uses syntax highlighting, its Eclipse.

link|improve this answer
feedback

Perhaps what you are looking for is Eclipse Colorer plug-in.

I have no idea though if and how would the colorer be usable as an SWT widget.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.