动画图标树范例 : 树 « Swing组件 « 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 » Swing组件 » 屏幕截图 
动画图标树范例
动画图标树范例

// Example from http://www.crionics.com/products/opensource/faq/swing_ex/SwingExamples.html

/* (swing1.1.1beta2) */


import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.Image;
import java.awt.Rectangle;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.image.ImageObserver;
import java.util.Hashtable;

import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTree;
import javax.swing.UIManager;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.DefaultTreeCellRenderer;
import javax.swing.tree.DefaultTreeModel;
import javax.swing.tree.TreeNode;
import javax.swing.tree.TreePath;

/**
 @version 1.0 06/20/99
 */
public class AnimatedIconTreeExample extends JFrame {

  public AnimatedIconTreeExample() {
    super("AnimatedIconTreeExample");
    String[] strs = "CARNIVORA"// 0
        "Felidae"// 1
        "Acinonyx jutatus  (cheetah)"// 2
        "Panthera leo  (lion)"// 3
        "Canidae"// 4
        "Canis lupus  (wolf)"// 5
        "Lycaon pictus  (lycaon)"// 6
        "Vulpes Vulpes  (fox)" }// 7

    IconNode[] nodes = new IconNode[strs.length];
    for (int i = 0; i < strs.length; i++) {
      nodes[inew IconNode(strs[i]);
    }
    nodes[0].add(nodes[1]);
    nodes[0].add(nodes[4]);
    nodes[1].add(nodes[2]);
    nodes[1].add(nodes[3]);
    nodes[4].add(nodes[5]);
    nodes[4].add(nodes[6]);
    nodes[4].add(nodes[7]);

    nodes[2].setIcon(new ImageIcon("Java2sAnimation.gif"));
    nodes[3].setIcon(new ImageIcon("Java2sAnimation.gif"));
    nodes[5].setIcon(new ImageIcon("Java2sAnimation.gif"));
    nodes[6].setIcon(new ImageIcon("Java2sAnimation.gif"));
    nodes[7].setIcon(new ImageIcon("Java2sAnimation.gif"));

    JTree tree = new JTree(nodes[0]);
    tree.setCellRenderer(new IconNodeRenderer());
    setImageObserver(tree, nodes);

    JScrollPane sp = new JScrollPane(tree);
    getContentPane().add(sp, BorderLayout.CENTER);
  }

  private void setImageObserver(JTree tree, IconNode[] nodes) {
    for (int i = 0; i < nodes.length; i++) {
      ImageIcon icon = (ImageIconnodes[i].getIcon();
      if (icon != null) {
        icon.setImageObserver(new NodeImageObserver(tree, nodes[i]));
      }
    }
  }

  class NodeImageObserver implements ImageObserver {
    JTree tree;

    DefaultTreeModel model;

    TreeNode node;

    NodeImageObserver(JTree tree, TreeNode node) {
      this.tree = tree;
      this.model = (DefaultTreeModeltree.getModel();
      this.node = node;
    }

    public boolean imageUpdate(Image img, int flags, int x, int y, int w,
        int h) {
      if ((flags & (FRAMEBITS | ALLBITS)) != 0) {
        TreePath path = new TreePath(model.getPathToRoot(node));
        Rectangle rect = tree.getPathBounds(path);
        if (rect != null) {
          tree.repaint(rect);
        }
      }
      return (flags & (ALLBITS | ABORT)) == 0;
    }
  }

  public static void main(String args[]) {
    try {
        UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
    catch (Exception evt) {}
  
    AnimatedIconTreeExample frame = new AnimatedIconTreeExample();
    frame.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });
    frame.setSize(280200);
    frame.setVisible(true);
  }
}

class IconNodeRenderer extends DefaultTreeCellRenderer {

  public Component getTreeCellRendererComponent(JTree tree, Object value,
      boolean sel, boolean expanded, boolean leaf, int row,
      boolean hasFocus) {

    super.getTreeCellRendererComponent(tree, value, sel, expanded, leaf,
        row, hasFocus);

    Icon icon = ((IconNodevalue).getIcon();

    if (icon == null) {
      Hashtable icons = (Hashtabletree.getClientProperty("JTree.icons");
      String name = ((IconNodevalue).getIconName();
      if ((icons != null&& (name != null)) {
        icon = (Iconicons.get(name);
        if (icon != null) {
          setIcon(icon);
        }
      }
    else {
      setIcon(icon);
    }

    return this;
  }
}

class IconNode extends DefaultMutableTreeNode {

  protected Icon icon;

  protected String iconName;

  public IconNode() {
    this(null);
  }

  public IconNode(Object userObject) {
    this(userObject, true, null);
  }

  public IconNode(Object userObject, boolean allowsChildren, Icon icon) {
    super(userObject, allowsChildren);
    this.icon = icon;
  }

  public void setIcon(Icon icon) {
    this.icon = icon;
  }

  public Icon getIcon() {
    return icon;
  }

  public String getIconName() {
    if (iconName != null) {
      return iconName;
    else {
      String str = userObject.toString();
      int index = str.lastIndexOf(".");
      if (index != -1) {
        return str.substring(++index);
      else {
        return null;
      }
    }
  }

  public void setIconName(String name) {
    iconName = name;
  }

}

           
       
Related examples in the same category
1. Disabled Node Tree ExampleDisabled Node Tree Example
2. 残疾人节点树示例2残疾人节点树示例2
3. 单纯文字树范例单纯文字树范例
4. 动画图标树范例2
5. 多线树范例多线树范例
6. 全编辑树范例全编辑树范例
7. 工具提示树范例工具提示树范例
8. 复选框节点树范例复选框节点树范例
9. 看不见的节点树范例看不见的节点树范例
10. 图标节点树范例图标节点树范例
11. Source code for building a tree in Swing
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.