Swing/DnDTabbedPane のバックアップ(No.24)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/DnDTabbedPane へ行く。
- 1 (2006-07-01 (土) 16:22:48)
- 2 (2006-10-04 (水) 10:06:08)
- 3 (2007-08-03 (金) 05:54:19)
- 4 (2007-08-03 (金) 13:37:15)
- 5 (2008-02-19 (火) 18:35:20)
- 6 (2008-08-06 (水) 12:17:51)
- 7 (2008-10-03 (金) 13:13:31)
- 8 (2008-10-27 (月) 13:07:32)
- 9 (2008-12-09 (火) 12:49:10)
- 10 (2008-12-30 (火) 18:56:48)
- 11 (2009-03-23 (月) 15:21:40)
- 12 (2009-05-19 (火) 17:16:44)
- 13 (2009-12-20 (日) 20:27:37)
- 14 (2009-12-21 (月) 00:43:51)
- 15 (2010-03-08 (月) 11:58:21)
- 16 (2010-03-08 (月) 13:40:18)
- 17 (2010-12-13 (月) 17:51:41)
- 18 (2012-02-10 (金) 16:37:11)
- 19 (2013-02-20 (水) 15:30:42)
- 20 (2013-04-12 (金) 01:31:30)
- 21 (2014-11-21 (金) 18:30:50)
- 22 (2015-01-28 (水) 15:07:17)
- 23 (2015-03-20 (金) 15:26:38)
- 24 (2016-05-20 (金) 19:35:47)
- 25 (2016-09-14 (水) 18:07:56)
- 26 (2017-10-22 (日) 18:46:58)
- 27 (2018-02-24 (土) 19:51:30)
- 28 (2018-12-06 (木) 17:59:39)
- 29 (2019-11-06 (水) 21:16:56)
- 30 (2020-04-08 (水) 16:08:00)
- 31 (2021-10-15 (金) 01:16:59)
- 32 (2022-02-14 (月) 02:18:20)
- 33 (2024-02-24 (土) 05:18:55)
- title: JTabbedPaneのタブをドラッグ&ドロップ
tags: [JTabbedPane, DragAndDrop, GlassPane, DragGestureListener]
author: aterai
pubdate: 2004-09-27
description: JTabbedPaneのタブをDrag&Dropで移動します。
hreflang:
href: http://java-swing-tips.blogspot.com/2008/04/drag-and-drop-tabs-in-jtabbedpane.html lang: en
概要
JTabbedPane
のタブをDrag&Drop
で移動します。
Screenshot
Advertisement
サンプルコード
private int getTargetTabIndex(Point glassPt) {
Point tabPt = SwingUtilities.convertPoint(glassPane, glassPt, DnDTabbedPane.this);
boolean isTB = getTabPlacement() == JTabbedPane.TOP || getTabPlacement() == JTabbedPane.BOTTOM;
for (int i = 0; i < getTabCount(); i++) {
Rectangle r = getBoundsAt(i);
if (isTB) r.setRect(r.x - r.width / 2, r.y, r.width, r.height);
else r.setRect(r.x, r.y - r.height / 2, r.width, r.height);
if (r.contains(tabPt)) return i;
}
Rectangle r = getBoundsAt(getTabCount() - 1);
if (isTB) r.setRect(r.x + r.width / 2, r.y, r.width, r.height);
else r.setRect(r.x, r.y + r.height / 2, r.width, r.height);
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
を使用する方法に変更しました。
参考リンク
- Java Swing Hacks #63 半透明のドラッグ&ドロップ
- CardLayoutを使ってJTabbedPane風のコンポーネントを作成
- JTabbedPane間でタブのドラッグ&ドロップ移動
- JLayerを使ってJTabbedPaneのタブの挿入位置を描画する