Hightlight text by drag and selection : Text Layout « 2D Graphics GUI « Java






Hightlight text by drag and selection

Hightlight text by drag and selection
     

import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import java.awt.Shape;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.MouseMotionAdapter;
import java.awt.font.FontRenderContext;
import java.awt.font.TextHitInfo;
import java.awt.font.TextLayout;
import java.awt.geom.AffineTransform;

import javax.swing.JFrame;
import javax.swing.JPanel;

public class Highlights extends JPanel {
  private TextLayout textLayout;

  private TextHitInfo firstHit, secondHit;

  private int x = 40, y = 80;

    public Highlights(){
    addMouseListener(new MouseAdapter() {
      public void mousePressed(MouseEvent me) {
        firstHit = textLayout.hitTestChar(me.getX() - x, me.getY()
            - y);
        secondHit = null;
      }

      public void mouseReleased(MouseEvent me) {
        secondHit = textLayout.hitTestChar(me.getX() - x, me.getY()
            - y);
        repaint();
      }
    });
    addMouseMotionListener(new MouseMotionAdapter() {
      public void mouseDragged(MouseEvent me) {
        secondHit = textLayout.hitTestChar(me.getX() - x, me.getY()
            - y);
        repaint();
      }
    });
        
    }
  public void paint(Graphics g) {
    Graphics2D g2 = (Graphics2D) g;

    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
        RenderingHints.VALUE_ANTIALIAS_ON);
    g2.setRenderingHint(RenderingHints.KEY_FRACTIONALMETRICS,
        RenderingHints.VALUE_FRACTIONALMETRICS_ON);

    String s = "Drag the text to highlight Java Source and Support.";
    Font font = new Font("Serif", Font.PLAIN, 32);

    if (textLayout == null) {
      FontRenderContext frc = g2.getFontRenderContext();
      textLayout = new TextLayout(s, font, frc);
    }

    // Draw the highlight.
    if (firstHit != null && secondHit != null) {
      Shape base = textLayout.getLogicalHighlightShape(firstHit
          .getInsertionIndex(), secondHit.getInsertionIndex());
      AffineTransform at = AffineTransform.getTranslateInstance(x, y);
      Shape highlight = at.createTransformedShape(base);
      g2.setPaint(Color.white);
      g2.fill(highlight);
    }

    g2.setPaint(Color.black);
    textLayout.draw(g2, x, y);
  }
  public static void main(String[] args) {
    JFrame f = new JFrame();
    f.getContentPane().add(new Highlights());
    f.setSize(850, 250);
    f.show();

  }
}

           
         
    
    
    
    
  








Related examples in the same category

1.JFreeChart: Draw String DemoJFreeChart: Draw String Demo
2.Unicode: test layoutUnicode: test layout
3.Unicode displayUnicode display
4.Line break for textlayoutLine break for textlayout
5.Mouse hit and textlayoutMouse hit and textlayout
6.TextLayout demoTextLayout demo
7.Draw text along a curveDraw text along a curve
8.TextHitInfo Demo: tell you which is the letter you are clickingTextHitInfo Demo: tell you which is the letter you are clicking
9.TextAttribute: Underline and strike throughTextAttribute: Underline and strike through
10.TextAttribute: color and fontTextAttribute: color and font
11.LineMetrics: the metrics to layout characters along a lineLineMetrics: the metrics to layout characters along a line
12.Paragraph LayoutParagraph Layout
13.Caret actionCaret action
14.Caret and TextLayoutCaret and TextLayout
15.Another Line Break Demo
16.A display of text, formatted by us instead of by AWT/SwingA display of text, formatted by us instead of by AWT/Swing
17.Draw text with TextLayout
18.Drawing a Paragraph of Text
19.Getting the Shape from the Outline of Text
20.Drawing Text with Mixed Styles
21.Drawing multi-line text with AttributedString and LineBreakMeasurer
22.Draws the string at the specified location underlining the specified character
23.Renders a paragraph of text (line breaks ignored) to an image (created and returned).