是否可以检测在表格单元格内单击的按钮?

时间:2014-06-23 13:55:14

标签: java swing jtable jbutton tablecelleditor

我是一个摆动应用程序,其中我有一张桌子,我可以放一个可以包含按钮的面板。代码如下:

 public class MyCellDataRenderer implements TableCellRenderer, TableCellEditor {


@Override
public Component getTableCellRendererComponent(JTable table, Object    value, boolean isSelected, boolean hasFocus,
        int row, int column) {
    MyCellData myCellData = (MyCellData) table.getValueAt(row, column);

    JPanel panel = GridBagHelper.createPanel();
    if (myCellData.isATableHeader()) {
        panel.setBackground(myCellData.getCellBackgroundColor());
        panel.add(myCellData.getContenant(), GridBagHelper.createGridBagConstraints(0, 0, 1, 1,
                GridBagConstraints.NORTHWEST, GridBagConstraints.BOTH));
        return panel;
    }
  boolean condition=true;
    if (condition==true) {
        panel.setBackground(myCellData.getCellBackgroundColor());
        panel.add(myCellData.getContenant(), GridBagHelper.createGridBagConstraints(0, 0, 1, 1,
                GridBagConstraints.NORTHWEST, GridBagConstraints.BOTH));
        return panel;
    }
    panel.setBackground(myCellData.getCellBackgroundColor());
    panel.add(myCellData.getContenant(), GridBagHelper.createGridBagConstraints(0, 0, 1, 1,
            GridBagConstraints.NORTHWEST, GridBagConstraints.BOTH));

    return panel;

}

我的问题是我能否检测到包含在面板内的按钮的点击? 我询问技术上是否可行?

谢谢

2 个答案:

答案 0 :(得分:2)

  

在我的手机中,我有两个按钮和三个标签;他们都在一个小组中。

使用TableCellRenderer and TableCellEditor是正确的。在这个完整的example中,StatusEditor会查询随附的StatusPanel,并在其getCellEditorValue()的实现中返回一个合适的值。

答案 1 :(得分:0)

是的,这是可能的,根据您的应用程序设计,如何做到这一点的方法很少。由于我不知道细节,我建议这个简单的解决方案:

table.addMouseListener(new MouseAdapter() {
    @Override
    public void mouseClicked(MouseEvent e) {
       final int row = table.rowAtPoint(e.getPoint());
       final int column = table.columnAtPoint(e.getPoint());

       if(isButtonCell(row, column)) { //check if the cell is your button
           handleButtonClicked(); //invoke the click button handle
       }
    }
});