Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "FAQ What is the difference between highlight range and selection?"

 
m
 
Line 5: Line 5:
 
shift key. The selection can be obtained programmatically via the editor’s
 
shift key. The selection can be obtained programmatically via the editor’s
 
selection provider:
 
selection provider:
 +
 
<pre>
 
<pre>
 
   ITextEditor editor = ...;//the text editor instance
 
   ITextEditor editor = ...;//the text editor instance
Line 11: Line 12:
 
   ITextSelection text = (ITextSelection)selection;
 
   ITextSelection text = (ITextSelection)selection;
 
</pre>
 
</pre>
 
  
 
The selection can also be changed using the selection provider, but  
 
The selection can also be changed using the selection provider, but  
Line 17: Line 17:
 
that will change the selection and also scroll the editor so that the new
 
that will change the selection and also scroll the editor so that the new
 
selection is visible.
 
selection is visible.
 
  
 
Highlight range also defines a subset of the editor contents, but it cannot
 
Highlight range also defines a subset of the editor contents, but it cannot
Line 30: Line 29:
 
notice this shading indicates the range of the method currently being
 
notice this shading indicates the range of the method currently being
 
edited. The following snippet sets the highlight range of a text editor
 
edited. The following snippet sets the highlight range of a text editor
and then instructs the editor to display only the highlighted portion:
+
and then instructs the editor to display only the highlighted portion:  
 +
 
 
<pre>
 
<pre>
 
   ITextEditor editor = ...;
 
   ITextEditor editor = ...;

Latest revision as of 22:18, 29 May 2006

ITextEditor has two similar concepts for singling out a portion of the editor contents: selection and highlight range. The selection is the highlighted segment of text typically set by the user when dragging the mouse or moving the caret around while holding the shift key. The selection can be obtained programmatically via the editor&#146;s selection provider:

   ITextEditor editor = ...;//the text editor instance
   ISelectionProvider sp = editor.getSelectionProvider();
   ISelection selection = sp.getSelection();
   ITextSelection text = (ITextSelection)selection;

The selection can also be changed using the selection provider, but ITextEditor provides a convenience method, selectAndReveal, that will change the selection and also scroll the editor so that the new selection is visible.

Highlight range also defines a subset of the editor contents, but it cannot be directly manipulated by the user. Its most useful feature is that the editor can be toggled to show only the current highlight range. This is used in the Java editor to support the &#147;Show source of selected element only&#148; mode. The default implementation of ITextEditor also links the highlight range to the ISourceViewer concept of range indication. The source viewer in turn creates an annotation in the vertical ruler bar that shades the portion of the editor corresponding to the highlight range. To use the Java editor as an example again, you&#146;ll notice this shading indicates the range of the method currently being edited. The following snippet sets the highlight range of a text editor and then instructs the editor to display only the highlighted portion:

   ITextEditor editor = ...;
   editor.setHighlightRange(offset, length, true);
   editor.showHighlightRangeOnly(true);

This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.

Back to the top