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));
  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 MouseInputAdapter { // JDK 6 -> MouseAdapter {
  private MouseEvent start;
  private Point  loc;
  private Window window;
  public void mousePressed(MouseEvent me) {
    start = me;
  }
  public void mouseDragged(MouseEvent me) {
    if(window==null) {
      window = SwingUtilities.windowForComponent((Component)me.getSource());
    }
    loc = window.getLocation(loc);
    int x = loc.x - start.getX() + me.getX();
    int y = loc.y - start.getY() + me.getY();
    window.setLocation(x, y);
  }
}
  • &jnlp;
  • &jar;
  • &zip;

解説

JWindowや、setUndecorated(true)したJFrameのようにタイトルバーのないフレームをマウスのドラッグで移動します。実際はJWindowに、MouseMotionListenerなどを実装したコンポーネントを追加しています。

上記のサンプルでは、Splash ScreenのJLabelにリスナーを追加し、これをJWindowに貼り付けてドラッグできるようにしています。

次に開くsetUndecorated(true)したJFrameでは、青いラベル部分をドラッグすることが出来ます。

コメント