Swing/DnDTabbedPane のバックアップ(No.3)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - 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のタブをドラッグ&ドロップ
JTabbedPaneのタブをドラッグ&ドロップ
編集者:Terai Atsuhiro
作成日:2004-09-24
更新日:2024-02-24 (土) 05:18:55
概要
JTabbedPaneのタブをDrag&Dropで移動します。
#screenshot
サンプルコード
private int getTargetTabIndex(Point pt) {
for(int i=0;i<this.getTabCount();i++) {
Rectangle rect = this.getBoundsAt(i);
rect.setRect(rect.x-rect.width/2, rect.y, rect.width, rect.height);
if(rect.contains(pt)) {
return i;
}
}
Rectangle rect = this.getBoundsAt(this.getTabCount()-1);
rect.setRect(rect.x+rect.width/2, rect.y, rect.width+100, rect.height);
if(rect.contains(pt)) {
return this.getTabCount();
}else{
return -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);
}
}
- &jnlp;
- &jar;
- &zip;
解説
上記のサンプルでは、JTabbedPaneのタブをドラッグすると、マウスカーソルが変更されて、ドロップされる位置に青い線を描画します。
ドラッグ中、半透明のタブゴーストを表示するかどうかを切り替えることが出来ます。タブ領域以外にドロップしようとすると、カーソルが変化します。
MouseMotionListenerとMouseListenerをimplementsしたJTabbedPaneを作成しています。 JTabbedPaneのタブが二段以上になる場合の検証はほとんどしていません。