拖动文字StyledText控件 : 格式文本事件 « 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. 45. 14. 拖动文字StyledText控件
拖动文字StyledText控件
/*******************************************************************************
 * 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;
/*
 * Dragging text in a StyledText widget
 *
 * 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.custom.StyledText;
import org.eclipse.swt.dnd.DND;
import org.eclipse.swt.dnd.DragSource;
import org.eclipse.swt.dnd.DragSourceAdapter;
import org.eclipse.swt.dnd.DragSourceEvent;
import org.eclipse.swt.dnd.DropTarget;
import org.eclipse.swt.dnd.DropTargetAdapter;
import org.eclipse.swt.dnd.DropTargetEvent;
import org.eclipse.swt.dnd.TextTransfer;
import org.eclipse.swt.dnd.Transfer;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class DragTextInStyledText {
  static String string1 = "A drag source is the provider of data in a Drag and Drop data transfer as well as "
      "the originator of the Drag and Drop operation. The data provided by the drag source "
      "may be transferred to another location in the same widget, to a different widget "
      "within the same application, or to a different application altogether. For example, "
      "you can drag text from your application and drop it on an email application, or you "
      "could drag an item in a tree and drop it below a different node in the same tree.";

  static String string2 = "A drop target receives data in a Drag and Drop operation. The data received by "
      "the drop target may have come from the same widget, from a different widget within "
      "the same application, or from a different application altogether. For example, you "
      "can drag text from an email application and drop it on your application, or you could "
      "drag an item in a tree and drop it below a different node in the same tree.";

  public static void main(String[] args) {
    final Display display = new Display();
    Shell shell = new Shell(display);
    shell.setLayout(new FillLayout());
    int style = SWT.MULTI | SWT.WRAP | SWT.H_SCROLL | SWT.V_SCROLL | SWT.BORDER;
    final StyledText text1 = new StyledText(shell, style);
    text1.setText(string1);
    DragSource source = new DragSource(text1, DND.DROP_COPY | DND.DROP_MOVE);
    source.setTransfer(new Transfer[] { TextTransfer.getInstance() });
    source.addDragListener(new DragSourceAdapter() {
      Point selection;

      public void dragStart(DragSourceEvent e) {
        selection = text1.getSelection();
        e.doit = selection.x != selection.y;
      }

      public void dragSetData(DragSourceEvent e) {
        e.data = text1.getText(selection.x, selection.y - 1);
      }

      public void dragFinished(DragSourceEvent e) {
        if (e.detail == DND.DROP_MOVE) {
          text1.replaceTextRange(selection.x, selection.y - selection.x, "");
        }
        selection = null;
      }
    });

    final StyledText text2 = new StyledText(shell, style);
    text2.setText(string2);
    DropTarget target = new DropTarget(text2, DND.DROP_DEFAULT | DND.DROP_MOVE | DND.DROP_COPY
        | DND.DROP_LINK);
    target.setTransfer(new Transfer[] { TextTransfer.getInstance() });
    target.addDropListener(new DropTargetAdapter() {
      public void dragEnter(DropTargetEvent e) {
        if (e.detail == DND.DROP_DEFAULT)
          e.detail = DND.DROP_COPY;
      }

      public void dragOperationChanged(DropTargetEvent e) {
        if (e.detail == DND.DROP_DEFAULT)
          e.detail = DND.DROP_COPY;
      }

      public void drop(DropTargetEvent e) {
        text2.insert((Stringe.data);
      }
    });
    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch())
        display.sleep();
    }
    display.dispose();
  }
}
17. 45. 格式文本事件
17. 45. 1. 处理事件
17. 45. 2. 过滤变化与VerifyKeyListeners过滤变化与VerifyKeyListeners
17. 45. 3. 允许退字键和删除键允许退字键和删除键
17. 45. 4. 允许箭头键
17. 45. 5. 允许返回键
17. 45. 6. After all VerifyKeyListeners are notified, any VerifyListeners are then notified.
17. 45. 7. 打印出VerifyEvent
17. 45. 8. Against cut-and-paste: Modify the data in VerifyEvent to change the effect of user's keystrokes
17. 45. 9. 否决事件通过设置其doit会员为false 。
17. 45. 10. 反应变化
17. 45. 11. 添加绘制事件监听到StyledText添加绘制事件监听到StyledText
17. 45. 12. 使用验证事件监听StyledText使用验证事件监听StyledText
17. 45. 13. 添加绘制对象监听添加绘制对象监听
17. 45. 14. 拖动文字StyledText控件拖动文字StyledText控件
17. 45. 15. 使用ExtendedModifyEvent
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.