📄 styledhighlightpainter.java
字号:
/* * File: StyledHighlightPainter.java * Project: MPI Linguistic Application * Date: 02 May 2007 * * Copyright (C) 2001-2007 Max Planck Institute for Psycholinguistics * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */package mpi.eudico.client.annotator.viewer;import java.awt.Color;import java.awt.Graphics;import java.awt.Rectangle;import java.awt.Shape;import javax.swing.plaf.TextUI;import javax.swing.text.BadLocationException;import javax.swing.text.DefaultHighlighter.DefaultHighlightPainter;import javax.swing.text.JTextComponent;import javax.swing.text.Position;import javax.swing.text.View;/** * A class that adds some style options to the default text HighlightPainter. <br> * This highlighter can paint the highlight either solid or stroked (outlines) * and its visibility can be set. * * @author Han Sloetjes */public class StyledHighlightPainter extends DefaultHighlightPainter { /** A constant for the stroked, outline styled highlight */ public static final int STROKED = 0; /** A constant for the filled, solid styled highlight */ public static final int FILLED = 1; private int paintOffset; private boolean visible = true; private int paintMode = STROKED; /** * Creates a new StyledHighlightPainter instance. * * @param c the Color to used for the highlight * @param paintOffset the number of pixels to add to the size of the * highlight */ public StyledHighlightPainter(Color c, int paintOffset) { super(c); this.paintOffset = paintOffset; } /** * Creates a new StyledHighlightPainter instance. * * @param c the Color to used for the highlight * @param paintOffset the number of pixels to add to the size of the * highlight * @param paintMode FILLED or STROKED */ public StyledHighlightPainter(Color c, int paintOffset, int paintMode) { super(c); this.paintOffset = paintOffset; if ((paintMode >= STROKED) && (paintMode <= FILLED)) { this.paintMode = paintMode; } } /** * Paints the highlight. * * @param g the graphics object * @param offs0 begin offset * @param offs1 end offset * @param bounds the bounds * @param c the text component */ public void paint(Graphics g, int offs0, int offs1, Shape bounds, JTextComponent c) { if (!visible) { return; } Rectangle alloc = bounds.getBounds(); try { // --- determine locations --- TextUI mapper = c.getUI(); Rectangle p0 = mapper.modelToView(c, offs0); Rectangle p1 = mapper.modelToView(c, offs1); // --- render --- Color color = getColor(); if (color == null) { g.setColor(c.getSelectionColor()); } else { g.setColor(color); } if (p0.y == p1.y) { // same line, render a rectangle Rectangle r = p0.union(p1); if (paintMode == STROKED) { g.drawRect(r.x + paintOffset, r.y + paintOffset, r.width - (2 * paintOffset), r.height - (2 * paintOffset)); } else if (paintMode == FILLED) { g.fillRect(r.x + paintOffset, r.y + paintOffset, r.width - (2 * paintOffset), r.height - (2 * paintOffset)); } } else { // different lines int p0ToMarginWidth = (alloc.x + alloc.width) - p0.x; if (paintMode == STROKED) { g.drawRect(p0.x + paintOffset, p0.y + paintOffset, p0ToMarginWidth - (2 * paintOffset), p0.height - (2 * paintOffset)); if ((p0.y + p0.height) != p1.y) { g.drawRect(alloc.x + paintOffset, p0.y + p0.height + paintOffset, alloc.width - (2 * paintOffset), p1.y - (p0.y + p0.height) - (2 * paintOffset)); } g.drawRect(alloc.x + paintOffset, p1.y + paintOffset, (p1.x - alloc.x) - (2 * paintOffset), p1.height - (2 * paintOffset)); } else if (paintMode == FILLED) { g.fillRect(p0.x + paintOffset, p0.y + paintOffset, p0ToMarginWidth - (2 * paintOffset), p0.height - (2 * paintOffset)); if ((p0.y + p0.height) != p1.y) { g.fillRect(alloc.x + paintOffset, p0.y + p0.height + paintOffset, alloc.width - (2 * paintOffset), p1.y - (p0.y + p0.height) - (2 * paintOffset)); } g.fillRect(alloc.x + paintOffset, p1.y + paintOffset, (p1.x - alloc.x) - (2 * paintOffset), p1.height - (2 * paintOffset)); } } } catch (BadLocationException e) { // can't render } } /** * Paints the layered highlight. * * @param g the graphics object * @param offs0 begin offset * @param offs1 end offset * @param bounds the bounds * @param c the text component * @param view the text view * * @return the shape that has been painted or null */ public Shape paintLayer(Graphics g, int offs0, int offs1, Shape bounds, JTextComponent c, View view) { if (!visible) { return null; } Color color = getColor(); if (color == null) { g.setColor(c.getSelectionColor()); } else { g.setColor(color); } if ((offs0 == view.getStartOffset()) && (offs1 == view.getEndOffset())) { // Contained in view, can just use bounds. Rectangle alloc; if (bounds instanceof Rectangle) { alloc = (Rectangle) bounds; } else { alloc = bounds.getBounds(); } if (paintMode == STROKED) { g.drawRect(alloc.x + paintOffset, alloc.y + paintOffset, alloc.width - (2 * paintOffset), alloc.height - (2 * paintOffset)); } else if (paintMode == FILLED) { g.fillRect(alloc.x + paintOffset, alloc.y + paintOffset, alloc.width - (2 * paintOffset), alloc.height - (2 * paintOffset)); } return alloc; } else { // Should only render part of View. try { // --- determine locations --- Shape shape = view.modelToView(offs0, Position.Bias.Forward, offs1, Position.Bias.Backward, bounds); Rectangle r = (shape instanceof Rectangle) ? (Rectangle) shape : shape.getBounds(); if (paintMode == STROKED) { g.drawRect(r.x + paintOffset, r.y + paintOffset, r.width - (2 * paintOffset), r.height - (2 * paintOffset)); } else if (paintMode == FILLED) { g.fillRect(r.x + paintOffset, r.y + paintOffset, r.width - (2 * paintOffset), r.height - (2 * paintOffset)); } return r; } catch (BadLocationException e) { // can't render } } // Only if exception return null; } /** * Returns the visibility. * * @return Returns the visibility. */ public boolean isVisible() { return visible; } /** * Sets the visibility. * * @param visible the visibility value. */ public void setVisible(boolean visible) { this.visible = visible; } /** * Returns the paint mode. * * @return the current paint mode */ public int getPaintMode() { return paintMode; } /** * Sets the paint mode. * * @param mode the new paint mode, either FILLED or STROKED */ public void setPaintMode(int mode) { if ((mode == FILLED) || (mode == STROKED)) { paintMode = mode; } } /** * Returns the paint offset. * * @return the offset, positive or negative, used to modify the size of the * highlight (as compared to the default highlight size) */ public int getPaintOffset() { return paintOffset; } /** * Sets the paint offset. * * @param offset the paint offset * * @see #getPaintOffset() */ public void setPaintOffset(int offset) { paintOffset = offset; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -