树展开事件演示 : 树 « 图形用户界面 « 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 » 图形用户界面 » 屏幕截图 
树展开事件演示
树展开事件演示

/* From http://java.sun.com/docs/books/tutorial/index.html */

/*
 * Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * -Redistribution of source code must retain the above copyright notice, this
 *  list of conditions and the following disclaimer.
 *
 * -Redistribution in binary form must reproduce the above copyright notice,
 *  this list of conditions and the following disclaimer in the documentation
 *  and/or other materials provided with the distribution.
 *
 * Neither the name of Sun Microsystems, Inc. or the names of contributors may
 * be used to endorse or promote products derived from this software without
 * specific prior written permission.
 *
 * This software is provided "AS IS," without a warranty of any kind. ALL
 * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
 * ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
 * OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MIDROSYSTEMS, INC. ("SUN")
 * AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE
 * AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
 * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST
 * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,
 * INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY
 * OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE,
 * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 *
 * You acknowledge that this software is not designed, licensed or intended
 * for use in the design, construction, operation or maintenance of any
 * nuclear facility.
 */
/*
 * TreeExpandEventDemo.java is a 1.4 example that requires no other files.
 */

import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;

import javax.swing.BorderFactory;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTree;
import javax.swing.event.TreeExpansionEvent;
import javax.swing.event.TreeExpansionListener;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.TreeNode;

public class TreeExpandEventDemo extends JPanel {
  DemoArea demoArea;

  JTextArea textArea;

  final static String newline = "\n";

  public TreeExpandEventDemo() {
    super(new GridBagLayout());
    GridBagLayout gridbag = (GridBagLayoutgetLayout();
    GridBagConstraints c = new GridBagConstraints();

    c.fill = GridBagConstraints.BOTH;
    c.gridwidth = GridBagConstraints.REMAINDER;
    c.weightx = 1.0;
    c.weighty = 1.0;

    c.insets = new Insets(1111);
    demoArea = new DemoArea();
    gridbag.setConstraints(demoArea, c);
    add(demoArea);

    c.insets = new Insets(0000);
    textArea = new JTextArea();
    textArea.setEditable(false);
    JScrollPane scrollPane = new JScrollPane(textArea);
    scrollPane
        .setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
    scrollPane.setPreferredSize(new Dimension(20075));
    gridbag.setConstraints(scrollPane, c);
    add(scrollPane);

    setPreferredSize(new Dimension(450450));
    setBorder(BorderFactory.createEmptyBorder(20202020));
  }

  void saySomething(String eventDescription, TreeExpansionEvent e) {
    textArea.append(eventDescription + "; " "path = " + e.getPath()
        + newline);
  }

  class DemoArea extends JScrollPane implements TreeExpansionListener {
    Dimension minSize = new Dimension(100100);

    JTree tree;

    public DemoArea() {
      TreeNode rootNode = createNodes();
      tree = new JTree(rootNode);
      tree.addTreeExpansionListener(this);

      setViewportView(tree);
    }

    private TreeNode createNodes() {
      DefaultMutableTreeNode root;
      DefaultMutableTreeNode grandparent;
      DefaultMutableTreeNode parent;
      DefaultMutableTreeNode child;

      root = new DefaultMutableTreeNode("San Francisco");

      grandparent = new DefaultMutableTreeNode("Potrero Hill");
      root.add(grandparent);
      //
      parent = new DefaultMutableTreeNode("Restaurants");
      grandparent.add(parent);
      child = new DefaultMutableTreeNode("Thai Barbeque");
      parent.add(child);
      child = new DefaultMutableTreeNode("Goat Hill Pizza");
      parent.add(child);
      //
      parent = new DefaultMutableTreeNode("Grocery Stores");
      grandparent.add(parent);
      child = new DefaultMutableTreeNode("Good Life Grocery");
      parent.add(child);
      child = new DefaultMutableTreeNode("Safeway");
      parent.add(child);

      grandparent = new DefaultMutableTreeNode("Noe Valley");
      root.add(grandparent);
      //
      parent = new DefaultMutableTreeNode("Restaurants");
      grandparent.add(parent);
      child = new DefaultMutableTreeNode("Hamano Sushi");
      parent.add(child);
      child = new DefaultMutableTreeNode("Hahn's Hibachi");
      parent.add(child);
      //
      parent = new DefaultMutableTreeNode("Grocery Stores");
      grandparent.add(parent);
      child = new DefaultMutableTreeNode("Real Foods");
      parent.add(child);
      child = new DefaultMutableTreeNode("Bell Market");
      parent.add(child);

      return root;
    }

    public Dimension getMinimumSize() {
      return minSize;
    }

    public Dimension getPreferredSize() {
      return minSize;
    }

    // Required by TreeExpansionListener interface.
    public void treeExpanded(TreeExpansionEvent e) {
      saySomething("Tree-expanded event detected", e);
    }

    // Required by TreeExpansionListener interface.
    public void treeCollapsed(TreeExpansionEvent e) {
      saySomething("Tree-collapsed event detected", e);
    }
  }

  /**
   * Create the GUI and show it. For thread safety, this method should be
   * invoked from the event-dispatching thread.
   */
  private static void createAndShowGUI() {
    //Make sure we have nice window decorations.
    JFrame.setDefaultLookAndFeelDecorated(true);

    //Create and set up the window.
    JFrame frame = new JFrame("TreeExpandEventDemo");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    //Create and set up the content pane.
    JComponent newContentPane = new TreeExpandEventDemo();
    newContentPane.setOpaque(true)//content panes must be opaque
    frame.setContentPane(newContentPane);

    //Display the window.
    frame.pack();
    frame.setVisible(true);
  }

  public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
      public void run() {
        createAndShowGUI();
      }
    });
  }
}

           
       
