Swing/FocusAfterClosingCurrentTab の変更点
- 追加された行はこの色です。
- 削除された行はこの色です。
- Swing/FocusAfterClosingCurrentTab へ行く。
- Swing/FocusAfterClosingCurrentTab の差分を削除
--- category: swing folder: FocusAfterClosingCurrentTab title: JTabbedPaneで現在のタブを閉じた後に選択されるタブを変更する tags: [JTabbedPane] author: aterai pubdate: 2015-04-27T00:35:47+09:00 description: JTabbedPaneでタブ選択の履歴を保存し、これを参照して現在選択されているタブを閉じた後に選択するタブを決定します。 image: https://lh3.googleusercontent.com/-_mItwH72EqU/VTy9MH6jOJI/AAAAAAAAN3A/rVSueixCerw/s800/FocusAfterClosingCurrentTab.png --- * 概要 [#summary] `JTabbedPane`でタブ選択の履歴を保存し、これを参照して現在選択されているタブを閉じた後に選択するタブを決定します。 #download(https://lh3.googleusercontent.com/-_mItwH72EqU/VTy9MH6jOJI/AAAAAAAAN3A/rVSueixCerw/s800/FocusAfterClosingCurrentTab.png) * サンプルコード [#sourcecode] #code(link){{ JTabbedPane tabbedPane = new JTabbedPane() { private final List<Component> history = new ArrayList<Component>(5); private final List<Component> history = new ArrayList<>(5); @Override public void setSelectedIndex(int index) { super.setSelectedIndex(index); Component component = getComponentAt(index); history.remove(component); history.add(0, component); } @Override public void removeTabAt(int index) { Component component = getComponentAt(index); super.removeTabAt(index); history.remove(component); if (!history.isEmpty()) { setSelectedComponent(history.get(0)); } } }; }} * 解説 [#explanation] - デフォルト(右隣りのタブに移動) -- `JTabbedPane`で現在選択されているタブを`JTabbedPane#removeTabAt(int)`で閉じた場合、その後に選択されるタブは右隣(縦の場合は下)のタブで固定 --- 一番最後のタブが選択されていた場合は`JTabbedPane#getTabCount() - 1` - 以前選択されていたタブに移動 -- 上記のサンプルでは`JTabbedPane#setSelectedIndex(int)`をオーバーライドして選択の履歴を保存 -- `JTabbedPane#removeTabAt(int)`をオーバーライドし、履歴からその前に選択されていたタブを検索して選択状態を設定 * 参考リンク [#reference] - [https://docs.oracle.com/javase/jp/8/docs/api/javax/swing/JTabbedPane.html#getSelectedIndex-- JTabbedPane (Java Platform SE 8)] * コメント [#comment] #comment #comment