vote up 1 vote down star

I was wandering if it's possible to open a source code in text editor and display it with decorations (Java for example)? I don't need fancy eclipse editor features, just properly decorated source code with line numbers, it can even be read-only. I read that RCP have many limitations with text editors as it drags behind heavy plug-ins. Can it be done at all? Is it possible to navigate to particular line of code when file is opened? It would be really great if someone would point me out to the right direction or give some examples... Thanks in advance!

flag

Actually I have found a solution. I didn't go with eclipse text plugins - it was extreamly complex and heavy weight for what I really needed. There is much simpler solution based on StyledText SWT widget. It is very light and quite powerful for doing text decorations. I've even found ready to use source code from eclipse swt examples which shows Java source properly formatted. Google for JavaViewer, with simple twick it can be transformed into any source code viewer... Asusual, eclipse has wealth of information - all you need to do is to find it ! – Dima May 17 at 22:49

1 Answer

vote up 2 vote down check

Eclipse (3.4.2) itself ships with a sample XML editor that implements syntax highlighting. Just create a new plugin project, select 'This plugin will make contributions to the UI' and choose 'No' for Rich client application. The following wizard page offers a 'Plugin with an editor' template, which is your friend.

It may be too simple to use it as real template for your task, but it demonstrate how to create colourful editors for text files.

link|flag
Great, thanks! This is exactly what I was looking for :) – Dima May 14 at 16:38

Your Answer

Get an OpenID
or

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