- 论坛徽章:
- 0
|
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.event.ActionEvent;
import javax.swing.JCheckBoxMenuItem;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JScrollPane;
import javax.swing.JTable;
/*
* Created on 2005-1-4
*
* To change the template for this generated file go to
* Window& references&Java&Code Generation&Code and Comments
*/
/**
* @author Administrator
*
* To change the template for this generated type comment go to
* Window& references&Java&Code Generation&Code and Comments
*/
public class tabletest
{
public static void main(String args[])
{
JFrame frame = new PlanetTable();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.show();
}
}
class PlanetTable extends JFrame
{
public PlanetTable()
{
setTitle(" lanetTable" ;
setSize(300,400);
table = new JTable();
table.setModel(new ReadOnlyDefaultTableModel(columnNames,10));
for (int i = 0; i < table.getRowCount(); i++)
{
for (int j = 0; j < table.getColumnCount(); j++)
{
table.setValueAt(new Integer(i),i,j);
}
}
table.setBackground(Color.WHITE);
getContentPane().add(new JScrollPane(table),BorderLayout.CENTER);
JMenuBar menuBar = new JMenuBar();
setJMenuBar(menuBar);
JMenu selectionMenu = new JMenu("Selection" ;
menuBar.add(selectionMenu);
rowsItem.setSelected(table.getRowSelectionAllowed());
columnsItem.setSelected(table.getColumnSelectionAllowed());
cellsItem.setSelected(table.getColumnSelectionAllowed());
rowsItem.addActionListener(lSymAction);
selectionMenu.add(rowsItem);
columnsItem.addActionListener(lSymAction);
selectionMenu.add(columnsItem);
cellsItem.addActionListener(lSymAction);
selectionMenu.add(cellsItem);
}
private Object[][] cells =
{
{"","","","",""},
{"","","","",""},
{"","","","",""},
{"","","","",""},
{"","","","",""},
{"","","","",""}
};
private String[] columnNames =
{
" lanet","Radius","Moons","Gaseous","Color"
};
private JTable table;
final JCheckBoxMenuItem rowsItem = new JCheckBoxMenuItem("Rows" ;
final JCheckBoxMenuItem columnsItem = new JCheckBoxMenuItem("Columns" ;
final JCheckBoxMenuItem cellsItem = new JCheckBoxMenuItem("Cells" ;
SymAction lSymAction = new SymAction();
class SymAction implements java.awt.event.ActionListener
{
/* (non-Javadoc)
* @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
*/
public void actionPerformed(ActionEvent event)
{
// TODO Auto-generated method stub
Object object = event.getSource();
if (object == rowsItem)
rowSelected();
else if (object == columnsItem)
colSelected();
else if (object == cellsItem)
cellSelected();
}
}
public void rowSelected()
{
table.clearSelection();
table.setRowSelectionAllowed(rowsItem.isSelected());
cellsItem.setSelected(table.getCellSelectionEnabled());
}
public void colSelected()
{
table.clearSelection();
table.setColumnSelectionAllowed(columnsItem.isSelected());
cellsItem.setSelected(table.getCellSelectionEnabled());
}
public void cellSelected()
{
table.clearSelection();
table.setCellSelectionEnabled(cellsItem.isSelected());
rowsItem.setSelected(table.getRowSelectionAllowed());
columnsItem.setSelected(table.getColumnSelectionAllowed());
}
}
import java.util.Vector;
import javax.swing.table.DefaultTableModel;
/*
* Created on 2005-1-4
*
* To change the template for this generated file go to
* Window& references&Java&Code Generation&Code and Comments
*/
/**
* @author Administrator
*
* To change the template for this generated type comment go to
* Window& references&Java&Code Generation&Code and Comments
*/
public class ReadOnlyDefaultTableModel extends DefaultTableModel
{
private int rwCols = 0; // read/write columne list. we use bits to set it for faster
public ReadOnlyDefaultTableModel(Object[] columnNames, int numRows)
{
super(columnNames, numRows);
}
public ReadOnlyDefaultTableModel(Object[] columnNames, int numRows, int _rwCols)
{
super(columnNames, numRows);
rwCols = _rwCols;
}
public boolean isCellEditable(int row, int column)
{
if ((column >; 32) || (column < 0)) return false;
return (rwCols & (1 << column)) != 0;
}
public Class getColumnClass(int col)
{
Vector v = (Vector) dataVector.elementAt(0);
Object o = v.elementAt(col);
return o.getClass();
}
} |
|