TITLE:JFileChooserのデフォルトをDetailsViewに設定
Posted by terai at 2011-01-10

JFileChooserのデフォルトをDetailsViewに設定

JFileChooserを開いたときのデフォルトをリストではなく詳細に変更します。
  • category: swing folder: DetailsViewFileChooser title: JFileChooserのデフォルトをDetails Viewに設定 tags: [JFileChooser, FilePane] author: aterai pubdate: 2011-01-10T17:02:55+09:00 description: JFileChooserを開いたときのデフォルトをリストではなく詳細に変更します。 image: https://lh3.googleusercontent.com/_9Z4BYR88imo/TSq77M-soeI/AAAAAAAAAxg/0nnen-n-cAY/s800/DetailsViewFileChooser.png

概要

JFileChooserを開いたときのデフォルトをリストではなく詳細に変更します。
DetailsViewFileChooser.png

サンプルコード

#spanend
#spanadd
// java - How can I start the JFileChooser in the Details view? - Stack Overflow]
#spanend
#spanadd
// https://stackoverflow.com/questions/16292502/how-can-i-start-the-jfilechooser-in-the-details-view
#spanend
#spanadd
// for (Object key: chooser.getActionMap().allKeys()) {
#spanend
#spanadd
//   System.out.println(key);
#spanend
#spanadd
// }
#spanend
#spanadd
String cmd = "viewTypeDetails";
#spanend
#spanadd
Optional.ofNullable(chooser.getActionMap().get(cmd))
#spanend
  .ifPresent(a -> a.actionPerformed(new ActionEvent(e.getSource(), e.getID(), cmd)));
#spanadd
View in GitHub: Java, Kotlin

サンプルコード

解説

#spandel
searchAndClick(chooser, UIManager.getIcon("FileChooser.detailsViewIcon"));
#spanend
#spanadd
// @see javax/swing/plaf/basic/BasicFileChooserUI.java
#spanend
#spanadd
ActionMap map = new ActionMapUIResource();
#spanend
#spanadd
Action refreshAction = new UIAction(FilePane.ACTION_REFRESH) {
#spanend
  public void actionPerformed(ActionEvent e) {
    getFileChooser().rescanCurrentDirectory();
  }
#spanadd
};
#spanend
#spanadd
map.put(FilePane.ACTION_APPROVE_SELECTION, getApproveSelectionAction());
#spanend
#spanadd
map.put(FilePane.ACTION_CANCEL, getCancelSelectionAction());
#spanend
#spanadd
map.put(FilePane.ACTION_REFRESH, refreshAction);
#spanend
#spanadd
map.put(FilePane.ACTION_CHANGE_TO_PARENT_DIRECTORY, getChangeToParentDirectoryAction());
#spanend
#spanadd

#spanend
#spanadd
// sun.swing.FilePane.ACTION_APPROVE_SELECTION = "approveSelection";
#spanend
#spanadd
// sun.swing.FilePane.ACTION_CANCEL            = "cancelSelection";
#spanend
#spanadd
// sun.swing.FilePane.ACTION_EDIT_FILE_NAME    = "editFileName";
#spanend
#spanadd
// sun.swing.FilePane.ACTION_REFRESH           = "refresh";
#spanend
#spanadd
// sun.swing.FilePane.ACTION_CHANGE_TO_PARENT_DIRECTORY = "Go Up";
#spanend
#spanadd
// sun.swing.FilePane.ACTION_NEW_FOLDER        = "New Folder";
#spanend
#spanadd
// sun.swing.FilePane.ACTION_VIEW_LIST         = "viewTypeList";
#spanend
#spanadd
// sun.swing.FilePane.ACTION_VIEW_DETAILS      = "viewTypeDetails";
#spanend
  • MetalLookAndFeelなどのJFileChooserの子でUIManager.getIcon("FileChooser.detailsViewIcon")アイコンが設定されているJToggleButtonを検索、doClick()することでListからDetailsView(詳細)に切り替え
    • WindowsLookAndFeelでのJFileChooserDetailsView切り替えはJRadioButtonMenuItemなのでこの方法は使用不可
#spanadd
// searchAndClick(chooser, UIManager.getIcon("FileChooser.detailsViewIcon"));
#spanend
private static boolean searchAndClick(Container parent, Icon icon) {
  for(Component c:parent.getComponents()) {
    if(c instanceof JToggleButton && ((JToggleButton)c).getIcon()==icon) {
      ((AbstractButton)c).doClick();
  for (Component c:parent.getComponents()) {
    if (c instanceof JToggleButton && ((JToggleButton) c).getIcon() == icon) {
      ((AbstractButton) c).doClick();
      return true;
    }else{
      if(searchAndClick((Container)c, icon)) return true;
    } else {
      if (searchAndClick((Container) c, icon)) {
        return true;
      }
    }
  }
  return false;
}

解説

上記のサンプルでは、JFileChooserの子で、UIManager.getIcon("FileChooser.detailsViewIcon")アイコンが設定されているJToggleButtonを検索し、doClick()することで、ListからDetailsView(詳細)に切り替えています。
  • 警告されるが以下のようにsun.swing.FilePane#setViewType(sun.swing.FilePane.VIEWTYPE_DETAILS)メソッドを使用する方法もある
  • - 警告されますが、以下のように sun.swing.FilePane#setViewType(sun.swing.FilePane.VIEWTYPE_DETAILS)を使用する方法もあります。
    #spandel
    sun.swing.FilePane filePane = (sun.swing.FilePane)findChildComponent(chooser, sun.swing.FilePane.class);
    #spanend
    #spandel
    filePane.setViewType(sun.swing.FilePane.VIEWTYPE_DETAILS);
    #spanend
    #spanadd
    FilePane filePane = (FilePane) findChildComponent(chooser, FilePane.class);
    #spanend
    #spanadd
    filePane.setViewType(FilePane.VIEWTYPE_DETAILS);
    #spanend
    

参考リンク

参考リンク

コメント

コメント