Related examples in the same category
1. 建立一个基于DefaultMutableTreeNode的树建立一个基于DefaultMutableTreeNode的树
2. 添加树到JScrollPane添加树到JScrollPane
3. 谱系树谱系树
4. 树线树线
5. DefaultMutableTreeNode节点树样本DefaultMutableTreeNode节点树样本
6. 在一个JTree显示一个文件系统在一个JTree显示一个文件系统
7. 基于JTree的类浏览器基于JTree的类浏览器
8. 显示类树显示类树
9. 编辑树编辑树
10. 实现TreeSelectionListener创建自己事件监听实现TreeSelectionListener创建自己事件监听
11. 文件夹树图示文件夹树图示
12. 文件树弹出菜单文件树弹出菜单
13. 文件树工具提示文件树工具提示
14. 祖树图标祖树图标
15. 树图示演示树图示演示
16. DefaultMutableTreeNode和用户对象DefaultMutableTreeNode和用户对象
17. 在树上显示用户对象在树上显示用户对象
18. 树:拖放树:拖放
19. 树打开图示树打开图示
20. 遍历树遍历树
21. 基于数组结构树基于数组结构树
22. 树将打开事件和监听树将打开事件和监听
23. 设置树线设置树线
24. 树选择树选择
25. JTree.DynamicUtilTreeNode.createChildrenJTree.DynamicUtilTreeNode.createChildren
26. 安装提示工具( JTree )安装提示工具( JTree )
27. 树展开事件演示2树展开事件演示2
28. 添加控件到JTree添加控件到JTree
29. 组件拖放文件到树组件拖放文件到树
30. DnD (drag and drop)JTree code DnD (drag and drop)JTree code
31. 建立了一棵树,填充hashtables建立了一棵树,填充hashtables
32. A simple test to see how we can build a tree and populate itA simple test to see how we can build a tree and populate it
33. 安装自定义图标安装自定义图标
34. 建立了一棵树,定义图标建立了一棵树,定义图标
35. 在一个JTree显示分层数据在一个JTree显示分层数据
36. 添加和删除树节点和扩大树节点
37. 文件系统树
38. TreeExpansionListener和TreeExpansionEventTreeExpansionListener和TreeExpansionEvent
39. Enabling and Disabling Multiple Selections in a JTree Component
40. 只允许一个单一的节点被选中(默认)
41. Allow selection to span one vertical contiguous set of visible nodes
42. 允许多个节点选择
43. 设置行高JTree
44. 所有行15像素高度
45. 每一行行高单独计算
46. 清除内部缓存的行高
47. Preventing Expansion or Collapse of a Node in a JTree: override JTree.setExpandedState()
48. 从JTree组件删除节点
49. JTree root cannot be removed with removeNodeFromParent(), use DefaultTreeModel.setRoot() to remove the root
50. Listening for Expansion and Collapse Events in a JTree Component
51. Expansion and Collapse Events in a JTree are fired before a node is expanded or collapsed can be vetoed, thereby preventing the operation.
52. 创建JTree组件
53. Changing and Removing the Default Icons in a JTree Component
54. 使用UIManager更改默认图标JTree
55. 在JTree组件使用选定的节点
56. 遍历的所有节点JTree组件
57. 遍历所有节点树
58. 在JTree组件找到一个节点
59. Search backward from last visible row looking for any visible node whose name starts with prefix.
60. Find the path regardless of visibility that matches the specified sequence of names
61. 增加一个节点到JTree组件
62. 返回一个TreePath含有指定的节点。
63. Converting All Nodes in a JTree Component to a TreePath Array
64. Get path for all expanded or not expanded tree pathes
65. Expanding or Collapsing All Nodes in a JTree Component
66. Preventing the Expansion or Collapse of a Node in a JTree Component
67. 事件选择监听在JTree组件
68. 弹出菜单连接到JTree
69. 删除节点JTree
70. 添加编辑节点JTree
71. 搜索节点JTree
72. 拖放的一组文件到了一棵树
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.