JTabbedPaneのタブがフレーム外にドロップされたら新規JFrameを作成する
Total: 1206
, Today: 1
, Yesterday: 1
Posted by aterai at
Last-modified:
概要
JTabbedPane
のタブをドラッグしてフレーム外にドロップされたら新規JFrame
とそのタブを配置したJTabbedPane
を作成します。
Screenshot
Advertisement
サンプルコード
class TabDragSourceListener implements DragSourceListener {
@Override public void dragEnter(DragSourceDragEvent e) {
e.getDragSourceContext().setCursor(DragSource.DefaultMoveDrop);
}
@Override public void dragExit(DragSourceEvent e) {
e.getDragSourceContext().setCursor(DragSource.DefaultMoveNoDrop);
}
@Override public void dragDropEnd(DragSourceDropEvent e) {
Component c = e.getDragSourceContext().getComponent();
JRootPane root = ((JComponent) c).getRootPane();
Class<GhostGlassPane> clz = GhostGlassPane.class;
Optional.ofNullable(root.getGlassPane())
.filter(clz::isInstance).map(clz::cast)
.ifPresent(p -> p.setVisible(false));
boolean dropSuccess = e.getDropSuccess();
Window w = SwingUtilities.getWindowAncestor(c);
boolean outOfFrame = !w.getBounds().contains(e.getLocation());
if (dropSuccess && outOfFrame && c instanceof DnDTabbedPane) {
DnDTabbedPane src = (DnDTabbedPane) c;
int index = src.dragTabIndex;
final Component cmp = src.getComponentAt(index);
final Component tab = src.getTabComponentAt(index);
final String title = src.getTitleAt(index);
final Icon icon = src.getIconAt(index);
final String tip = src.getToolTipTextAt(index);
src.remove(index);
DnDTabbedPane tabs = new DnDTabbedPane();
tabs.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);
tabs.addTab(title, icon, cmp, tip);
tabs.setTabComponentAt(0, tab);
JFrame frame = new JFrame();
frame.getContentPane().add(tabs);
frame.setSize(320, 240);
frame.setLocation(e.getLocation());
frame.setVisible(true);
}
}
@Override public void dropActionChanged(DragSourceDragEvent e) {
/* not needed */
}
@Override public void dragOver(DragSourceDragEvent e) {
/* not needed */
}
}
View in GitHub: Java, Kotlin解説
DragSourceListener#dragDropEnd(DragSourceDropEvent e)
をオーバーライドしてタブのドロップが終了したとき、その位置がJTabbedPane
の親JFrame
の範囲外の場合新規にJFrame
とJTabbedPane
を作成しタブの中身を移動する- ESCキーやマウスの右クリックによるドロップのキャンセルに対応するため、
MimeType
がDataFlavor.javaJVMLocalObjectMimeType
のDataFlavor
だけではなくファイルリスト対応のDataFlavor.javaFileListFlavor
もドロップ可能に設定し、親JFrame
にタブがドロップされたら空ファイルリストをコピー(空なので実際は何もコピーしない)してドロップが成功したと見せかけている- 空ファイルリストをコピーでドロップが成功したら新規
JFrame
を作成してタブをコピーし、ドラッグ元からタブを削除 - ドラッグ中にESCキーなどでドロップがキャンセルされたら
DragSourceDropEvent#getDropSuccess()
がfalse
になるので、この場合は何もせずにドラッグ終了
- 空ファイルリストをコピーでドロップが成功したら新規
- タブのドロップ先のアプリケーションが空ファイルのドロップに対応している場合、そのアプリケーションが新規
JFrame
より手前に表示されることがある - ファイルのドロップが不可のアプリケーション上では新規
JFrame
を作成できない
参考リンク
- JTabbedPaneのタブをドラッグ&ドロップ
- JTabbedPaneのタブのドラッグアウトで新規JFrameの作成と空JFrameの破棄を実行する
Java 6
で導入されたTransferHandler
を使用してタブドラッグアウトで新規JFrame
を作成サンプル