嵌入图像和控制TextLayout : 文本布局 « SWT « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » SWT » 文本布局 
17. 41. 6. 嵌入图像和控制TextLayout
嵌入图像和控制TextLayout
/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
//package org.eclipse.swt.snippets;
/*
 * TextLayout example snippet: using the GlyphMetrics to embedded images in 
 * a TextLayout. 
 *
 * For a list of all SWT example snippets see
 * http://www.eclipse.org/swt/snippets/
 
 * @since 3.2
 */
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.FontMetrics;
import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.graphics.GlyphMetrics;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.graphics.TextLayout;
import org.eclipse.swt.graphics.TextStyle;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Shell;

public class TextLayoutImageControl {

  public static void main(String[] args) {
    Display display = new Display();
    final Shell shell = new Shell(display, SWT.SHELL_TRIM | SWT.DOUBLE_BUFFERED);
    shell.setText("Embedding objects in text");
    final Image[] images = new Image(display, 3232)new Image(display, 2040),
        new Image(display, 4020) };
    int[] colors = SWT.COLOR_BLUE, SWT.COLOR_MAGENTA, SWT.COLOR_GREEN };
    for (int i = 0; i < images.length; i++) {
      GC gc = new GC(images[i]);
      gc.setBackground(display.getSystemColor(colors[i]));
      gc.fillRectangle(images[i].getBounds());
      gc.dispose();
    }

    final Button button = new Button(shell, SWT.PUSH);
    button.setText("Button");
    button.pack();
    String text = "Here is some text with a blue image \uFFFC, a magenta image \uFFFC, a green image \uFFFC, and a button: \uFFFC.";
    final int[] imageOffsets = 365572 };
    final TextLayout layout = new TextLayout(display);
    layout.setText(text);
    for (int i = 0; i < images.length; i++) {
      Rectangle bounds = images[i].getBounds();
      TextStyle imageStyle = new TextStyle(null, null, null);
      imageStyle.metrics = new GlyphMetrics(bounds.height, 0, bounds.width);
      layout.setStyle(imageStyle, imageOffsets[i], imageOffsets[i]);
    }
    Rectangle bounds = button.getBounds();
    TextStyle buttonStyle = new TextStyle(null, null, null);
    buttonStyle.metrics = new GlyphMetrics(bounds.height, 0, bounds.width);
    final int buttonOffset = text.length() 2;
    layout.setStyle(buttonStyle, buttonOffset, buttonOffset);

    shell.addListener(SWT.Paint, new Listener() {
      public void handleEvent(Event event) {
        GC gc = event.gc;
        Point margin = new Point(1010);
        layout.setWidth(shell.getClientArea().width - * margin.x);
        layout.draw(event.gc, margin.x, margin.y);
        for (int i = 0; i < images.length; i++) {
          int offset = imageOffsets[i];
          int lineIndex = layout.getLineIndex(offset);
          FontMetrics lineMetrics = layout.getLineMetrics(lineIndex);
          Point point = layout.getLocation(offset, false);
          GlyphMetrics glyphMetrics = layout.getStyle(offset).metrics;
          gc.drawImage(images[i], point.x + margin.x, point.y + margin.y + lineMetrics.getAscent()
              - glyphMetrics.ascent);
        }
        int lineIndex = layout.getLineIndex(buttonOffset);
        FontMetrics lineMetrics = layout.getLineMetrics(lineIndex);
        Point point = layout.getLocation(buttonOffset, false);
        GlyphMetrics glyphMetrics = layout.getStyle(buttonOffset).metrics;
        button.setLocation(point.x + margin.x, point.y + margin.y + lineMetrics.getAscent()
            - glyphMetrics.ascent);
      }
    });

    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch())
        display.sleep();
    }
    layout.dispose();
    for (int i = 0; i < images.length; i++) {
      images[i].dispose();
    }
    display.dispose();
  }
}
17. 41. 文本布局
17. 41. 1. TextLayout :字体,样式和颜色TextLayout :字体,样式和颜色
17. 41. 2. TextLayout的UnicodeTextLayout的Unicode
17. 41. 3. 绘制换行文本使用TextLayout绘制换行文本使用TextLayout
17. 41. 4. TextLayout :使用TextLayout,对齐和缩进TextLayout :使用TextLayout,对齐和缩进
17. 41. 5. Subscript and superscript: using the rise field of a TextStyleSubscript and superscript: using the rise field of a TextStyle
17. 41. 6. 嵌入图像和控制TextLayout嵌入图像和控制TextLayout
17. 41. 7. TextLayoutTextLayout
17. 41. 8. TextLayout:强调TextLayout:强调
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.