Swing/DnDTabbedPane のバックアップ(No.15)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - 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のタブをドラッグ&ドロップ
Posted by terai at 2004-09-24
JTabbedPaneのタブをドラッグ&ドロップ
JTabbedPaneのタブをDrag&Dropで移動します。
- &jnlp;
- &jar;
- &zip;
#screenshot
サンプルコード
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 = this.getComponentAt(prev);
String str = this.getTitleAt(prev);
if(next==this.getTabCount()) {
this.remove(prev);
this.addTab(str, cmp);
this.setSelectedIndex(this.getTabCount()-1);
}else if(prev>next) {
this.remove(prev);
this.insertTab(str, null, cmp, null, next);
this.setSelectedIndex(next);
}else{
this.remove(prev);
this.insertTab(str, null, cmp, null, next-1);
this.setSelectedIndex(next-1);
}
}
解説
上記のサンプルでは、JTabbedPaneのタブをドラッグすると、マウスカーソルが変更されて、ドロップ可能な位置に青い線を描画します。
ドラッグ中、半透明のタブゴーストを表示するかどうかを切り替えることが出来ます。タブ領域以外にドロップしようとすると、カーソルが変化します。
MouseMotionListenerとMouseListenerをimplementsしたJTabbedPaneを作成しています。 JTabbedPaneのタブが二段以上になる場合の検証はほとんどしていません。
参考リンク
- Java Swing Hacks #63 半透明のドラッグ&ドロップ
- CardLayoutを使ってJTabbedPane風のコンポーネントを作成
- JTabbedPane間でタブのドラッグ&ドロップ移動
コメント
- ドラッグ中のタブゴーストを表示する機能を追加しました。 -- terai
- java.awt.dnd パッケージを使用する方法にソースを変更しました。 -- terai
- tab.setTabPlacement(JTabbedPane.RIGHT)などへの対応と、タブのないタブエリアをドラッグするとExceptionが発生していたのを修正しました。 -- terai
- GlassPane の設定方法を修正 -- terai
- 選択不可のタブを移動すると、選択可に変化するバグ(dlordeさんからの指摘、ありがとう)を修正。ついでにタブのアイコン、ツールチップにも対応。 -- terai
- 選択不可のタブを移動不可にする場合は、DragGestureListener#dragGestureRecognizedメソッドでif(dragTabIndex<0 || !isEnabledAt(dragTabIndex)) return;など。、 -- terai
- SCROLL_TAB_LAYOUT での、auto scroll テストを追加しました。 -- terai
- SCROLL_TAB_LAYOUT で、コンポーネントがnull ( addTab("title", null) などの場合)のタブをドラッグすると例外が発生するバグを修正(darylさんからの指摘、thx)。 -- terai
- タブのドラッグ中、JTable上などでCursorが点滅するのを修正。 -- terai
- 参考にさせていただきました.ありがとうございます. -- M.U?
- どういたしまして。 -- terai