/*
* Copyright (C) 2004 TiongHiang Lee
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Email: thlee@onemindsoft.org
*/
package org.onemind.swingweb.widgetdemo;
import java.awt.Container;
import java.awt.Insets;
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.table.DefaultTableModel;
import org.onemind.swingweb.component.layout.TableLayout;
public class TableDemo extends AbstractDemo implements ChangeListener
{
public TableDemo(DemoConsole console)
{
super("Table", console);
add(getDemoArea());
}
public Container getDemoArea()
{
JPanel pnl = new JPanel();
TableLayout layout = new TableLayout(pnl);
layout.getConstraint().insets = new Insets(5, 5, 5, 5);
pnl.setLayout(layout);
//Simple table with table listener
JTable t = getExampleTable();
layout.addNextRow(new JLabel("Simple table with TableListener (will submit on change)"));
layout.addNextRow(t);
//Simple table without table listener
t = getExampleTable();
layout.addNextRow(new JLabel("Simple table without TableListener"));
layout.addNextRow(t);
//Simple table without table listener, with validation renderer
t = getExampleTable();
layout.addNextRow(new JLabel("Simple table without TableListener, with int field formater"));
//t.setCellEditor(anEditor);
layout.addNextRow(t);
addListeners(t);
t = getExampleTable();
t.setEnabled(false);
layout.addNextRow(new JLabel("Disabled table"));
layout.addNextRow(t);
return pnl;
}
private void addListeners(JTable table)
{
table.getModel().addTableModelListener(new javax.swing.event.TableModelListener()
{
public void tableChanged(javax.swing.event.TableModelEvent e)
{
getConsole().log("TableModelEvent at " + e.getFirstRow() + ", " + e.getColumn() + "\n");
}
});
table.getSelectionModel().addListSelectionListener(new ListSelectionListener()
{
public void valueChanged(ListSelectionEvent e)
{
getConsole().log(e.toString());
}
});
table.getColumnModel().addColumnModelListener(new TableColumnModelListener()
{
public void columnMarginChanged(ChangeEvent e)
{
getConsole().log(e.toString());
}
public void columnSelectionChanged(ListSelectionEvent e)
{
getConsole().log(e.toString());
}
public void columnAdded(TableColumnModelEvent e)
{
getConsole().log(e.toString());
}
public void columnMoved(TableColumnModelEvent e)
{
getConsole().log(e.toString());
}
public void columnRemoved(TableColumnModelEvent e)
{
getConsole().log(e.toString());
}
});
}
private JTable getExampleTable()
{
String[] columnNames = new String[]{"First Name", "Last Name", "Age", "Married"};
Object[][] datas = new Object[][]{{"John", "Smith", new Integer(24), null},
{"Mary", "Moo", new Integer(23), new Boolean(true)}, {"Anthony", "Hudson", new Integer(44), null},
{"Tom", "Wood", null, null}};
JTable table = new JTable();
table.setModel(new DefaultTableModel(datas, columnNames)
{
Class[] types = new Class[]{java.lang.String.class, java.lang.String.class, java.lang.Integer.class,
java.lang.Boolean.class};
public Class getColumnClass(int columnIndex)
{
return types[columnIndex];
}
});
return table;
}
public void stateChanged(ChangeEvent e)
{
getConsole().log(e.toString());
}
}