Swing/CellEditorLayout のバックアップ(No.2)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/CellEditorLayout へ行く。
- 1 (2009-02-02 (月) 14:08:34)
- 2 (2009-08-10 (月) 15:49:29)
- 3 (2011-08-30 (火) 18:23:06)
- 4 (2011-08-30 (火) 19:41:13)
- 5 (2012-04-04 (水) 22:14:02)
- 6 (2013-01-12 (土) 21:47:35)
- 7 (2013-07-26 (金) 00:59:27)
- 8 (2013-08-28 (水) 12:19:34)
- 9 (2013-09-04 (水) 00:06:37)
- 10 (2013-10-12 (土) 20:15:23)
- 11 (2013-10-16 (水) 14:25:57)
- 12 (2014-03-26 (水) 16:07:48)
- 13 (2014-11-25 (火) 03:03:31)
- 14 (2015-02-10 (火) 15:22:44)
- 15 (2015-03-08 (日) 18:50:38)
- 16 (2016-03-09 (水) 21:11:39)
- 17 (2016-06-01 (水) 21:46:08)
- 18 (2017-03-29 (水) 15:42:49)
- 19 (2018-02-17 (土) 20:18:21)
- 20 (2020-01-29 (水) 18:48:08)
- 21 (2021-07-22 (木) 22:17:24)
- 22 (2024-02-03 (土) 13:57:30)
TITLE:TableCellEditorのレイアウトを変更
Posted by terai at 2009-02-02
TableCellEditorのレイアウトを変更
TableCellEditorのレイアウトを変更して、CellEditorの隣にJButtonを配置します。
- &jnlp;
- &jar;
- &zip;
#screenshot
サンプルコード
class CustomCellEditor extends DefaultCellEditor {
private static final int BUTTON_WIDTH = 20;
protected final JButton button = new JButton();
public CustomCellEditor(final JTextField field) {
super(field);
field.add(button);
field.setBorder(BorderFactory.createEmptyBorder(0,2,0,BUTTON_WIDTH));
field.addHierarchyListener(new HierarchyListener() {
public void hierarchyChanged(HierarchyEvent e) {
if((e.getChangeFlags() & HierarchyEvent.SHOWING_CHANGED)!=0
&& field.isShowing()) {
Rectangle r = field.getBounds();
button.setBounds(r.width-BUTTON_WIDTH, 0, BUTTON_WIDTH, r.height);
}
}
});
}
}
class CustomComponentCellEditor extends AbstractCellEditor implements TableCellEditor {
protected final JTextField field;
protected JButton button;
private final JPanel panel = new JPanel(new BorderLayout());
public CustomComponentCellEditor() {
super();
field = new JTextField();
button = new JButton();
button.setPreferredSize(new Dimension(25, 0));
field.setBorder(BorderFactory.createEmptyBorder(0,2,0,0));
panel.add(field);
panel.add(button, BorderLayout.EAST);
}
public Object getCellEditorValue() {
return field.getText();
}
public Component getTableCellEditorComponent(JTable table, Object value,
boolean isSelected, int row, int column) {
field.setText(value!=null?value.toString():"");
return panel;
}
public boolean isCellEditable(final java.util.EventObject e) {
if(e instanceof MouseEvent) {
return ((MouseEvent)e).getClickCount()==2;
}else if(e instanceof KeyEvent) {
EventQueue.invokeLater(new Runnable() {
public void run() {
char kc = ((KeyEvent)e).getKeyChar();
if(!Character.isIdentifierIgnorable(kc)) {
field.setText(field.getText()+kc);
}
field.setCaretPosition(field.getText().length());
field.requestFocusInWindow();
}
});
}
return true;
}
}
解説
- 0列目
- JPanelをセルエディタに設定(TableCellEditor#getTableCellEditorComponentがJPanelを返す)
- パネルのレイアウトをBorderLayoutにして、JTextFieldとJButtonを配置
- TableCellEditor#getCellEditorValueはJTextFieldの値を返し、フォーカス、キー入力時の編集開始などもJTextFieldになるように変更
- 参考: Swing - JTable editor issue:Darryl.Burke さんの投稿(2009/01/27 20:12 (reply 6 of 8))
- 1列目
- DefaultCellEditor(JTextField)をセルエディタとして使用
- JTextFieldにJButtonの幅の右余白を設定
- JTextFieldが表示されたときに、余白にJButtonをsetBoundsで配置
- 参考:JTextField内にアイコンを追加