• 追加された行はこの色です。
  • 削除された行はこの色です。
TITLE:JFrameの位置・サイズを記憶する
#navi(../)
*JFrameの位置・サイズを記憶する [#c6d374e2]
>編集者:[[Terai Atsuhiro>terai]]~
作成日:2003-09-25~
更新日:&lastmod;
---
category: swing
folder: Preferences
title: JFrameの位置・サイズを記憶する
tags: [JFrame, Preferences]
author: aterai
pubdate: 2003-09-29
description: Preferences(レジストリなど)にフレーム(パネル)の位置・サイズを記憶しておきます。
image: https://lh4.googleusercontent.com/_9Z4BYR88imo/TQTRGT4S7mI/AAAAAAAAAgo/GDUrxdRJ4x4/s800/Preferences.png
---
* 概要 [#summary]
`Preferences`(レジストリなど)にフレーム(パネル)の位置・サイズを記憶しておきます。

#contents
#download(https://lh4.googleusercontent.com/_9Z4BYR88imo/TQTRGT4S7mI/AAAAAAAAAgo/GDUrxdRJ4x4/s800/Preferences.png)

**概要 [#n874c5f3]
Preferences(レジストリなど)にフレーム(パネル)の位置・サイズを記憶しておきます。
* サンプルコード [#sourcecode]
#code(link){{
public MainPanel(JFrame frame) {
  super(new BorderLayout());
  this.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
  this.prefs = Preferences.userNodeForPackage(getClass());
  frame.addWindowListener(new WindowAdapter() {
    @Override public void windowClosing(WindowEvent e) {
      saveLocation();
      e.getWindow().dispose();
    }
  });
  frame.addComponentListener(new ComponentAdapter() {
    @Override public void componentMoved(ComponentEvent e) {
      JFrame frame = (JFrame) e.getComponent();
      if (frame.getExtendedState() == Frame.NORMAL) {
        Point pt = frame.getLocationOnScreen();
        if (pt.x < 0 || pt.y < 0) {
          return;
        }
        try {
          pos.setLocation(pt);
        } catch (IllegalComponentStateException icse) {
          icse.printStackTrace();
        }
      }
    }

//#screenshot
    @Override public void componentResized(ComponentEvent e) {
      JFrame frame = (JFrame) e.getComponent();
      if (frame.getExtendedState() == Frame.NORMAL) {
        dim.setSize(getSize());
      }
    }
  });
  Box box = Box.createHorizontalBox();
  box.add(Box.createHorizontalGlue());
  box.add(clearButton);
  box.add(Box.createHorizontalStrut(2));
  box.add(exitButton);
  add(new JLabel("TEST"));
  add(box, BorderLayout.SOUTH);
  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);
}

**サンプルコード [#o43d0c70]
 public abstract class AbstractHogePanel extends JPanel{
   final private Point     pos = new Point(0, 0);
   final private Dimension dim = new Dimension(900, 800);
   private JFrame frame;
   
   public AbstractHogePanel() {
     super();
     frame = new JFrame();
     frame.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
     frame.addWindowListener(new java.awt.event.WindowAdapter() {
       public void windowClosing(WindowEvent e) {
         exitActionPerformed(null);
       }
     });
     frame.addComponentListener(new ComponentAdapter() {
       public void componentMoved(ComponentEvent e) {
         JFrame frm = (JFrame)e.getSource();
         if(frm.getExtendedState()==JFrame.NORMAL) {
           try{
             pos.setLocation(frm.getLocationOnScreen());
           }catch(IllegalComponentStateException icse) {}
         }
       }
       public void componentResized(ComponentEvent e) {
         JFrame frm = (JFrame)e.getSource();
         if(frm.getExtendedState()==JFrame.NORMAL) {
           dim.setSize(getSize());
         }
       }
       //void componentHidden(ComponentEvent e) {}
       //void componentShown(ComponentEvent e)
     });
   }
   
   private String prefix = "";
   protected void setPrefix(String str) {
     str = str.toLowerCase().trim();
     if(str!=null && str.length()>0) {
       prefix = str+"_";
     }
   }
   protected void initLocation(Preferences lprefs) {
     int xpos = lprefs.getInt(prefix+"locx", pos.x);
     int ypos = lprefs.getInt(prefix+"locy", pos.y);
     pos.setLocation(xpos,ypos);
     getFrame().setLocation(pos.x, pos.y);
     int wdim = lprefs.getInt(prefix+"dimw", dim.width);
     int hdim = lprefs.getInt(prefix+"dimh", dim.height);
     dim.setSize(wdim, hdim);
     this.setPreferredSize(dim);
   }
   protected void saveLocation(Preferences lprefs) {
     lprefs.putInt(prefix+"locx", pos.x);
     lprefs.putInt(prefix+"locy", pos.y);
     lprefs.putInt(prefix+"dimw", dim.width);
     lprefs.putInt(prefix+"dimh", dim.height);
     try{
       lprefs.flush();
     }catch(java.util.prefs.BackingStoreException e) {
       Logger.global.info("バッキングストアに障害が発生したか、
       バッキングストアにアクセスできないことが原因で、設定操作を完了
       できなかった。");
     }
   }
   public JFrame getFrame() {
     return frame;
   }
   
   public void showPanel() {
     if(getFrame()!=null) {
       JFrame f = getFrame();
       f.setExtendedState(JFrame.NORMAL);
       f.getContentPane().add(this, BorderLayout.CENTER);
       f.pack();
       f.show();
     }
   }
   
   protected class ExitAction extends AbstractAction{
     public ExitAction() {
       super("exit");
     }
     public void actionPerformed(ActionEvent evt) {
       exitActionPerformed(evt);
     }
   }
   abstract public void exitActionPerformed(ActionEvent e);
 }
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 (BackingStoreException e) {
    e.printStackTrace();
  }
}
}}

**解説 [#u2bec200]
上記のサンプルコードは、exitActionPerformedを以下の要領で実装して使います。
* 解説 [#explanation]
上記のサンプルでは、対象フレームが最大化、最小化された状態で終了した場合、その前の位置サイズを記憶するよう設定しています。

 public void exitActionPerformed(ActionEvent e) {
   Preferences prefs = Preferences.userNodeForPackage(getClass());
   //Preferences prefs = getPreferences();
   //prefs.putBoolean("file_flag", xmlCheck.isSelected());
   saveLocation(prefs);
   JFrame fram = getFrame();
   //fram.setDefaultCloseOperation(WindowConstants.HIDE_ON_CLOSE);
   fram.dispose();
 }
* 参考リンク [#reference]
- [https://docs.oracle.com/javase/jp/8/docs/api/java/util/prefs/Preferences.html Preferences (Java Platform SE 8)]
- [https://docs.oracle.com/javase/jp/8/docs/technotes/guides/preferences/overview.html Preferences APIの概要]
-- メモ: `Java 6`の[https://docs.oracle.com/javase/jp/6/technotes/guides/preferences/overview.html Preferences API の概要]にある「`Java` コレクション `API` の設計に関する `FAQ`」は「`Preferences API` の設計に関する `FAQ`」の間違い
-- `Java 8`の「`Preferences API`の概要」で修正済み
- [[PersistenceServiceを使ってJFrameの位置・サイズを記憶>Swing/PersistenceService]]

対象フレームが最大化、最小化された状態で終了した場合、その前の位置サイズを記憶するようになっています。
* コメント [#comment]
#comment
- メモ: [http://sqs.cmr.sfc.keio.ac.jp/tdiary/20070212.html#p01 Preferences APIがJava6上では動かない - 日々是開発: SQS Development(2007-02-12)] -- &user(aterai); &new{2007-06-14 (木) 14:42:00};
- 最大化した状態で終了すると、`(x, y)`が`(-4, -4)`で記録される。最大化すると、どうやら`Frame.NORMAL`のまま左端に移動してそれから最大扱いになってるようです。だから`componentMoved`が誤爆してる。 -- &user(Tomopy); &new{2007-10-26 (金) 12:20:16};
-- ご指摘ありがとうございます。位置がマイナスの場合は保存しないほうがよさそうですね。修正しておきます。 -- &user(aterai); &new{2007-10-26 (金) 13:37:15};

**コメント [#g4e001a1]
#comment