javax.swing.text
Class DefaultHighlighter.DefaultHighlightPainter
- DefaultHighlighter
- Highlighter.HighlightPainter
Simple highlight painter that fills a highlighted area with
a solid color.
clone, equals, extends Object> getClass, finalize, hashCode, notify, notifyAll, toString, wait, wait, wait |
DefaultHighlightPainter
public DefaultHighlightPainter(Color c)
Constructs a new highlight painter. If c is null,
the JTextComponent will be queried for its selection color.
c - the color for the highlight
View More Examples of DefaultHighlightPainter(Color c)
1: try {
2: HighlightPainter highlightPainter = new DefaultHighlightPainter(color);
3: if (userHighlights == null)
4: userHighlights = new ArrayList<Object>();
5: userHighlights.add(addHighlight(start, end, highlightPainter));
View Full Code Here
1: Document doc=me.codeEditor.getEditor().getDocument();
2: DefaultHighlighter.DefaultHighlightPainter dhp =new DefaultHighlighter.DefaultHighlightPainter(Color.lightGray);
3: int startP=doc.getDefaultRootElement().getElement(startL).getStartOffset();
4: int endP=doc.getDefaultRootElement().getElement(endL).getEndOffset();
5: int len=doc.getDefaultRootElement().getElementCount();
View Full Code Here
1: highlighter = getHighlighter();
2: searchHighlight = new DefaultHighlighter.DefaultHighlightPainter(Color.yellow);
3: ...
4: notifyHighlight = new DefaultHighlighter.DefaultHighlightPainter(Color.magenta);
5: }
6:
7: private void createLogger() {
View Full Code Here
1: highlighter = taSubtitle.getHighlighter();
2: selectionPainter = new DefaultHighlighter.DefaultHighlightPainter(Constants.SELECTIONCOLOR);
3:
4: jspSubtitle = new JScrollPane(taSubtitle);
5: add(jspSubtitle, BorderLayout.CENTER);
View Full Code Here
1: public DefaultHighlighter dh;
2: public DefaultHighlighter.DefaultHighlightPainter dhp = new DefaultHighlighter.DefaultHighlightPainter(Color.YELLOW);
3: int RDF_FORMAT = 0;
4: int AS_FORMAT = 1;
5: int TURTLE_FORMAT = 2;
View Full Code Here
getColor
public Color getColor()
Returns the color of the highlight.
paintLayer
public Shape paintLayer(Graphics g,
int offs0,
int offs1,
Shape bounds,
JTextComponent c,
View view) Paints a portion of a highlight.
- paintLayer in interface LayeredHighlighter.LayerPainter
g - the graphics contextoffs0 - the starting model offset >= 0offs1 - the ending model offset >= offs1bounds - the bounding box of the view, which is not
necessarily the region to paint.c - the editorview - View painting for
- region drawing occured in