TITLE:JDesktopPaneにJInternalFrameを吸着させる

JDesktopPaneにJInternalFrameを吸着させる

編集者:Terai Atsuhiro
作成日:2007-01-01
更新日:2021-03-21 (日) 04:15:18

概要

JDesktopPaneとJInternalFrameの距離が近くなった場合、これらを自動的に吸着させます。

#screenshot

サンプルコード

private class MagneticListener extends MouseInputAdapter {
  private final JInternalFrame frame;
  private final Point loc = new Point();
  private static final int d = 10;
  public MagneticListener(JInternalFrame frame) {
    this.frame = frame;
  }
  public void mousePressed(MouseEvent e) {
    Point p1 = frame.getLocation();
    Point p2 = SwingUtilities.convertPoint(frame, e.getPoint(), frame.getDesktopPane());
    loc.setLocation(p2.x-p1.x, p2.y-p1.y);
  }
  public void mouseDragged(MouseEvent e) {
    JDesktopPane desktop = frame.getDesktopPane();
    Point ep = e.getPoint();
    Point p  = SwingUtilities.convertPoint(frame, ep.x-loc.x, ep.y-loc.y, desktop);
    int x = desktop.getSize().width -frame.getSize().width -p.x;
    int y = desktop.getSize().height-frame.getSize().height-p.y;
    if(Math.abs(p.x)>=d && Math.abs(p.y)>=d && Math.abs(x)>=d && Math.abs(y)>=d) return;
    desktop.getDesktopManager().dragFrame(
      frame,
      (p.x<x)?((Math.abs(p.x)<d)?0:p.x):((Math.abs(x)<d)?x+p.x:p.x),
      (p.y<y)?((Math.abs(p.y)<d)?0:p.y):((Math.abs(y)<d)?y+p.y:p.y));
  }
}
  • &jnlp;
  • &jar;
  • &zip;

解説

上記のサンプルでは、JDesktopPaneとJInternalFrame(タイトルがMagneticFrameの方だけ)の距離が10pt以下になった場合、DesktopManager#.dragFrame(JInternalFrame,int,int)メソッドを使ってJInternalFrameの位置を変更することで、吸着を行っています。

コメント