Swing/ComboBoxSuggestion のバックアップ(No.1)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/ComboBoxSuggestion へ行く。
- 1 (2009-01-22 (木) 16:26:11)
- 2 (2010-11-11 (木) 15:07:51)
- 3 (2010-11-11 (木) 16:55:21)
- 4 (2010-11-12 (金) 16:07:18)
- 5 (2011-02-20 (日) 17:03:02)
- 6 (2011-02-20 (日) 19:14:25)
- 7 (2011-02-21 (月) 15:06:15)
- 8 (2012-05-06 (日) 19:23:33)
- 9 (2013-04-14 (日) 00:39:36)
- 10 (2013-05-26 (日) 05:18:41)
- 11 (2013-07-26 (金) 01:12:13)
- 12 (2013-07-27 (土) 01:00:47)
- 13 (2014-03-18 (火) 18:51:29)
- 14 (2014-04-14 (月) 11:04:20)
- 15 (2014-04-14 (月) 17:46:28)
- 16 (2014-11-29 (土) 01:46:43)
- 17 (2015-01-28 (水) 15:08:34)
- 18 (2016-05-31 (火) 14:26:21)
- 19 (2016-09-27 (火) 17:22:04)
- 20 (2017-03-28 (火) 15:22:16)
- 21 (2018-01-31 (水) 20:29:00)
- 22 (2018-02-20 (火) 15:24:10)
- 23 (2018-02-24 (土) 19:51:30)
- 24 (2018-06-01 (金) 14:24:46)
- 25 (2018-10-25 (木) 17:42:07)
- 26 (2018-11-08 (木) 17:49:12)
- 27 (2020-11-05 (木) 11:34:48)
- 28 (2022-08-20 (土) 22:15:25)
- 29 (2022-10-20 (木) 21:25:59)
TITLE:JComboBoxで候補一覧を表示
Posted by terai at 2004-12-06
JComboBoxで候補一覧を表示
JComboBoxに入力候補の一覧表示機能*1を追加します。
- &jnlp;
- &jar;
- &zip;
#screenshot
サンプルコード
combo.setEditable(true);
field = (JTextField) combo.getEditor().getEditorComponent();
field.addKeyListener(new KeyAdapter() {
@Override
public void keyTyped(KeyEvent e) {
keyTypedInCombo(e);
}
@Override
public void keyPressed(KeyEvent e) {
keyPressedInCombo(e);
}
//public void keyReleased(KeyEvent e) {
});
private boolean hide_flag = false;
private void keyPressedInCombo(KeyEvent ke) {
String text = field.getText();
int code = ke.getKeyCode();
if(code==KeyEvent.VK_ENTER) {
if(!model.contains(text)) {
model.addElement(text);
Collections.sort(model);
setModel(getSuggestedModel(model, text), text);
}
hide_flag = true; //combo.hidePopup();
}else if(code==KeyEvent.VK_ESCAPE) {
hide_flag = true; //combo.hidePopup();
}else if(code==KeyEvent.VK_RIGHT) {
for(int i=0;i<model.size();i++) {
String str = model.elementAt(i);
if(str.startsWith(text)) {
combo.setSelectedIndex(-1);
field.setText(str);
return;
}
}
}
}
private void keyTypedInCombo(final KeyEvent ke) {
EventQueue.invokeLater(new Runnable() {
public void run() {
String text = field.getText();
if(text.length()==0) {
combo.hidePopup();
setModel(new DefaultComboBoxModel(model), "");
}else{
DefaultComboBoxModel m = getSuggestedModel(model, text);
if(m.getSize()==0 || hide_flag) {
combo.hidePopup();
hide_flag = false;
}else{
setModel(m, text);
combo.showPopup();
}
}
}
});
}
解説
上記のサンプルでは、次のキー操作に対応しています。
- 上下キー
- ポップアップ表示
- ESCキー
- ポップアップ非表示
- 右キー
- 補完
- リターンキー
- 選択or追加
- 文字入力
- 候補をポップアップ
JComboBox#showPopup()とJComboBox#hidePopup()*2を使って、候補のポップアップメニュー表示を制御します。
JComboBox#setSelectedIndex(-1)で、項目の選択をクリアしないと動作がおかしくなる場合があります。