Swing/DragWindow のバックアップ(No.1)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - 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)
TITLE:JWindowをマウスで移動
JWindowをマウスで移動
編集者:Terai Atsuhiro
作成日:2004-09-06
更新日:2024-02-03 (土) 14:10:31
概要
JWindowなどのタイトルバーのないフレームをマウスで移動します。
#screenshot
サンプルコード
public void createSplashScreen(String path) { ImageIcon img = new ImageIcon(getClass().getResource(path)); splashLabel = new JLabel(img); splashLabel.addMouseListener(new MyMouseListener()); splashLabel.addMouseMotionListener(new MyMouseMotionListener()); splashScreen = new JWindow(getFrame()); splashScreen.getContentPane().add(splashLabel); splashScreen.pack(); splashScreen.setLocationRelativeTo(null); } private MouseEvent start; class MyMouseListener extends MouseAdapter { public void mousePressed(MouseEvent me) { start = me; } } class MyMouseMotionListener extends MouseMotionAdapter { private Point loc; private Window frame; public void mouseDragged(MouseEvent me) { if(frame==null) { Component cmp = (Component)me.getSource(); frame = SwingUtilities.windowForComponent(cmp); } loc = frame.getLocation(loc); int x = loc.x - start.getX() + me.getX(); int y = loc.y - start.getY() + me.getY(); frame.setLocation(x, y); } }
- &jnlp;
- &jar;
- &zip;
解説
JWindowや、setUndecorated(true)したJFrameのようにタイトルバーのないフレームをマウスのドラッグで移動します。実際はJWindowに、MouseMotionListenerなどを実装したコンポーネントを追加しています。
上記のサンプルでは、Splash ScreenのJLabelにリスナを追加し、これをJWindowに貼り付けてドラッグできるようにしています。
次に開くsetUndecorated(true)したJFrameでは、青いラベル部分をドラッグすることが出来ます。