Color Table CellRenderer : 表生成器编辑器 « 图形用户界面 « 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 » 图形用户界面 » 表生成器编辑器屏幕截图 
Color Table CellRenderer
Color Table CellRenderer
 
/**
 @version 1.00 1999-07-17
 @author Cay Horstmann
 */

import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.util.EventObject;

import javax.swing.DefaultCellEditor;
import javax.swing.ImageIcon;
import javax.swing.JColorChooser;
import javax.swing.JComboBox;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.event.CellEditorListener;
import javax.swing.event.ChangeEvent;
import javax.swing.event.EventListenerList;
import javax.swing.table.AbstractTableModel;
import javax.swing.table.TableCellEditor;
import javax.swing.table.TableCellRenderer;
import javax.swing.table.TableColumn;
import javax.swing.table.TableColumnModel;
import javax.swing.table.TableModel;

public class TableCellRenderTest {
  public static void main(String[] args) {
    JFrame frame = new TableCellRenderFrame();
    frame.show();
  }
}

/*
 * the planet table model specifies the values, rendering and editing properties
 * for the planet data
 */

class PlanetTableModel extends AbstractTableModel {
  public String getColumnName(int c) {
    return columnNames[c];
  }

  public Class getColumnClass(int c) {
    return cells[0][c].getClass();
  }

  public int getColumnCount() {
    return cells[0].length;
  }

  public int getRowCount() {
    return cells.length;
  }

  public Object getValueAt(int r, int c) {
    return cells[r][c];
  }

  public void setValueAt(Object obj, int r, int c) {
    cells[r][c= obj;
  }

  public boolean isCellEditable(int r, int c) {
    return c == NAME_COLUMN || c == MOON_COLUMN || c == GASEOUS_COLUMN
        || c == COLOR_COLUMN;
  }

  public static final int NAME_COLUMN = 0;

  public static final int MOON_COLUMN = 2;

  public static final int GASEOUS_COLUMN = 3;

  public static final int COLOR_COLUMN = 4;

  private Object[][] cells = {
      "Mercury"new Double(2440)new Integer(0), Boolean.FALSE,
          Color.yellow, new ImageIcon("Mercury.gif") },
      "Venus"new Double(6052)new Integer(0), Boolean.FALSE,
          Color.yellow, new ImageIcon("Venus.gif") },
      "Earth"new Double(6378)new Integer(1), Boolean.FALSE,
          Color.blue, new ImageIcon("Earth.gif") },
      "Mars"new Double(3397)new Integer(2), Boolean.FALSE,
          Color.red, new ImageIcon("Mars.gif") },
      "Jupiter"new Double(71492)new Integer(16), Boolean.TRUE,
          Color.orange, new ImageIcon("Jupiter.gif") },
      "Saturn"new Double(60268)new Integer(18), Boolean.TRUE,
          Color.orange, new ImageIcon("Saturn.gif") },
      "Uranus"new Double(25559)new Integer(17), Boolean.TRUE,
          Color.blue, new ImageIcon("Uranus.gif") },
      "Neptune"new Double(24766)new Integer(8), Boolean.TRUE,
          Color.blue, new ImageIcon("Neptune.gif") },
      "Pluto"new Double(1137)new Integer(1), Boolean.FALSE,
          Color.black, new ImageIcon("Pluto.gif") } };

  private String[] columnNames = "Planet""Radius""Moons""Gaseous",
      "Color""Image" };
}

class TableCellRenderFrame extends JFrame {
  public TableCellRenderFrame() {
    setTitle("TableCellRenderTest");
    setSize(300200);
    addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });

    TableModel model = new PlanetTableModel();
    JTable table = new JTable(model);

    // set up renderers and editors

    table.setDefaultRenderer(Color.class, new ColorTableCellRenderer());
    table.setDefaultEditor(Color.class, new ColorTableCellEditor());

    JComboBox moonCombo = new JComboBox();
    for (int i = 0; i <= 20; i++)
      moonCombo.addItem(new Integer(i));
    TableColumnModel columnModel = table.getColumnModel();
    TableColumn moonColumn = columnModel
        .getColumn(PlanetTableModel.MOON_COLUMN);
    moonColumn.setCellEditor(new DefaultCellEditor(moonCombo));

    // show table

    table.setRowHeight(100);
    Container contentPane = getContentPane();
    contentPane.add(new JScrollPane(table)"Center");
  }
}

