我已经尝试了几天在JTable中编码颜色选择器而没有成功。我尝试合并了不同的教程(here,here和here)。我也试过使用DefaultTableModel。
我无法在适当的时刻触发颜色变化并保留它们。单击另一个按钮时,您将看到图标发生变化。我觉得我接近解决方案,但我真的被卡住了。
如果有人能找到出错的地方,那就太棒了。
谢谢!
import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Graphics2D;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import javax.swing.BoxLayout;
import javax.swing.DefaultCellEditor;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JColorChooser;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.table.AbstractTableModel;
import javax.swing.table.DefaultTableCellRenderer;
import javax.swing.table.TableCellRenderer;
public class ButtonExample extends JFrame {
private Object[][] data = {{"toto.bw", "toto", "Button"},
{"tata.bw", "tata", "Button"},
{"titi.bw", "titi", "Button"},
{"tutu.bw", "tutu", "Button"}};
private String[] title = {"Bigwig", "Name", "Color"};
//private TableColumn columnColor;
private CustomTableModel customModel = new CustomTableModel(data,title);
private JTable bigwigsTab = new JTable(customModel);
public ButtonExample(){
this.setTitle("Button Example");
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setLocationRelativeTo(null);
this.setExtendedState(MAXIMIZED_BOTH);
this.setMinimumSize(new Dimension(400,400));
this.setResizable(true);
JScrollPane tableContainer = new JScrollPane(bigwigsTab);
bigwigsTab.setPreferredScrollableViewportSize(new Dimension(400, 400/3));
bigwigsTab.setFillsViewportHeight(true);
bigwigsTab.setDefaultRenderer(JButton.class, new TableComponent());
bigwigsTab.getColumn("Color").setCellRenderer(new ButtonRenderer(Color.blue));
bigwigsTab.getColumn("Color").setCellEditor(new ButtonEditor(new JCheckBox()));
this.setBackground(Color.white);
this.add(tableContainer);
this.setVisible(true);
}
public class CustomTableModel extends AbstractTableModel {
private Object[][] data;
private String[] title;
public CustomTableModel(Object[][] data, String[] title) {
this.data = data;
this.title = title;
}
public int getColumnCount(){
return this.title.length;
}
public int getRowCount(){
return this.data.length;
}
public Object getValueAt(int row, int col){
return this.data[row][col];
}
public String getColumnName(int col){
return this.title[col];
}
public Class getColumnClass(int col){
return this.data[0][col].getClass();
}
public boolean isCellEditable(int row, int col){
if(col==0 || col ==3) return false; //bigwig name and color button should not be editable
return true;
}
public void setValueAt(Object value, int row, int col){
this.data[row][col] = value;
}
}
public class TableComponent extends DefaultTableCellRenderer{
public Component getTableCellRendererComponent(JTable table, Object value,
boolean isSelected, boolean hasFocus, int row, int column){
if(value instanceof JButton)
return (JButton) value;
else
return this;
}
}
public class ButtonRenderer extends JButton implements TableCellRenderer{
private Color currentColor;
public ButtonRenderer(Color c){
this.currentColor = c;
this.setSelectedColor(currentColor);
}
public Component getTableCellRendererComponent(JTable table, Object value,
boolean isSelected, boolean isFocus, int row, int col){
setText((value != null) ? value.toString():"");
return this;
}
private void setSelectedColor(Color newColor) {
if (newColor == null) return;
currentColor = newColor;
this.setIcon(createIcon(currentColor, 16, 16));
this.repaint();
}
private ImageIcon createIcon(Color main, int width, int height) {
BufferedImage image = new BufferedImage(width, height, java.awt.image.BufferedImage.TYPE_INT_RGB);
Graphics2D graphics = image.createGraphics();
graphics.setColor(main);
graphics.fillRect(0, 0, width, height);
graphics.setXORMode(Color.DARK_GRAY);
graphics.drawRect(0, 0, width-1, height-1);
image.flush();
ImageIcon icon = new ImageIcon(image);
return icon;
}
}
public class ButtonEditor extends DefaultCellEditor{
protected JButton button;
private boolean isPushed;
private ButtonListener bListener = new ButtonListener();
private Color selectedColor = null;
public ButtonEditor(JCheckBox checkBox){
super(checkBox);
button = new JButton();
button.setOpaque(true);
button.addActionListener(bListener);
}
public Component getTableCellEditorComponent(JTable table, Object value,
boolean isSelected, int row, int column){
bListener.setRow(row);
bListener.setColumn(column);
bListener.setTable(table);
button.setText((value == null) ? "":value.toString());
return button;
}
class ButtonListener implements ActionListener{
private int column, row;
private JTable table;
private int nbre = 0;
private JButton button;
public void setColumn(int col){this.column = col;}
public void setRow(int row){this.row = row;}
public void setTable(JTable table){this.table = table;}
public JButton getButton(){return this.button;}
public void actionPerformed(ActionEvent event){
Color newColor = JColorChooser.showDialog(null, "Choose a color", Color.blue);
setSelectedColor();
((AbstractTableModel)table.getModel()).setValueAt(button, this.row, this.column);
((AbstractTableModel)table.getModel()).fireTableCellUpdated(this.row, this.column);
selectedColor = newColor;
this.button = ((JButton)event.getSource());
}
}
private void setSelectedColor() {
if (selectedColor == null) return;
button.setIcon(createIcon(selectedColor, 16, 16));
button.repaint();
}
private ImageIcon createIcon(Color main, int width, int height) {
BufferedImage image = new BufferedImage(width, height, java.awt.image.BufferedImage.TYPE_INT_RGB);
Graphics2D graphics = image.createGraphics();
graphics.setColor(main);
graphics.fillRect(0, 0, width, height);
graphics.setXORMode(Color.DARK_GRAY);
graphics.drawRect(0, 0, width-1, height-1);
image.flush();
ImageIcon icon = new ImageIcon(image);
return icon;
}
}
public static void main(String[] args) {
ButtonExample coreFacility = new ButtonExample();
coreFacility.setVisible(true);
}
}
答案 0 :(得分:1)
很抱歉,您的代码示例很难找到错误。所以我决定写自己的,以便你可以对它有所了解。以下是我对上述任务的处理方法。
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.AbstractCellEditor;
import javax.swing.JButton;
import javax.swing.JColorChooser;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.table.AbstractTableModel;
import javax.swing.table.TableCellEditor;
import javax.swing.table.TableCellRenderer;
import javax.swing.table.TableColumn;
import javax.swing.table.TableModel;
class ColorTableModel extends AbstractTableModel {
Object rowData[][] = {{"Name 1", Color.RED}, {"Name 2", Color.BLUE}, {"Name 3", Color.GREEN}};
String columnNames[] = {"Name", "Color"};
public int getColumnCount() {
return columnNames.length;
}
public String getColumnName(int column) {
return columnNames[column];
}
public int getRowCount() {
return rowData.length;
}
public Object getValueAt(int row, int column) {
return rowData[row][column];
}
public Class getColumnClass(int column) {
return this.rowData[0][column].getClass();
}
public void setValueAt(Object value, int row, int column) {
rowData[row][column] = value;
}
public boolean isCellEditable(int row, int column) {
return (column != 0);
}
}
class ColorChooserEditor extends AbstractCellEditor implements TableCellEditor {
private JButton button = new JButton();
Color savedColor;
public ColorChooserEditor() {
ActionListener actionListener = new ActionListener() {
public void actionPerformed(ActionEvent actionEvent) {
Color color = JColorChooser.showDialog(button, "Choose a color", savedColor);
ColorChooserEditor.this.changeColor(color);
}
};
button.addActionListener(actionListener);
}
public Color getCellEditorValue() {
return savedColor;
}
private void changeColor(Color color) {
if (color != null) {
savedColor = color;
button.setBackground(color);
}
}
public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected,
int row, int column) {
changeColor((Color) value);
return button;
}
}
class ChooserTableSample {
public static void main(String args[]) {
JFrame frame = new JFrame("Button Example");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
TableModel model = new ColorTableModel();
JTable table = new JTable(model);
TableColumn column = table.getColumnModel().getColumn(1);
TableCellEditor editor = new ColorChooserEditor();
column.setCellRenderer(new ButtonRenderer());
column.setCellEditor(editor);
JScrollPane scrollPane = new JScrollPane(table);
frame.add(scrollPane, BorderLayout.CENTER);
frame.setSize(400, 150);
frame.setVisible(true);
}
}
class ButtonRenderer extends JButton implements TableCellRenderer {
public Component getTableCellRendererComponent(JTable table, Object value,
boolean isSelected, boolean isFocus, int row, int col) {
setBackground((Color) value);
return this;
}
希望这对你有所帮助。