JTabbedPaneのタブをドラッグ&ドロップ
Total: 20679
, Today: 1
, Yesterday: 1
Posted by aterai at
Last-modified:
概要
JTabbedPane
のタブをDrag&Drop
で移動します。
Screenshot
Advertisement
サンプルコード
protected int getTargetTabIndex(Point glassPt) {
int count = getTabCount();
if (count == 0) {
return -1;
}
Point tabPt = SwingUtilities.convertPoint(glassPane, glassPt, this);
boolean isHorizontal = isTopBottomTabPlacement(getTabPlacement());
for (int i = 0; i < count; ++i) {
Rectangle r = getBoundsAt(i);
// First half.
if (isHorizontal) {
r.width = r.width / 2 + 1;
} else {
r.height = r.height / 2 + 1;
}
if (r.contains(tabPt)) {
return i;
}
// Second half.
if (isHorizontal) {
r.x += r.width;
} else {
r.y += r.height;
}
if (r.contains(tabPt)) {
return i + 1;
}
}
Rectangle r = getBoundsAt(getTabCount() - 1);
r.translate(r.width * d.x / 2, r.height * d.y / 2);
return r.contains(tabPt) ? getTabCount() : -1;
}
private void convertTab(int prev, int next) {
if (next < 0 || prev == next) {
return;
}
Component cmp = getComponentAt(prev);
Component tab = getTabComponentAt(prev);
String str = getTitleAt(prev);
Icon icon = getIconAt(prev);
String tip = getToolTipTextAt(prev);
boolean flg = isEnabledAt(prev);
int tgtindex = prev > next ? next : next - 1;
remove(prev);
insertTab(str, icon, cmp, tip, tgtindex);
setEnabledAt(tgtindex, flg);
// When you drag'n'drop a disabled tab, it finishes enabled and selected.
// pointed out by dlorde
if (flg) {
setSelectedIndex(tgtindex);
}
// I have a component in all tabs (jlabel with an X to close the tab)
// and when i move a tab the component disappear.
// pointed out by Daniel Dario Morales Salas
setTabComponentAt(tgtindex, tab);
}
View in GitHub: Java, Kotlin解説
上記のサンプルでは、JTabbedPane
のタブをドラッグするとマウスカーソルが変更されて、ドロップ可能な位置に青い線を描画します。
- ドラッグ中に半透明のタブゴーストを表示するかどうかを切り替え可能
- タブ領域以外にドロップしようとするとカーソルが変化
JTabbedPane
のタブが二段以上になる場合は未検証MouseMotionListener
とMouseListener
ではなく、DragGestureListener
、DragSourceListener
、DropTargetListener
を使用する方法に変更- DnDTabbedPane. Idx for insertion selection fix. by AndreiKud · Pull Request #24 · aterai/java-swing-tips
- 短いタブの前後にドロップする場合にバグがあったので、AndreiKudさんのプルリクをコミット
参考リンク
- Java Swing Hacks #63 半透明のドラッグ&ドロップ
- CardLayoutを使ってJTabbedPane風のコンポーネントを作成
- JTabbedPane間でタブのドラッグ&ドロップ移動
- JLayerを使ってJTabbedPaneのタブの挿入位置を描画する
- JTabbedPaneのタブがフレーム外にドロップされたら新規JFrameを作成する