Swing/LoopComboBox のバックアップ(No.9)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/LoopComboBox へ行く。
- 1 (2005-11-13 (日) 11:00:49)
- 2 (2005-11-13 (日) 19:03:50)
- 3 (2006-02-27 (月) 16:10:45)
- 4 (2006-05-26 (金) 14:14:16)
- 5 (2007-07-19 (木) 10:53:57)
- 6 (2013-03-22 (金) 11:46:50)
- 7 (2013-10-10 (木) 11:42:42)
- 8 (2015-03-13 (金) 13:07:06)
- 9 (2016-09-21 (水) 01:21:18)
- 10 (2017-10-28 (土) 18:50:28)
- 11 (2017-10-30 (月) 18:42:51)
- 12 (2019-04-19 (金) 14:14:08)
- 13 (2021-01-30 (土) 00:52:19)
- 14 (2023-12-24 (日) 15:31:02)
- 15 (2024-05-03 (金) 22:47:24)
- category: swing folder: LoopComboBox title: JComboBoxのItem選択をループ tags: [JComboBox, ActionMap, InputMap] author: aterai pubdate: 2005-10-24 description: JComboBoxのItemの選択が、上下のカーソルキーでループするように設定します。 image:
概要
JComboBox
のItem
の選択が、上下のカーソルキーでループするように設定します。
Screenshot
Advertisement
サンプルコード
Action up = new AbstractAction() {
@Override public void actionPerformed(ActionEvent e) {
int index = combo.getSelectedIndex();
combo.setSelectedIndex((index == 0) ? combo.getItemCount() - 1 : index - 1);
}
};
Action down = new AbstractAction() {
@Override public void actionPerformed(ActionEvent e) {
int index = combo.getSelectedIndex();
combo.setSelectedIndex((index == combo.getItemCount() - 1) ? 0 : index + 1);
}
};
ActionMap amc = combo.getActionMap();
amc.put("myUp", up);
amc.put("myDown", down);
InputMap imc = combo.getInputMap();
imc.put(KeyStroke.getKeyStroke(KeyEvent.VK_UP, 0), "myUp");
imc.put(KeyStroke.getKeyStroke(KeyEvent.VK_DOWN, 0), "myDown");
View in GitHub: Java, Kotlin解説
上記のサンプルでは、下のコンボボックスのActionMap
とInputMap
を使って、上下キーに対応する新しいアクションを設定しています。