Swing/FileHistory のバックアップ(No.8)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/FileHistory へ行く。
- 1 (2004-02-26 (木) 02:48:54)
- 2 (2004-06-02 (水) 09:53:39)
- 3 (2004-06-17 (木) 05:49:40)
- 4 (2004-08-31 (火) 12:49:35)
- 5 (2004-10-08 (金) 06:19:57)
- 6 (2004-11-04 (木) 10:05:38)
- 7 (2005-04-28 (木) 04:32:28)
- 8 (2005-11-03 (木) 16:28:44)
- 9 (2006-02-16 (木) 22:24:08)
- 10 (2006-02-27 (月) 15:53:41)
- 11 (2006-06-01 (木) 11:15:46)
- 12 (2006-06-01 (木) 12:56:59)
- 13 (2007-08-05 (日) 21:38:57)
- 14 (2013-02-26 (火) 14:49:11)
- 15 (2013-10-12 (土) 20:07:44)
- 16 (2015-01-20 (火) 15:41:32)
- 17 (2016-06-01 (水) 20:48:26)
- 18 (2017-09-09 (土) 21:17:05)
- 19 (2019-03-08 (金) 19:29:21)
- 20 (2020-12-22 (火) 15:44:59)
- 21 (2023-06-01 (木) 14:49:18)
- 22 (2024-02-02 (金) 11:46:37)
JMenuにアイテムを追加
編集者:Terai Atsuhiro
作成日:2003-10-07
更新日:2024-02-02 (金) 11:46:37
概要
JMenuに最近使ったファイルを履歴として追加してみます。
サンプルコード
private FileHistory fh; private JMenuItem noFile = new JMenuItem("なし"); private JMenu fileHistory; private void initHistory() { int hmax = 0; if(prefs.getBoolean("flag_history", true)) { hmax = prefs.getInt("history_size", 6); } fh = new FileHistory(prefs, "style", hmax); JMenu fm = getMenu("file"); if(fileHistory==null) { fileHistory = new JMenu("最近使ったファイル(F)"); fileHistory.setMnemonic('F'); JMenuItem exit = getMenuItem("exit"); fm.remove(exit); fm.add(fileHistory); fm.addSeparator(); fm.add(exit); }else{ fileHistory.removeAll(); } Vector vl = fh.getModel(); if(vl.size()<=0) { noFile.setEnabled(false); fileHistory.add(noFile); }else{ fm.remove(noFile); for(int i=0;i<vl.size();i++) { String name = (String)vl.elementAt(i); String num = Integer.toString(i+1); JMenuItem mi = new JMenuItem(new HistoryAction(new File(name))); mi.setText(num + ": "+ name); byte[] bt = num.getBytes(); mi.setMnemonic((int) bt[0]); fileHistory.add(mi); } } } private void updateHistory(String str) { fileHistory.removeAll(); Vector vl = fh.getModel(); for(int i=0;i<vl.size();i++) { String name = (String)vl.elementAt(i); String num = Integer.toString(i+1); JMenuItem mi = new JMenuItem(new HistoryAction(new File(name))); mi.setText(num + ": "+ name); byte[] bt = num.getBytes(); mi.setMnemonic((int) bt[0]); fileHistory.add(mi, i); } } class HistoryAction extends AbstractAction{ final private File file; public HistoryAction(File file_) { super(); file = file_; } public void actionPerformed(ActionEvent evt) { //現在編集しているファイルをセーブするかどうか //if(!isSaved()) { // Object[] obj = {"「"+getTitlePath()+"」は変更されています。", // "別のスタイルシートを開く前に保存しますか?"}; // java.awt.Toolkit.getDefaultToolkit().beep(); // int retValue = JOptionPane.showConfirmDialog((JPanel)null, // obj, "APP_NAME", JOptionPane.YES_NO_CANCEL_OPTION); // if(retValue!=JOptionPane.YES_OPTION) { // return; // } //} //以下、ファイルをロードするためのコード //Thread loader = new FileLoader(file); //loader.start(); } }
解説
アプリケーションを再起動しても、これらのファイル履歴を残しておきたい場合は、Preferencesなどを使用する方法があります(参考)。