Swing/DragSourceMotionListener のバックアップ(No.13)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/DragSourceMotionListener へ行く。
- 1 (2012-08-06 (月) 15:46:37)
- 2 (2012-08-07 (火) 11:04:46)
- 3 (2012-08-07 (火) 14:19:12)
- 4 (2012-11-17 (土) 03:46:38)
- 5 (2012-12-07 (金) 18:13:23)
- 6 (2013-01-29 (火) 23:42:26)
- 7 (2013-10-25 (金) 18:04:11)
- 8 (2013-10-29 (火) 15:37:15)
- 9 (2013-10-30 (水) 21:20:06)
- 10 (2014-11-01 (土) 00:46:09)
- 11 (2015-04-02 (木) 15:10:43)
- 12 (2017-02-28 (火) 13:07:16)
- 13 (2017-11-02 (木) 15:34:40)
- 14 (2018-01-04 (木) 12:29:03)
- 15 (2018-09-27 (木) 20:48:31)
- 16 (2020-09-29 (火) 18:32:53)
- 17 (2022-06-01 (水) 16:53:24)
- 18 (2022-08-20 (土) 22:15:25)
- category: swing folder: DragSourceMotionListener title: JFrameの外側でもドラッグアイコンを表示する tags: [DragAndDrop, JWindow, ImageIcon, JFrame, JLabel] author: aterai pubdate: 2012-08-06T15:46:37+09:00 description: ドラッグ中のカーソル位置をDragSourceMotionListenerで取得し、そこにアイコンを追加したWindowを移動することで、JFrameの外側でもドラッグアイコンを表示します。 image:
概要
ドラッグ中のカーソル位置をDragSourceMotionListener
で取得し、そこにアイコンを追加したWindow
を移動することで、JFrame
の外側でもドラッグアイコンを表示します。
Screenshot
Advertisement
サンプルコード
final JWindow window = new JWindow();
window.add(label);
//window.setAlwaysOnTop(true);
//com.sun.awt.AWTUtilities.setWindowOpaque(window, false); // JDK 1.6.0
window.setBackground(new Color(0x0, true)); // JDK 1.7.0
DragSource.getDefaultDragSource().addDragSourceMotionListener(new DragSourceMotionListener() {
@Override public void dragMouseMoved(DragSourceDragEvent dsde) {
window.setLocation(dsde.getLocation());
}
});
View in GitHub: Java, Kotlin解説
上記のサンプルでは、JPanel
中に配置されているアイコンなどを設定したJLabel
を、Drag & Drop
で別のJPanel
(例えば親のJFrame
が異なる場合も可)に移動することができます。JLabel
のドラッグ開始時に元の親JPanel
からそれを削除して透明化したWindow
に移し替え、ドラッグに合わせてWindow
自体を移動しているので、JFrame
の外でもドラッグアイコンが表示可能になっています。
ドラッグ中のカーソル位置取得には、MouseMotionListener
を使用する方法もありますが、このサンプルのようなTransferHandler
を使ったドラッグではMouseMotionListener
でマウスイベントを取得することができないので、DefaultDragSource
にDragSourceMotionListener
を追加してドラッグ中のカーソル位置を取得しています。
- 注:
DragSourceDragEvent#getLocation()
で取得した位置は、スクリーン座標系なので、そのままWindow#setLocation(...)
で使用可能Point pt = tgtLabel.getLocation();
で取得したドラッグ対象JLabel
の位置は、親コンポーネントの座標系なので、SwingUtilities.convertPointToScreen(pt, parent);
で変換する必要がある