鼠标击中, textlayout : 文字布局 « 图形用户界面 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 图形用户界面 » 文字布局屏幕截图 
鼠标击中, textlayout
鼠标击中, textlayout
   

import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Shape;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.font.FontRenderContext;
import java.awt.font.TextAttribute;
import java.awt.font.TextHitInfo;
import java.awt.font.TextLayout;
import java.awt.geom.Point2D;
import java.text.AttributedCharacterIterator;
import java.text.AttributedString;
import java.util.Hashtable;

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

public class HitTestSample extends JPanel {
  private static final Color STRONG_CARET_COLOR = Color.red;

  private static final Color WEAK_CARET_COLOR = Color.black;

  private TextLayout textLayout;

  private int insertionIndex;

  private static final FontRenderContext DEFAULT_FRC = new FontRenderContext(
      null, false, false);

  private static final Hashtable map = new Hashtable();
  static {
    map.put(TextAttribute.SIZE, new Float(18.0));
  }

  private static AttributedString helloWorld = new AttributedString(
      "Java Source and Support.", map);

  public HitTestSample() {
    AttributedCharacterIterator text = helloWorld.getIterator();
    // Create a new TextLayout from the given text.
    textLayout = new TextLayout(text, DEFAULT_FRC);

    // Initilize insertionIndex.
    insertionIndex = 0;

    addMouseListener(new HitTestMouseListener());
  }

  public Dimension getPreferredSize() {
    return new Dimension(400250);
  }

  private Point2D computeLayoutOrigin() {

    Dimension size = getPreferredSize();
    Point2D.Float origin = new Point2D.Float();

    origin.x = (float) (size.width - textLayout.getAdvance()) 2;
    origin.y = (float) (size.height - textLayout.getDescent() + textLayout
        .getAscent()) 2;
    return origin;
  }

  public void paintComponent(Graphics g) {
    super.paintComponent(g);
    setBackground(Color.white);
    Graphics2D graphics2D = (Graphics2Dg;

    Point2D origin = computeLayoutOrigin();

    graphics2D.translate(origin.getX(), origin.getY());

    // Draw textLayout.
    textLayout.draw(graphics2D, 00);

    // Retrieve caret Shapes for insertionIndex.
    Shape[] carets = textLayout.getCaretShapes(insertionIndex);

    graphics2D.setColor(STRONG_CARET_COLOR);
    graphics2D.draw(carets[0]);

    if (carets[1!= null) {
      graphics2D.setColor(WEAK_CARET_COLOR);
      graphics2D.draw(carets[1]);
    }
  }

  private class HitTestMouseListener extends MouseAdapter {
    public void mouseClicked(MouseEvent e) {

      Point2D origin = computeLayoutOrigin();

      // Compute the mouse click location relative to
      // textLayout's origin.
      float clickX = (float) (e.getX() - origin.getX());
      float clickY = (float) (e.getY() - origin.getY());

      // Get the character position of the mouse click.
      TextHitInfo currentHit = textLayout.hitTestChar(clickX, clickY);
      insertionIndex = currentHit.getInsertionIndex();

      // Repaint the Component so the new caret(s) will be displayed.
      repaint();
    }
  }

  public static void main(String[] args) {

    JFrame f = new JFrame("HitTestSample");
    HitTestSample demo = new HitTestSample();
    f.getContentPane().add(demo, "Center");

    f.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });

    f.setSize(new Dimension(400250));
    f.setVisible(true);
  }
}


           
         
    
    
  
Related examples in the same category
1. JFreeChart :绘制字符串演示JFreeChart :绘制字符串演示
2. 统一:测试布局统一:测试布局
3. 显示统一国家码显示统一国家码
4. 换行符的textlayout换行符的textlayout
5. TextLayout演示TextLayout演示
6. 绘制文字沿曲线绘制文字沿曲线
7. TextHitInfo演示:告诉你这是信你点击TextHitInfo演示:告诉你这是信你点击
8. TextAttribute :通过强调TextAttribute :通过强调
9. TextAttribute :颜色和字体TextAttribute :颜色和字体
10. Hightlight文本拖放选择Hightlight文本拖放选择
11. LineMetrics: the metrics to layout characters along a lineLineMetrics: the metrics to layout characters along a line
12. 段布局段布局
13. 加字符事件加字符事件
14. 加字符和TextLayout加字符和TextLayout
15. 另一个换行符演示
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. 绘制文字TextLayout
18. 绘制一段文字
19. 获取形状边框的文字
20. 绘图文字混合风格
21. 绘制多行文字AttributedString和LineBreakMeasurer
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.