class ColorTableCellRenderer implements TableCellRenderer {
  public Component getTableCellRendererComponent(JTable table, Object value,
      boolean isSelected, boolean hasFocus, int row, int column) {
    panel.setBackground((Colorvalue);
    return panel;
  }

  /*
   * the following panel is returned for all cells, with the background color
   * set to the Color value of the cell
   */

  private JPanel panel = new JPanel();
}

class ColorTableCellEditor extends ColorTableCellRenderer implements
    TableCellEditor {
  ColorTableCellEditor() { // prepare color dialog

    colorChooser = new JColorChooser();
    colorDialog = JColorChooser.createDialog(null, "Planet Color", false,
        colorChooser, new ActionListener() // OK button listener
        {
          public void actionPerformed(ActionEvent event) {
            fireEditingStopped();
          }
        }new ActionListener() // Cancel button listener
        {
          public void actionPerformed(ActionEvent event) {
            fireEditingCanceled();
          }
        });
  }

  public Component getTableCellEditorComponent(JTable table, Object value,
      boolean isSelected, int row, int column) { /*
                              * this is where we get
                              * the current Color
                              * value We store it in
                              * the dialog in case the
                              * user starts editing
                              */
    colorChooser.setColor((Colorvalue);
    return getTableCellRendererComponent(table, value, isSelected, true,
        row, column);
  }

  public boolean isCellEditable(EventObject anEvent) {
    return true;
  }

  public boolean shouldSelectCell(EventObject anEvent) { // start editing
    colorDialog.setVisible(true);

    // tell caller it is ok to select this cell
    return true;
  }

  public void cancelCellEditing() { // editing is canceled--hide dialog
    colorDialog.setVisible(false);
  }

  public boolean stopCellEditing() { // editing is complete--hide dialog
    colorDialog.setVisible(false);

    // tell caller is is ok to use color value
    return true;
  }

  public Object getCellEditorValue() {
    return colorChooser.getColor();
  }

  public void addCellEditorListener(CellEditorListener l) {
    listenerList.add(CellEditorListener.class, l);
  }

  public void removeCellEditorListener(CellEditorListener l) {
    listenerList.remove(CellEditorListener.class, l);
  }

  protected void fireEditingStopped() {
    Object[] listeners = listenerList.getListenerList();
    for (int i = listeners.length - 2; i >= 0; i -= 2)
      ((CellEditorListenerlisteners[i + 1]).editingStopped(event);
  }

  protected void fireEditingCanceled() {
    Object[] listeners = listenerList.getListenerList();
    for (int i = listeners.length - 2; i >= 0; i -= 2)
      ((CellEditorListenerlisteners[i + 1]).editingCanceled(event);
  }

  private Color color;

  private JColorChooser colorChooser;

  private JDialog colorDialog;

  private EventListenerList listenerList = new EventListenerList();

  private ChangeEvent event = new ChangeEvent(this);
}



           
         
  
Related examples in the same category
1. 在一个表格遮荫行和列
2. 黄色列
3. Using Built-In Cell Renderers and Editors in a JTable Component
4. 得到默认单元格
5. 得到默认单元格编辑
6. 在表格组件创建自定义单元格
7. Creating a Class-Based Custom Cell Renderer in a JTable Component
8. 在一个表中使用滑动控件在一个表中使用滑动控件
9. 表格单元格编辑: ComboBoxCellEditor
10. Table with a custom cell renderer and editor for the color dataTable with a custom cell renderer and editor for the color data
11. Table with initialized column sizes and a combo box editorTable with initialized column sizes and a combo box editor
12. StockTable 3: CellRendererStockTable 3: CellRenderer
13. 彩色表CellRenderer彩色表CellRenderer
14. Change Table cell background with column renderer Change Table cell background with column renderer
15. 安装不同表生成器,奇偶行安装不同表生成器,奇偶行
16. A table that allows the user to pick a color from a pulldown listA table that allows the user to pick a color from a pulldown list
17. MixerModel和滑块控件数值MixerModel和滑块控件数值
18. 表编辑:编辑颜色列表编辑:编辑颜色列
19. 并在表格中的JComboBox使用Tab键
20. 创建自定义表单元格编辑器
21. 表格中防止无效值单元格
22. Setting the Activation Click Count for a Table Cell Editor in a JTable Component
23. 在一个表格组件使用JComboBox
24. 使用名单控件作为单元格控件:JSpinner编辑器表格组件
25. 在一个表格栏绘制图像
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.