Swing/Preferences のバックアップ(No.26)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/Preferences へ行く。
- 1 (2004-05-10 (月) 12:45:22)
- 2 (2004-06-02 (水) 09:58:32)
- 3 (2004-08-04 (水) 03:07:23)
- 4 (2004-10-08 (金) 06:24:19)
- 5 (2004-11-04 (木) 10:10:03)
- 6 (2005-02-03 (木) 02:04:18)
- 7 (2005-04-28 (木) 04:32:37)
- 8 (2005-06-29 (水) 22:03:11)
- 9 (2005-11-03 (木) 16:30:33)
- 10 (2006-02-27 (月) 16:18:57)
- 11 (2006-05-30 (火) 11:29:26)
- 12 (2007-05-10 (木) 10:48:30)
- 13 (2007-06-14 (木) 14:42:00)
- 14 (2007-10-26 (金) 12:20:16)
- 15 (2007-10-26 (金) 13:37:15)
- 16 (2008-04-24 (木) 19:54:41)
- 17 (2011-05-04 (水) 18:57:53)
- 18 (2012-03-26 (月) 15:46:11)
- 19 (2013-02-26 (火) 14:53:13)
- 20 (2013-05-03 (金) 23:46:28)
- 21 (2014-12-25 (木) 16:08:29)
- 22 (2015-03-02 (月) 11:17:32)
- 23 (2015-06-23 (火) 16:15:40)
- 24 (2016-06-01 (水) 18:43:35)
- 25 (2017-04-04 (火) 14:13:45)
- 26 (2017-09-08 (金) 19:16:43)
- 27 (2018-02-27 (火) 14:34:35)
- 28 (2020-03-06 (金) 16:27:52)
- 29 (2021-08-20 (金) 13:59:29)
- category: swing folder: Preferences title: JFrameの位置・サイズを記憶する tags: [JFrame, Preferences] author: aterai pubdate: 2003-09-29 description: Preferences(レジストリなど)にフレーム(パネル)の位置・サイズを記憶しておきます。 image:
概要
Preferences
(レジストリなど)にフレーム(パネル)の位置・サイズを記憶しておきます。
Screenshot
Advertisement
サンプルコード
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();
}
}
}
@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);
}
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();
}
}
View in GitHub: Java, Kotlin解説
上記のサンプルでは、対象フレームが最大化、最小化された状態で終了した場合、その前の位置サイズを記憶しておくようになっています。
参考リンク
- Preferences API の概要
- このページの概要にある「
Java
コレクションAPI
の設計に関するFAQ
」は多分、「Preferences API
の設計に関するFAQ
」の間違い Java 8
のPreferences APIの概要では修正済み
- このページの概要にある「
- PersistenceServiceを使ってJFrameの位置・サイズを記憶