Swing/TableNextMatchKeyHandler のバックアップ(No.1)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/TableNextMatchKeyHandler へ行く。
TITLE:JTableで先頭文字のキー入力による検索を行う
Posted by aterai at 2012-04-16
JTableで先頭文字のキー入力による検索を行う
JTableにフォーカスがある状態でキー入力をした場合、先頭文字が一致する行を検索して選択状態にします。
- &jnlp;
- &jar;
- &zip;
サンプルコード
//@see javax/swing/plaf/basic/BasicListUI.Handler
//@see javax/swing/plaf/basic/BasicTreeUI.Handler
class TableNextMatchKeyHandler extends KeyAdapter{
private static final int TARGET_COLUMN = 0;
private String prefix = "";
private String typedString = "";
private long lastTime = 0L;
private long timeFactor;
public TableNextMatchKeyHandler() {
//Long l = (Long)UIManager.get("List.timeFactor");
timeFactor = 500L; //(l!=null) ? l.longValue() : 1000L;
}
private boolean isNavigationKey(KeyEvent e) {
JTable t = (JTable)e.getSource();
InputMap im = t.getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT);
KeyStroke key = KeyStroke.getKeyStrokeForEvent(e);
if(im != null && im.get(key) != null) {
return true;
}
return false;
}
@Override public void keyPressed(KeyEvent e) {
if(isNavigationKey(e)) {
prefix = "";
typedString = "";
lastTime = 0L;
}
}
@Override public void keyTyped(KeyEvent e) {
JTable src = (JTable)e.getSource();
int max = src.getRowCount();
if(max == 0 || e.isAltDown() || isNavigationKey(e)) {
// Nothing to select
return;
}
boolean startingFromSelection = true;
char c = e.getKeyChar();
int increment = e.isShiftDown() ? -1 : 1;
long time = e.getWhen();
int startIndex = src.getSelectedRow();
if(time - lastTime < timeFactor) {
typedString += c;
if((prefix.length() == 1) && (c == prefix.charAt(0))) {
// Subsequent same key presses move the keyboard focus to the next
// object that starts with the same letter.
startIndex += increment;
}else{
prefix = typedString;
}
}else{
startIndex += increment;
typedString = "" + c;
prefix = typedString;
}
lastTime = time;
if(startIndex < 0 || startIndex >= max) {
if(e.isShiftDown()) {
startIndex = max-1;
}else{
startingFromSelection = false;
startIndex = 0;
}
}
Position.Bias bias = e.isShiftDown()?Position.Bias.Backward
:Position.Bias.Forward;
int index = getNextMatch(src, prefix, startIndex, bias);
if(index >= 0) {
src.getSelectionModel().setSelectionInterval(index, index);
src.scrollRectToVisible(src.getCellRect(index, TARGET_COLUMN, true));
}else if(startingFromSelection) { // wrap
index = getNextMatch(src, prefix, 0, bias);
if(index >= 0) {
src.getSelectionModel().setSelectionInterval(index, index);
src.scrollRectToVisible(src.getCellRect(index, TARGET_COLUMN, true));
}
}
}
//@see JList#getNextMatch(String prefix, int startIndex, Position.Bias bias)
//@see JTree#getNextMatch(String prefix, int startIndex, Position.Bias bias)
public static int getNextMatch(
JTable table, String prefix, int startingRow, Position.Bias bias) {
int max = table.getRowCount();
if(prefix == null) {
throw new IllegalArgumentException();
}
if(startingRow < 0 || startingRow >= max) {
throw new IllegalArgumentException();
}
prefix = prefix.toUpperCase();
// start search from the next/previous element froom the
// selected element
int increment = (bias == Position.Bias.Forward) ? 1 : -1;
int row = startingRow;
do{
Object value = table.getValueAt(row, TARGET_COLUMN);
String text = value!=null?value.toString():"";
if(text.toUpperCase().startsWith(prefix)) {
return row;
}
row = (row + increment + max) % max;
}while(row != startingRow);
return -1;
}
}
View in GitHub: Java, Kotlin解説
上記のサンプルでは、キー入力と0列目の文字列の先頭文字が一致(大文字小文字は無視)する行を検索、選択し、そこまでスクロールします。 検索方法は、BasicListUI.Handler、BasicTreeUI.Handler、JList#getNextMatch(...)、JTree#getNextMatch(...)のものと、ほぼ同じ(SHiftキーを同時に押すと逆検索を追加)です。
table.putClientProperty("JTable.autoStartsEdit", Boolean.FALSE);として、キー入力で編集開始にならないようにしています(マウスクリック、F2キーでの編集は可能)。