控制编辑 : 控件编辑器 « 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. 77. 1. 控制编辑

ControlEditor offers basic control-editing abilities. It has three derived classes: TableEditor, TreeEditor, and TableTreeEditor.

控制编辑
import java.util.HashMap;
import java.util.Map;

import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.ControlEditor;
import org.eclipse.swt.events.ModifyEvent;
import org.eclipse.swt.events.ModifyListener;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.RGB;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;

public class ControlEditorSample {
  private static final Map COLORS = new HashMap();
  static {
    COLORS.put("red"new RGB(25500));
    COLORS.put("green"new RGB(02550));
    COLORS.put("blue"new RGB(00255));
    COLORS.put("yellow"new RGB(2552550));
    COLORS.put("black"new RGB(000));
    COLORS.put("white"new RGB(255255255));
  }

  static Display display = new Display();

  static Color color = new Color(display, 25500);

  public static void main(String[] args) {

    final Shell shell = new Shell(display);
    shell.setText("Control Editor");

    final Composite composite = new Composite(shell, SWT.NONE);
    composite.setBackground(color);
    composite.setBounds(00300100);

    ControlEditor editor = new ControlEditor(composite);
    final Text text = new Text(composite, SWT.BORDER);
    text.addModifyListener(new ModifyListener() {
      public void modifyText(ModifyEvent event) {
        RGB rgb = (RGBCOLORS.get(text.getText());
        if (rgb != null) {
          if (color != null)
            color.dispose();
          color = new Color(shell.getDisplay(), rgb);
          composite.setBackground(color);
        }
      }
    });

    // Place the editor in the top middle of the parent composite
    editor.horizontalAlignment = SWT.CENTER;
    editor.verticalAlignment = SWT.TOP;
    Point size = text.computeSize(SWT.DEFAULT, SWT.DEFAULT);
    editor.minimumWidth = size.x;
    editor.minimumHeight = size.y;
    editor.setEditor(text);

    shell.pack();
    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch()) {
        display.sleep();
      }
    }
    if (color != null)
      color.dispose();
    display.dispose();

  }
}
17. 77. 控件编辑器
17. 77. 1. 控制编辑控制编辑
17. 77. 2. 控制编辑与Dialog控制编辑与Dialog
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.