I'm developing an Eclipse plugin that needs to respond to the current cursor position in an Eclipse editor.

From the tests I've done, it appears that using the SelectionService only tells you when a non-empty selection is made in an editor, not when the cursor is moved.

I've found one site describing how to track selections by registering for mouse and keyboard events, but that seems like a bit of a hack.

I've also seen someone asking on StackOverflow about alternatives to the CaretListener interface for tracking cursor movement in an Eclipse editor, and describing a way to register with an editor's text viewer (rather than the global SelectionService) to get caret movement updates, but they suggest that it's a less-effecient method that would be better replaced with the CaretListener interface in more recent versions of Eclipse.

That last might be an option, but it sounds like using the CaretListener would be the preferred approach...but if it is, how can it be done?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

If you can live without supporting older Eclipse versions (3.4 and below) then CaretListener is definitely the way to go. Older StyledText implementations don't send any notifications about caret movement.

Get access to the StyledText control of the editor as described in your first link, but instead of adding key or mouse listeners, add a CaretListener.

workbenchWindow.getActivePage().addPartListener(new PartListener() {
    public void partOpened(IWorkbenchPartReference partRef) {
        //Check if this is an editor and its input is what I need
        AbstractTextEditor e =
            (AbstractTextEditor)((IEditorReference) partRef).getEditor(false);
        ((StyledText)e.getAdapter(Control.class)).addCaretListener(l);
    }
});
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.