Skip to Main Content

Java SE (Java Platform, Standard Edition)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

How does the JFileChooser "readOnly" property work?

camickrOct 13 2011 — edited Nov 3 2013
The "normal" behaviour for a file chooser usiing the UIManager "FileChooser.readOnly" default value of Boolean.FALSE is:

1) A "New Folder" button is displayed
2) When a File in the list is selected you can use the F2 key to rename the file
3) Or, if you click on an already selected file you will also be able to rename the file

When you use:
UIManager.put("FileChooser.readOnly", Boolean.TRUE);
then the behaviour changes:

1) The "New Folder" button is not displayed
2) You can't rename the file by using F2
3) You can't rename the file by clicking on a selected file

I am curious how the "readOnly" property works?

Looking through the source code of BasicFileChooserUI and MetalFileChooserUI it was easy to see that the "New Folder" button is not created when the "readOnly" property is true.

However, I can't figure out how "file name editing" works. Using Key Bindings I was able to find the binding between the F2 key and an Action named "editFileName". However, I can't find where this Action is actually created in the UI. I also can't figure out how clicking on a selected file name invokes this Action.

Does anybody know how to prevent the mouse click from allowing editing of the file name? Does anybody know where the "editFileName" Action is created and how this Action gets invoked by a mouse click?

This is only a curiosity question. Just when I think I understand Actions and Key Bindings I find something like this that I don't understand.

The following SSCCE shows:

1) the normal behaviour of a file chooser
2) the "readOnly" behaviour of a file chooser
3) my attempt to simulate the "readOnly" behaviour of a file chooser. It works except a mouse click still allows editing of the file name.
import java.awt.*;
import java.beans.*;
import java.awt.event.*;
import javax.swing.*;

public class FileChooserSSCCE extends JPanel
{
    public FileChooserSSCCE()
    {
        //  Demonstrate default file chooser functionality

        JButton normal = new JButton("Normal");
        normal.addActionListener( new ActionListener()
        {
            public void actionPerformed(ActionEvent e)
            {
                UIManager.put("FileChooser.readOnly", Boolean.FALSE);

                JFileChooser fc = new JFileChooser(".");
                fc.showSaveDialog(null);
            }
        });
        add( normal );

        //  Demonstrate "read only" property

        JButton readOnly = new JButton("Read Only");
        readOnly.addActionListener( new ActionListener()
        {
            public void actionPerformed(ActionEvent e)
            {
                UIManager.put("FileChooser.readOnly", Boolean.TRUE);

                JFileChooser fc = new JFileChooser(".");
                fc.showSaveDialog(null);
            }
        });
        add( readOnly );

        //  Simulate "read only" property

        JButton simulate = new JButton("Simulate Read Only");
        simulate.addActionListener( new ActionListener()
        {
            public void actionPerformed(ActionEvent e)
            {
                UIManager.put("FileChooser.readOnly", Boolean.FALSE);

                JFileChooser fc = new JFileChooser(".");
                ActionMap am = fc.getActionMap();

                //  Disable the New Folder action. The action gets re-enabled every time
                //  a new directory is selected so we need the PropertyChangeListener

                final Action newFolder = am.get("New Folder");
                newFolder.setEnabled( false );
                newFolder.addPropertyChangeListener( new PropertyChangeListener()
                {
                   public void propertyChange(PropertyChangeEvent e)
                   {
                        newFolder.setEnabled( false );
                   }
                });

                //  The other solution is to remove the button then you don't need to
                //  disable the action. This solution requires Darryl's SwingUtils
                //  class: http://tips4java.wordpress.com/2008/11/13/swing-utils/
                //  Comment the above code and uncomment below if you want to test this.
/*
                Icon icon = UIManager.getIcon("FileChooser.newFolderIcon");
                JButton button =
                    SwingUtils.getDescendantOfType(JButton.class, fc, "Icon", icon);
                button.getParent().remove(button);
*/
                //  Disable editing of the file name by using F2

                InputMap im = fc.getInputMap(JFileChooser.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT);
                im.put(KeyStroke.getKeyStroke("F2"), "none");

                fc.showSaveDialog(null);
            }
        });
        add( simulate );
    }

    private static void createAndShowUI()
    {
        JFrame frame = new JFrame("FileChooserSSCCE");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.add( new FileChooserSSCCE() );
        frame.pack();
        frame.setLocationRelativeTo( null );
        frame.setVisible( true );
    }

    public static void main(String[] args)
    {
        EventQueue.invokeLater(new Runnable()
        {
            public void run()
            {
                createAndShowUI();
            }
        });
    }
}
This question was inspired by by my attemtp to help with this question: http://www.coderanch.com/t/555535/GUI/java/FileChooser-readOnly
This post has been answered by darrylburke on Oct 14 2011
Jump to Answer

Comments

794342
add the indicated line and it should work
(but you may get other problems, look you don't want, color etc)
public static void main(String[] args){
  SwingUtilities.invokeLater(new Runnable(){
    public void run(){
      JDialog.setDefaultLookAndFeelDecorated(true);//<-----------
      new FileChooserSizeTest();
}});
}
843805
Michael_Dunn
yes it works! if I add JDialog.setDefaultLookAndFeelDecorated(true);

but that's the only way you know?
because yes it give me looks and feel problems my project :(
794342
the only other way I've seen is to add a componenLlistener,
and in componentResized() check the dimension - if under the min, reset to min
but I've not seen anyone happy with this solution - the component can be
dragged to small size, then 'snaps back' to the minimum
843805
the only other way I've seen is to add a
componenLlistener,
and in componentResized() check the dimension - if
under the min, reset to min
but I've not seen anyone happy with this solution -
the component can be
dragged to small size, then 'snaps back' to the
minimum
I think one of the changes introduced in Java 6 is that setMinimumSize() on a Window will actually enforce the set size, meaning that the window size will "freeze" if the user tries to make it smaller. I haven't tried this myself though, so I won't vouch for it.
843805
...and I see now that the OP mentions he is already using Java 6, so never mind.
843805
Try creating the file chooser like this
                JFileChooser fc = new JFileChooser(){
                    protected JDialog createDialog(Component parent) throws HeadlessException {
                        JDialog dialog = super.createDialog(parent);
                        dialog.setMinimumSize(new Dimension(200,200));
                        return dialog;
                    }
                };
1 - 6
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Dec 1 2013
Added on Oct 13 2011
8 comments
8,421 views