• 追加された行はこの色です。
  • 削除された行はこの色です。
TITLE:JFrameの位置・サイズを記憶する
#navi(../)
*JFrameの位置・サイズを記憶する [#c6d374e2]
>編集者:[[Terai Atsuhiro>terai]]~
作成日:2003-09-25~
更新日:&lastmod;

#contents

**概要 [#n874c5f3]
Preferences(レジストリなど)にフレーム(パネル)の位置・サイズを記憶しておきます。

#screenshot

**サンプルコード [#o43d0c70]
#code{{
public MainPanel(final JFrame frame) {
  super(new BorderLayout());
  this.frame = frame;
  this.prefs = Preferences.userNodeForPackage(getClass());
  frame.addWindowListener(new java.awt.event.WindowAdapter() {
    public void windowClosing(WindowEvent e) {
      saveLocation();
      frame.dispose();
    }
  });
  frame.addComponentListener(new ComponentAdapter() {
    public void componentMoved(ComponentEvent e) {
      if(frame.getExtendedState()==JFrame.NORMAL) {
        try{
          pos.setLocation(frame.getLocationOnScreen());
        }catch(IllegalComponentStateException icse) {}
      }
    }
    public void componentResized(ComponentEvent e) {
      if(frame.getExtendedState()==JFrame.NORMAL) {
        dim.setSize(getSize());
      }
    }
  });
  exitButton.setAction(new AbstractAction("終了") {
    public void actionPerformed(ActionEvent evt) {
      saveLocation();
      frame.dispose();
    }
  });
  clearButton.setAction(
     new AbstractAction("レジストリなどに保存した値をクリアして終了") {
    public void actionPerformed(ActionEvent evt) {
      try{
        prefs.clear();
        prefs.flush();
      }catch(java.util.prefs.BackingStoreException e) {
        e.printStackTrace();
      }
      frame.dispose();
    }
  });
  int wdim = prefs.getInt(PREFIX+"dimw", dim.width);
  int hdim = prefs.getInt(PREFIX+"dimh", dim.height);
  dim.setSize(wdim, hdim);
  setPreferredSize(dim);
 
  Rectangle screen = frame.getGraphicsConfiguration().getBounds();
  pos.setLocation(screen.x + screen.width/2  - dim.width/2,
          screen.y + screen.height/2 - dim.height/2);
  int xpos = prefs.getInt(PREFIX+"locx", pos.x);
  int ypos = prefs.getInt(PREFIX+"locy", pos.y);
  pos.setLocation(xpos,ypos);
  frame.setLocation(pos.x, pos.y);
  //......
}
private void saveLocation() {
  prefs.putInt(PREFIX+"locx", pos.x);
  prefs.putInt(PREFIX+"locy", pos.y);
  prefs.putInt(PREFIX+"dimw", dim.width);
  prefs.putInt(PREFIX+"dimh", dim.height);
  try{
    prefs.flush();
  }catch(java.util.prefs.BackingStoreException e) {
    e.printStackTrace();
  }
}
}}
//-&jnlp;
-&jar;
-&zip;

**解説 [#u2bec200]
上記のサンプルでは、対象フレームが最大化、最小化された状態で終了した場合、その前の位置サイズを記憶しておくようになっています。

**コメント [#g4e001a1]
- メモ: [[Preferences APIがJava6上では動かない - 日々是開発: SQS Development(2007-02-12)>http://sqs.cmr.sfc.keio.ac.jp/tdiary/20070212.html#p01]] -- [[terai]] &new{2007-06-14 (木) 14:42:00};
- 最大化した状態で終了すると、x,yが-4,-4で記録される。最大化すると、どうやらJFrame.NORMALのまま左端に移動してそれから最大扱いになってるようです。だからcomponentMovedが誤爆してる。 -- [[Tomopy]] &new{2007-10-26 (金) 12:20:16};

#comment