Swing/DragWindow のバックアップ(No.28)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/DragWindow へ行く。
- 1 (2006-09-12 (火) 17:24:39)
- 2 (2007-08-10 (金) 12:33:24)
- 3 (2008-01-23 (水) 20:14:53)
- 4 (2008-02-22 (金) 13:04:00)
- 5 (2008-03-25 (火) 17:53:48)
- 6 (2010-01-18 (月) 11:35:44)
- 7 (2010-10-06 (水) 12:36:32)
- 8 (2012-08-14 (火) 15:55:31)
- 9 (2013-03-14 (木) 08:00:42)
- 10 (2013-03-14 (木) 13:53:25)
- 11 (2013-03-15 (金) 11:08:52)
- 12 (2013-03-15 (金) 12:30:42)
- 13 (2013-03-15 (金) 13:56:42)
- 14 (2013-03-15 (金) 22:34:12)
- 15 (2013-03-18 (月) 15:34:53)
- 16 (2013-03-19 (火) 04:21:51)
- 17 (2013-03-19 (火) 16:03:51)
- 18 (2013-03-20 (水) 06:49:58)
- 19 (2013-04-12 (金) 01:25:06)
- 20 (2014-02-10 (月) 18:58:39)
- 21 (2015-02-10 (火) 15:25:33)
- 22 (2015-03-28 (土) 15:36:18)
- 23 (2016-05-26 (木) 14:48:43)
- 24 (2016-09-02 (金) 13:30:48)
- 25 (2017-04-04 (火) 14:17:08)
- 26 (2017-10-14 (土) 17:53:09)
- 27 (2018-08-19 (日) 17:44:54)
- 28 (2018-11-07 (水) 19:10:45)
- 29 (2020-11-04 (水) 16:05:25)
- 30 (2022-10-14 (金) 13:43:24)
- 31 (2024-02-03 (土) 14:10:31)
- category: swing folder: DragWindow title: JWindowをマウスで移動 tags: [JWindow, JFrame, MouseListener, MouseMotionListener] author: aterai pubdate: 2004-09-06T00:58:19+09:00 description: JWindowなどのタイトルバーのないフレームをマウスで移動します。 image:
概要
JWindow
などのタイトルバーのないフレームをマウスで移動します。
Screenshot
Advertisement
サンプルコード
public void createSplashScreen(String path) {
ImageIcon img = new ImageIcon(getClass().getResource(path));
DragWindowListener dwl = new DragWindowListener();
splashLabel = new JLabel(img);
splashLabel.addMouseListener(dwl);
splashLabel.addMouseMotionListener(dwl);
splashScreen = new JWindow(getFrame());
splashScreen.getContentPane().add(splashLabel);
splashScreen.pack();
splashScreen.setLocationRelativeTo(null);
}
class DragWindowListener extends MouseAdapter {
private final Point startPt = new Point();
//private Point loc;
private Window window;
@Override public void mousePressed(MouseEvent me) {
startPt.setLocation(me.getPoint());
}
@Override public void mouseDragged(MouseEvent me) {
if (window == null) {
window = SwingUtilities.windowForComponent(me.getComponent());
}
Point eventLocationOnScreen = me.getLocationOnScreen();
window.setLocation(eventLocationOnScreen.x - startPt.x,
eventLocationOnScreen.y - startPt.y);
//loc = window.getLocation(loc);
//int x = loc.x - start.getX() + me.getX();
//int y = loc.y - start.getY() + me.getY();
//window.setLocation(x, y);
}
}
View in GitHub: Java, Kotlin解説
JWindow
や、setUndecorated(true)
したJFrame
のようにタイトルバーのないフレームをマウスのドラッグで移動します。実際はJWindow
自体にリスナーを設定するのではなく、子コンポーネントにMouseMotionListener
などを追加しています。
上記のサンプルではJLabel
にリスナーを追加し、これをJWindow
に追加することでドラッグ可能にしています。
スプラッシュスクリーンの次に開くJFrame
は、JFrame#setUndecorated(true)
を設定してタイトルバーなどは非表示になっていますが、代わりに青いラベル部分がドラッグ可能です。
- マルチディスプレイなどで、別画面に移動できないバグ?を修正
- ただし、
Web Start
のSandBox
内では、以前と同じく画面の外に移動することができない?JNLP
のセキュリティにall-permissions
を設定する必要がある
- ただし、
Swing Tutorial
の FrameDemo2で試しても、同様?Look and feel decorated
: 画面外に移動不可Window system decorated
: 画面外に移動可能