JFileChooser2.java
     1: //========================================================================================
     2: //  JFileChooser2.java
     3: //    en:JFileChooser2 -- Modified JFileChooser
     4: //    ja:JFileChooser2 -- JFileChooserの改造
     5: //  Copyright (C) 2003-2024 Makoto Kamada
     6: //
     7: //  This file is part of the XEiJ (X68000 Emulator in Java).
     8: //  You can use, modify and redistribute the XEiJ if the conditions are met.
     9: //  Read the XEiJ License for more details.
    10: //  https://stdkmd.net/xeij/
    11: //========================================================================================
    12: 
    13: //----------------------------------------------------------------------------------------
    14: //JFileChooserの改造
    15: //  履歴
    16: //    ファイルチューザーのファイル名のテキストフィールドをコンボボックスに変更する
    17: //    コンボボックスのリストに最近使ったファイルを表示して簡単に選択できるようにする
    18: //  バグ対策
    19: //    ファイルチューザーのテキストフィールドに入力されたファイル名を確実に取り出せるようにする
    20: //    JFileChooserのgetSelectedFile()の説明には
    21: //      Returns the selected file. This can be set either by the programmer via setSelectedFile or by a user action,
    22: //      such as either typing the filename into the UI or selecting the file from a list in the UI.
    23: //    と書かれており、テキストフィールドに入力されたファイル名もgetSelectedFile()で取り出せることになっている
    24: //    しかし、実際にはsetSelectedFile()で設定したかファイルの一覧をクリックして選択したファイル名しか取り出すことができない
    25: //    これでは新しいファイルを作れないだけでなく、
    26: //    ファイルの一覧をクリックしてテキストフィールドに既存のファイル名を表示させた後にそれを書き換えて新規のファイル名を入力すると、
    27: //    入力した新規のファイル名ではなくクリックした既存のファイル名が返るため、既存のファイルを破壊してしまう可能性がある
    28: //----------------------------------------------------------------------------------------
    29: 
    30: package xeij;
    31: 
    32: import java.awt.*;  //BasicStroke,BorderLayout,BoxLayout,Color,Component,Container,Cursor,Desktop,Dimension,Font,Frame,Graphics,Graphics2D,GraphicsDevice,GraphicsEnvironment,GridLayout,Image,Insets,Paint,Point,Rectangle,RenderingHints,Robot,Shape,Stroke,TexturePaint,Toolkit
    33: import java.awt.event.*;  //ActionEvent,ActionListener,ComponentAdapter,ComponentEvent,ComponentListener,FocusAdapter,FocusEvent,FocusListener,InputEvent,KeyAdapter,KeyEvent,KeyListener,MouseAdapter,MouseEvent,MouseListener,MouseMotionAdapter,MouseWheelEvent,WindowAdapter,WindowEvent,WindowListener,WindowStateListener
    34: import java.io.*;  //BufferedInputStream,BufferedOutputStream,BufferedReader,BufferedWriter,File,FileInputStream,FileNotFoundException,FileReader,InputStream,InputStreamReader,IOException,OutputStreamWriter,RandomAccessFile
    35: import java.lang.*;  //Boolean,Character,Class,Comparable,Double,Exception,Float,IllegalArgumentException,Integer,Long,Math,Number,Object,Runnable,SecurityException,String,StringBuilder,System
    36: import java.util.*;  //ArrayList,Arrays,Calendar,GregorianCalendar,HashMap,Map,Map.Entry,Timer,TimerTask,TreeMap
    37: import java.util.regex.*;  //Matcher,Pattern
    38: import javax.swing.*;  //AbstractSpinnerModel,Box,ButtonGroup,DefaultListModel,ImageIcon,JApplet,JButton,JCheckBox,JCheckBoxMenuItem,JDialog,JFileChooser,JFrame,JLabel,JList,JMenu,JMenuBar,JMenuItem,JPanel,JRadioButton,JScrollPane,JSpinner,JTextArea,JTextField,JTextPane,JViewport,ScrollPaneConstants,SpinnerListModel,SpinnerNumberModel,SwingConstants,SwingUtilities,UIManager,UIDefaults,UnsupportedLookAndFeelException
    39: import javax.swing.event.*;  //CaretListener,ChangeEvent,ChangeListener,DocumentEvent,DocumentListener,ListSelectionListener
    40: import javax.swing.text.*;  //AbstractDocument,BadLocationException,DefaultCaret,Document,DocumentFilter,JTextComponent,ParagraphView,Style,StyleConstants,StyleContext,StyledDocument
    41: 
    42: public class JFileChooser2 extends JFileChooser {
    43: 
    44:   private static final boolean DEBUG = false;
    45: 
    46:   //履歴
    47:   public static final int MAXIMUM_HISTORY_COUNT = 100;  //履歴の長さの上限
    48:   public static final int MAXIMUM_ROW_COUNT = 10;  //コンボボックスの行数の上限
    49:   protected ArrayList<File[]> history;  //履歴。消去するとnew File[0]だけになる。空にはならない
    50: 
    51:   //コンポーネント
    52:   protected JTextField formerTextField;  //元のテキストフィールド
    53:   protected JComboBox<String> comboBox;  //コンボボックス
    54:   protected JTextField comboBoxTextField;  //コンボボックスのテキストフィールド
    55:   protected int ignoreItemEvent;  //コンボボックスのアイテムイベントを0=処理する,0以外=処理しない
    56: 
    57:   //テキストフィールドのファイル名の正規表現
    58:   //  ファイル名をそのまま書くまたは"~"で囲んで書く
    59:   //  ' 'または','で区切って複数のファイル名を書ける
    60:   //  ' 'または','を含むファイル名は"~"で囲めば書ける
    61:   //  '"'を含むファイル名は書けない
    62:   //  0文字のファイル名は書けない
    63:   protected static final Pattern NAME_PATTERN = Pattern.compile ("\\s*+(?:,\\s*+)*+(?:([^\",]++)|\"([^\"]++)\"?+)");
    64: 
    65:   //コンストラクタ
    66:   public JFileChooser2 () {
    67:     this (new File[0]);
    68:   }
    69:   public JFileChooser2 (File file) {
    70:     this (new File[] { file });
    71:   }
    72:   @SuppressWarnings ("this-escape") public JFileChooser2 (File[] files) {
    73:     history = new ArrayList<File[]> ();
    74:     history.add (files);
    75:     formerTextField = null;
    76:     comboBox = null;
    77:     comboBoxTextField = null;
    78:     ignoreItemEvent = 0;
    79:     //元のテキストフィールドを求める
    80:     //  ファイルチューザーの構造が異なると失敗する可能性がある
    81:     if (false) {
    82:       ComponentFactory.printComponentTree (this);  //[this-escape]
    83:       //  0.3. javax.swing.JPanel
    84:       //    0.3.0. javax.swing.JPanel
    85:       //      0.3.0.0. javax.swing.plaf.metal.MetalFileChooserUI$AlignedLabel < javax.swing.JLabel
    86:       //      0.3.0.1. javax.swing.plaf.metal.MetalFileChooserUI$3 < javax.swing.JTextField
    87:     }
    88:     JPanel fileNamePanel;
    89:     try {
    90:       fileNamePanel = (JPanel) ((JPanel) getComponent (3)).getComponent (0);  //ファイル名のパネル
    91:       formerTextField = (JTextField) fileNamePanel.getComponent (1);  //元のテキストフィールド
    92:     } catch (Exception e) {
    93:       e.printStackTrace ();
    94:       return;
    95:     }
    96:     //コンボボックスを作る
    97:     //  元のテキストフィールドはJTextFieldの名無しサブクラスなので直接置き換えるのは難しい
    98:     //  元のテキストフィールドを削除してコンボボックスを追加する
    99:     //  元のテキストフィールドのテキストが更新されたらコンボボックスにコピーする
   100:     comboBox = new JComboBox<String> (new String[0]);  //コンボボックス
   101:     comboBox.setEditable (true);  //編集可能
   102:     comboBox.setMaximumRowCount (MAXIMUM_ROW_COUNT);  //最大行数
   103:     //コンボボックスのテキストフィールドを求める
   104:     comboBoxTextField = (JTextField) comboBox.getEditor ().getEditorComponent ();  //コンボボックスのテキストフィールド
   105:     comboBoxTextField.setColumns (formerTextField.getColumns ());  //桁数をコピーする
   106:     comboBoxTextField.setText (formerTextField.getText ());  //元のテキストフィールドのテキストをコンボボックスにコピーする
   107:     //元のテキストフィールドを削除する
   108:     fileNamePanel.remove (formerTextField);
   109:     //コンボボックスを追加する
   110:     fileNamePanel.add (comboBox);
   111:     //再配置する
   112:     fileNamePanel.validate ();
   113:     //元のテキストフィールドにドキュメントリスナーを設定する
   114:     ((AbstractDocument) formerTextField.getDocument ()).addDocumentListener (new DocumentListener () {
   115:       @Override public void changedUpdate (DocumentEvent de) {
   116:         if (DEBUG) {
   117:           System.out.println ("formerTextField.changedUpdate");
   118:           System.out.println ("  getText()=\"" + formerTextField.getText () + "\"");
   119:         }
   120:       }
   121:       @Override public void insertUpdate (DocumentEvent de) {
   122:         if (DEBUG) {
   123:           System.out.println ("formerTextField.insertUpdate");
   124:           System.out.println ("  getText()=\"" + formerTextField.getText () + "\"");
   125:         }
   126:         if (ignoreItemEvent == 0) {
   127:           ignoreItemEvent++;
   128:           comboBoxTextField.setText (formerTextField.getText ());  //元のテキストフィールドのテキストをコンボボックスにコピーする
   129:           ignoreItemEvent--;
   130:         }
   131:       }
   132:       @Override public void removeUpdate (DocumentEvent de) {
   133:         if (DEBUG) {
   134:           System.out.println ("formerTextField.removeUpdate");
   135:           System.out.println ("  getText()=\"" + formerTextField.getText () + "\"");
   136:         }
   137:         if (ignoreItemEvent == 0) {
   138:           ignoreItemEvent++;
   139:           comboBoxTextField.setText (formerTextField.getText ());  //元のテキストフィールドのテキストをコンボボックスにコピーする
   140:           ignoreItemEvent--;
   141:         }
   142:       }
   143:     });
   144:     //コンボボックスのテキストフィールドにドキュメントリスナーを設定する
   145:     ((AbstractDocument) comboBoxTextField.getDocument ()).addDocumentListener (new DocumentListener () {
   146:       @Override public void changedUpdate (DocumentEvent de) {
   147:         if (DEBUG) {
   148:           System.out.println ("comboBoxTextField.changedUpdate");
   149:           System.out.println ("  getText()=\"" + formerTextField.getText () + "\"");
   150:         }
   151:       }
   152:       @Override public void insertUpdate (DocumentEvent de) {
   153:         if (DEBUG) {
   154:           System.out.println ("comboBoxTextField.insertUpdate");
   155:           System.out.println ("  getText()=\"" + formerTextField.getText () + "\"");
   156:         }
   157:         if (ignoreItemEvent == 0) {
   158:           ignoreItemEvent++;
   159:           setSelectedFiles (namesToFiles (comboBoxTextField.getText ()));  //コンボボックスのテキストのファイルを選択する
   160:           ignoreItemEvent--;
   161:         }
   162:       }
   163:       @Override public void removeUpdate (DocumentEvent de) {
   164:         if (DEBUG) {
   165:           System.out.println ("comboBoxTextField.removeUpdate");
   166:           System.out.println ("  getText()=\"" + formerTextField.getText () + "\"");
   167:         }
   168:         if (ignoreItemEvent == 0) {
   169:           ignoreItemEvent++;
   170:           setSelectedFiles (namesToFiles (comboBoxTextField.getText ()));  //コンボボックスのテキストのファイルを選択する
   171:           ignoreItemEvent--;
   172:         }
   173:       }
   174:     });
   175:     //コンボボックスにアイテムリスナーを設定する
   176:     comboBox.addItemListener (new ItemListener () {
   177:       @Override public void itemStateChanged (ItemEvent ie) {
   178:         if (DEBUG) {
   179:           System.out.println ("comboBox.itemStateChanged");
   180:           System.out.println ("  getSelectedIndex()=" + comboBox.getSelectedIndex ());
   181:           System.out.println ("  getText()=" + comboBoxTextField.getText ());
   182:         }
   183:         if (ignoreItemEvent == 0) {
   184:           ignoreItemEvent++;
   185:           if (ie.getStateChange () == ItemEvent.SELECTED) {
   186:             int i = comboBox.getSelectedIndex ();
   187:             if (0 <= i) {
   188:               if (i < history.size ()) {
   189:                 File[] files = history.get (i);  //選択されたファイルを
   190:                 history.remove (i);
   191:                 history.add (0, files);  //履歴の先頭に移す
   192:               } else {
   193:                 clearHistory ();  //履歴を消去する
   194:                 //キャンセルしたときも消去が選択されたままなので元に戻す
   195:               }
   196:               historyToComboBox ();  //履歴をコンボボックスにコピーする
   197:               selectLastFiles ();  //履歴の先頭のファイルを選択する
   198:             }
   199:           }
   200:           ignoreItemEvent--;
   201:         }
   202:       }
   203:     });
   204:     historyToComboBox ();  //履歴をコンボボックスにコピーする
   205:     selectLastFiles ();  //履歴の先頭のファイルを選択する
   206:   }
   207: 
   208:   //clearHistory ()
   209:   //  履歴を消去する
   210:   //  コンボボックスは操作しない
   211:   public void clearHistory () {
   212:     XEiJ.pnlExitFullScreen (true);
   213:     if (JOptionPane.showConfirmDialog (
   214:       this,
   215:       Multilingual.mlnJapanese ? "履歴を消去しますか?" : "Do you want to clear history?",
   216:       Multilingual.mlnJapanese ? "確認" : "Confirmation",
   217:       JOptionPane.YES_NO_OPTION,
   218:       JOptionPane.PLAIN_MESSAGE) == JOptionPane.YES_OPTION) {
   219:       history.clear ();  //履歴を消去する
   220:       history.add (0, new File[0]);
   221:     }
   222:   }
   223: 
   224:   //selectLastFiles ()
   225:   //  履歴の先頭のファイルを選択する
   226:   public void selectLastFiles () {
   227:     if (DEBUG) {
   228:       System.out.println ("selectLastFiles");
   229:       if (history.size () != 0) {
   230:         System.out.println ("  " + filesToPaths (history.get (0)));
   231:       }
   232:     }
   233:     if (history.size () != 0) {
   234:       File[] files = history.get (0);
   235:       if (files.length == 0) {
   236:         setCurrentDirectory (new File (".").getAbsoluteFile ().getParentFile ());
   237:       }
   238:       setSelectedFiles (files);
   239:     }
   240:   }
   241: 
   242:   //file = getSelectedFile ()
   243:   //  選択されたファイルを返す
   244:   //  選択されたファイルがないときはnullを返す
   245:   @Override public File getSelectedFile () {
   246:     if (DEBUG) {
   247:       System.out.println ("getSelectedFile");
   248:     }
   249:     File[] files = getSelectedFiles ();
   250:     return files.length == 0 ? null : files[0];
   251:   }
   252: 
   253:   //files = getSelectedFiles ()
   254:   //  選択された複数のファイルを返す
   255:   //  選択されたファイルがないときは長さ0の配列を返す
   256:   @Override public File[] getSelectedFiles () {
   257:     if (DEBUG) {
   258:       System.out.println ("getSelectedFiles");
   259:     }
   260:     if (comboBox == null) {  //コンストラクタの中で準備ができていない
   261:       return super.getSelectedFiles ();
   262:     }
   263:     File[] files = namesToFiles (comboBoxTextField.getText ());
   264:     if (DEBUG) {
   265:       for (int i = 0; i < files.length; i++) {
   266:         File file = files[i];
   267:         System.out.println ("  " + file.getPath ());
   268:       }
   269:     }
   270:     return files;
   271:   }
   272: 
   273:   //setSelectedFile (file)
   274:   //  ファイルを選択する
   275:   @Override public void setSelectedFile (File file) {
   276:     if (DEBUG) {
   277:       System.out.println ("setSelectedFile");
   278:       if (file != null) {
   279:         System.out.println ("  " + file.getPath ());
   280:       }
   281:     }
   282:     //setSelectedFiles (new File[] { file });
   283:     //ignoreItemEvent++;
   284:     super.setSelectedFile (file);
   285:     //ignoreItemEvent--;
   286:   }
   287: 
   288:   //setSelectedFiles (files)
   289:   //  複数のファイルを選択する
   290:   @Override public void setSelectedFiles (File[] files) {
   291:     if (DEBUG) {
   292:       System.out.println ("setSelectedFiles");
   293:       if (files != null) {
   294:         for (File file : files) {
   295:           System.out.println ("  " + file.getPath ());
   296:         }
   297:       }
   298:     }
   299:     //ディレクトリを選択すると親ディレクトリが開いてしまうので末尾に"./"を付ける
   300:     File[] dotFiles = null;
   301:     if (files != null) {
   302:       dotFiles = new File[files.length];
   303:       for (int i = 0; i < files.length; i++) {
   304:         File file = files[i];
   305:         dotFiles[i] = file.isDirectory () ? new File (file, ".") : file;
   306:       }
   307:     }
   308:     //ignoreItemEvent++;
   309:     super.setSelectedFiles (dotFiles);
   310:     //ignoreItemEvent--;
   311:   }
   312: 
   313:   //addHistory (file)
   314:   //  ファイルを履歴に追加する
   315:   public void addHistory (File file) {
   316:     if (DEBUG) {
   317:       System.out.println ("addHistory");
   318:       if (file != null) {
   319:         System.out.println ("  " + file.getPath ());
   320:       }
   321:     }
   322:     if (file != null) {
   323:       addHistory (new File[] { file });
   324:     }
   325:   }
   326: 
   327:   //addHistory (paths)
   328:   //  パス名を並べた文字列をファイルの配列に変換して履歴に追加する
   329:   public void addHistory (String paths) {
   330:     addHistory (pathsToFiles (paths));
   331:   }  //addHistory
   332: 
   333:   //addHistory (files)
   334:   //  複数のファイルを履歴に追加する
   335:   public void addHistory (File[] files) {
   336:     if (DEBUG) {
   337:       System.out.println ("addHistory");
   338:       if (files != null) {
   339:         for (File file : files) {
   340:           System.out.println ("  " + file.getPath ());
   341:         }
   342:       }
   343:     }
   344:     if (files == null || files.length == 0) {  //ファイルがない
   345:       return;
   346:     }
   347:     for (int i = 0; i < history.size (); i++) {
   348:       File[] files2 = history.get (i);
   349:       if (files2.length == 0 ||  //空
   350:           Arrays.equals (files, files2)) {  //一致
   351:         history.remove (i);  //削除する
   352:         i--;
   353:       }
   354:     }
   355:     if (history.size () == MAXIMUM_HISTORY_COUNT) {  //一杯
   356:       history.remove (MAXIMUM_HISTORY_COUNT - 1);  //末尾を削る
   357:     }
   358:     history.add (0, files);  //先頭に追加する
   359:     historyToComboBox ();  //履歴をコンボボックスにコピーする
   360:   }
   361: 
   362:   //pathsList = getHistory ()
   363:   //  履歴をパス名を並べた文字列のリストに変換する
   364:   public ArrayList<String> getHistory () {
   365:     if (DEBUG) {
   366:       System.out.println ("getHistory");
   367:     }
   368:     ArrayList<String> pathsList = new ArrayList<String> ();
   369:     for (File[] files : history) {
   370:       pathsList.add (filesToPaths (files));
   371:     }
   372:     return pathsList;
   373:   }
   374: 
   375:   //setHistory (pathsList)
   376:   //  パス名を並べた文字列のリストを履歴に変換する
   377:   public void setHistory (ArrayList<String> pathsList) {
   378:     if (DEBUG) {
   379:       System.out.println ("setHistory");
   380:       if (pathsList != null) {
   381:         for (String paths : pathsList) {
   382:           System.out.println ("  " + paths);
   383:         }
   384:       }
   385:     }
   386:     history.clear ();
   387:   list:
   388:     for (String paths : pathsList) {  //新しい順
   389:       File[] files = pathsToFiles (paths);
   390:       if (files.length == 0) {  //ファイルがない
   391:         continue list;
   392:       }
   393:       for (File[] newerFiles : history) {
   394:         if (Arrays.equals (files, newerFiles)) {  //既にある
   395:           continue list;
   396:         }
   397:       }
   398:       history.add (files);  //末尾に追加する
   399:       if (history.size () == MAXIMUM_HISTORY_COUNT) {  //一杯になった
   400:         break list;
   401:       }
   402:     }
   403:     historyToComboBox ();  //履歴をコンボボックスにコピーする
   404:   }
   405: 
   406:   //historyToComboBox ()
   407:   //  履歴をコンボボックスにコピーする
   408:   protected void historyToComboBox () {
   409:     if (DEBUG) {
   410:       System.out.println ("historyToComboBox");
   411:       for (File[] files : history) {
   412:         System.out.println ("  " + filesToPaths (files));
   413:       }
   414:     }
   415:     ignoreItemEvent++;
   416:     comboBox.removeAllItems ();
   417:     for (File[] files : history) {
   418:       comboBox.addItem (filesToNames (files));
   419:     }
   420:     comboBox.addItem (Multilingual.mlnJapanese ?
   421:                       "---------- 履歴を消去する ----------" :
   422:                       "---------- Clear history ----------");
   423:     ignoreItemEvent--;
   424:   }
   425: 
   426:   //names = filesToNames (files)
   427:   //  ファイルの配列をファイル名を並べた文字列に変換する
   428:   public String filesToNames (File[] files) {
   429:     StringBuilder sb = new StringBuilder ();
   430:     int n = files.length;
   431:     if (n == 0) {
   432:     } else if (n == 1) {
   433:       sb.append (files[0].getName ());  //ファイル名
   434:     } else {
   435:       for (int i = 0; i < n; i++) {
   436:         if (0 < i) {
   437:           sb.append (' ');
   438:         }
   439:         sb.append ('"').append (files[i].getName ()).append ('"');  //ファイル名
   440:       }
   441:     }
   442:     return sb.toString ();
   443:   }
   444: 
   445:   //files = namesToFiles (names)
   446:   //  ファイル名を並べた文字列をファイルの配列に変換する
   447:   //  ファイル名がないときは長さ0の配列を返す
   448:   public File[] namesToFiles (String names) {
   449:     File directory = getCurrentDirectory ();  //現在のディレクトリ
   450:     ArrayList<File> fileList = new ArrayList<File> ();
   451:     Matcher matcher = NAME_PATTERN.matcher (names);
   452:     while (matcher.find ()) {
   453:       String name = matcher.group (1) != null ? matcher.group (1) : matcher.group (2);
   454:       File file = new File (directory, name).getAbsoluteFile ();
   455:       if (!fileList.contains (file)) {  //重複しない
   456:         fileList.add (file);
   457:       }
   458:     }
   459:     return fileList.toArray (new File[fileList.size ()]);
   460:   }
   461: 
   462:   //paths = filesToPaths (files)
   463:   //  ファイルの配列をパス名を並べた文字列に変換する
   464:   public static String filesToPaths (File[] files) {
   465:     StringBuilder sb = new StringBuilder ();
   466:     int n = files.length;
   467:     if (n == 0) {
   468:     } else if (n == 1) {
   469:       sb.append (files[0].getPath ());  //パス名
   470:     } else {
   471:       for (int i = 0; i < n; i++) {
   472:         if (0 < i) {
   473:           sb.append (' ');
   474:         }
   475:         sb.append ('"').append (files[i].getPath ()).append ('"');  //パス名
   476:       }
   477:     }
   478:     return sb.toString ();
   479:   }
   480: 
   481:   //files = pathsToFiles (paths)
   482:   //  パス名を並べた文字列をファイルの配列に変換する
   483:   //  パス名がないときは長さ0の配列を返す
   484:   public static File[] pathsToFiles (String paths) {
   485:     ArrayList<File> fileList = new ArrayList<File> ();
   486:     Matcher matcher = NAME_PATTERN.matcher (paths);
   487:     while (matcher.find ()) {
   488:       String path = matcher.group (1) != null ? matcher.group (1) : matcher.group (2);
   489:       File file = new File (path).getAbsoluteFile ();
   490:       if (!fileList.contains (file)) {  //重複しない
   491:         fileList.add (file);
   492:       }
   493:     }
   494:     return fileList.toArray (new File[fileList.size ()]);
   495:   }
   496: 
   497: }  //class JFileChooser2
   498: 
   499: 
   500: