建立一个复杂ListCellRenderer :字体,图标和颜色 : 列表控件渲染 « Swing « 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 教程 » Swing » 列表控件渲染 
14. 41. 4. 建立一个复杂ListCellRenderer :字体,图标和颜色
建立一个复杂ListCellRenderer :字体,图标和颜色
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.Font;
import java.awt.Graphics;

import javax.swing.DefaultListCellRenderer;
import javax.swing.Icon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JScrollPane;
import javax.swing.ListCellRenderer;

class ComplexCellRenderer implements ListCellRenderer {
  protected DefaultListCellRenderer defaultRenderer = new DefaultListCellRenderer();

  public Component getListCellRendererComponent(JList list, Object value, int index,
      boolean isSelected, boolean cellHasFocus) {
    Font theFont = null;
    Color theForeground = null;
    Icon theIcon = null;
    String theText = null;

    JLabel renderer = (JLabeldefaultRenderer.getListCellRendererComponent(list, value, index,
        isSelected, cellHasFocus);

    if (value instanceof Object[]) {
      Object values[] (Object[]) value;
      theFont = (Fontvalues[0];
      theForeground = (Colorvalues[1];
      theIcon = (Iconvalues[2];
      theText = (Stringvalues[3];
    else {
      theFont = list.getFont();
      theForeground = list.getForeground();
      theText = "";
    }
    if (!isSelected) {
      renderer.setForeground(theForeground);
    }
    if (theIcon != null) {
      renderer.setIcon(theIcon);
    }
    renderer.setText(theText);
    renderer.setFont(theFont);
    return renderer;
  }
}

public class ComplexRenderingSample {
  public static void main(String args[]) {
    Object elements[][] {
        new Font("Helvetica", Font.PLAIN, 20), Color.RED, new MyIcon()"A" },
        new Font("TimesRoman", Font.BOLD, 14), Color.BLUE, new MyIcon()"A" },
        new Font("Courier", Font.ITALIC, 18), Color.GREEN, new MyIcon()"A" },
        new Font("Helvetica", Font.BOLD | Font.ITALIC, 12), Color.GRAY, new MyIcon()"A" },
        new Font("TimesRoman", Font.PLAIN, 32), Color.PINK, new MyIcon()"A" },
        new Font("Courier", Font.BOLD, 16), Color.YELLOW, new MyIcon()"A" },
        new Font("Helvetica", Font.ITALIC, 8), Color.DARK_GRAY, new MyIcon()"A" } };

    JFrame frame = new JFrame("Complex Renderer");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JList jlist = new JList(elements);
    ListCellRenderer renderer = new ComplexCellRenderer();
    jlist.setCellRenderer(renderer);
    JScrollPane scrollPane = new JScrollPane(jlist);
    frame.add(scrollPane, BorderLayout.CENTER);

    frame.setSize(300200);
    frame.setVisible(true);
  }
}

class MyIcon implements Icon {

  public MyIcon() {
  }

  public int getIconHeight() {
    return 20;
  }

  public int getIconWidth() {
    return 20;
  }

  public void paintIcon(Component c, Graphics g, int x, int y) {
    g.setColor(Color.RED);
    g.drawRect(002525);
  }
}
14. 41. 列表控件渲染
14. 41. 1. 绘制JList元素
14. 41. 2. 安装列表条目渲染安装列表条目渲染
14. 41. 3. 添加您自己的ListCellRenderer添加您自己的ListCellRenderer
14. 41. 4. 建立一个复杂ListCellRenderer :字体,图标和颜色建立一个复杂ListCellRenderer :字体,图标和颜色
14. 41. 5. The items can be arbitrary objects. The toString() method of the objects is displayed in the list component.
14. 41. 6. 设置条目尺寸JList组件
14. 41. 7. 设置项目使用的样本值
14. 41. 8. Change the layout orientation so that its items are displayed top-to-bottom and left-to-right.
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.