javax.swing.plaf.FileChooserUI Java Examples

The following examples show how to use javax.swing.plaf.FileChooserUI. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: JFileChooser.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Resets the UI property to a value from the current look and feel.
 *
 * @see JComponent#updateUI
 */
public void updateUI() {
    if (isAcceptAllFileFilterUsed()) {
        removeChoosableFileFilter(getAcceptAllFileFilter());
    }
    FileChooserUI ui = ((FileChooserUI)UIManager.getUI(this));
    if (fileSystemView == null) {
        // We were probably deserialized
        setFileSystemView(FileSystemView.getFileSystemView());
    }
    setUI(ui);

    if(isAcceptAllFileFilterUsed()) {
        addChoosableFileFilter(getAcceptAllFileFilter());
    }
}
 
Example #2
Source File: FileChooserDemo.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
public void actionPerformed(ActionEvent evt) {
    Object src = evt.getSource();
    String cmd = evt.getActionCommand();

    if (src == backButton) {
        back();
    } else if (src == nextButton) {
        FileChooserUI ui = chooser.getUI();
        if (ui instanceof BasicFileChooserUI) {
            // Workaround for bug 4528663. This is necessary to
            // pick up the contents of the file chooser text field.
            // This will trigger an APPROVE_SELECTION action.
            ((BasicFileChooserUI) ui).getApproveSelectionAction().
                    actionPerformed(null);
        } else {
            next();
        }
    } else if (src == closeButton) {
        close();
    } else if (APPROVE_SELECTION.equals(cmd)) {
        next();
    } else if (CANCEL_SELECTION.equals(cmd)) {
        close();
    }
}
 
Example #3
Source File: JFileChooser.java    From jdk1.8-source-analysis with Apache License 2.0 6 votes vote down vote up
/**
 * Resets the UI property to a value from the current look and feel.
 *
 * @see JComponent#updateUI
 */
public void updateUI() {
    if (isAcceptAllFileFilterUsed()) {
        removeChoosableFileFilter(getAcceptAllFileFilter());
    }
    FileChooserUI ui = ((FileChooserUI)UIManager.getUI(this));
    if (fileSystemView == null) {
        // We were probably deserialized
        setFileSystemView(FileSystemView.getFileSystemView());
    }
    setUI(ui);

    if(isAcceptAllFileFilterUsed()) {
        addChoosableFileFilter(getAcceptAllFileFilter());
    }
}
 
Example #4
Source File: FileChooserDemo.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
public void actionPerformed(ActionEvent evt) {
    Object src = evt.getSource();
    String cmd = evt.getActionCommand();

    if (src == backButton) {
        back();
    } else if (src == nextButton) {
        FileChooserUI ui = chooser.getUI();
        if (ui instanceof BasicFileChooserUI) {
            // Workaround for bug 4528663. This is necessary to
            // pick up the contents of the file chooser text field.
            // This will trigger an APPROVE_SELECTION action.
            ((BasicFileChooserUI) ui).getApproveSelectionAction().
                    actionPerformed(null);
        } else {
            next();
        }
    } else if (src == closeButton) {
        close();
    } else if (APPROVE_SELECTION.equals(cmd)) {
        next();
    } else if (CANCEL_SELECTION.equals(cmd)) {
        close();
    }
}
 
Example #5
Source File: JFileChooser.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Resets the UI property to a value from the current look and feel.
 *
 * @see JComponent#updateUI
 */
public void updateUI() {
    if (isAcceptAllFileFilterUsed()) {
        removeChoosableFileFilter(getAcceptAllFileFilter());
    }
    FileChooserUI ui = ((FileChooserUI)UIManager.getUI(this));
    if (fileSystemView == null) {
        // We were probably deserialized
        setFileSystemView(FileSystemView.getFileSystemView());
    }
    setUI(ui);

    if(isAcceptAllFileFilterUsed()) {
        addChoosableFileFilter(getAcceptAllFileFilter());
    }
}
 
Example #6
Source File: JFileChooser.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Resets the UI property to a value from the current look and feel.
 *
 * @see JComponent#updateUI
 */
public void updateUI() {
    if (isAcceptAllFileFilterUsed()) {
        removeChoosableFileFilter(getAcceptAllFileFilter());
    }
    FileChooserUI ui = ((FileChooserUI)UIManager.getUI(this));
    if (fileSystemView == null) {
        // We were probably deserialized
        setFileSystemView(FileSystemView.getFileSystemView());
    }
    setUI(ui);

    if(isAcceptAllFileFilterUsed()) {
        addChoosableFileFilter(getAcceptAllFileFilter());
    }
}
 
Example #7
Source File: FileChooserDemo.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
public void actionPerformed(ActionEvent evt) {
    Object src = evt.getSource();
    String cmd = evt.getActionCommand();

    if (src == backButton) {
        back();
    } else if (src == nextButton) {
        FileChooserUI ui = chooser.getUI();
        if (ui instanceof BasicFileChooserUI) {
            // Workaround for bug 4528663. This is necessary to
            // pick up the contents of the file chooser text field.
            // This will trigger an APPROVE_SELECTION action.
            ((BasicFileChooserUI) ui).getApproveSelectionAction().
                    actionPerformed(null);
        } else {
            next();
        }
    } else if (src == closeButton) {
        close();
    } else if (APPROVE_SELECTION.equals(cmd)) {
        next();
    } else if (CANCEL_SELECTION.equals(cmd)) {
        close();
    }
}
 
Example #8
Source File: JFileChooser.java    From jdk8u-dev-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Resets the UI property to a value from the current look and feel.
 *
 * @see JComponent#updateUI
 */
public void updateUI() {
    if (isAcceptAllFileFilterUsed()) {
        removeChoosableFileFilter(getAcceptAllFileFilter());
    }
    FileChooserUI ui = ((FileChooserUI)UIManager.getUI(this));
    if (fileSystemView == null) {
        // We were probably deserialized
        setFileSystemView(FileSystemView.getFileSystemView());
    }
    setUI(ui);

    if(isAcceptAllFileFilterUsed()) {
        addChoosableFileFilter(getAcceptAllFileFilter());
    }
}
 
Example #9
Source File: JFileChooser.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Resets the UI property to a value from the current look and feel.
 *
 * @see JComponent#updateUI
 */
public void updateUI() {
    if (isAcceptAllFileFilterUsed()) {
        removeChoosableFileFilter(getAcceptAllFileFilter());
    }
    FileChooserUI ui = ((FileChooserUI)UIManager.getUI(this));
    if (fileSystemView == null) {
        // We were probably deserialized
        setFileSystemView(FileSystemView.getFileSystemView());
    }
    setUI(ui);

    if(isAcceptAllFileFilterUsed()) {
        addChoosableFileFilter(getAcceptAllFileFilter());
    }
}
 
Example #10
Source File: FileChooserDemo.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
public void actionPerformed(ActionEvent evt) {
    Object src = evt.getSource();
    String cmd = evt.getActionCommand();

    if (src == backButton) {
        back();
    } else if (src == nextButton) {
        FileChooserUI ui = chooser.getUI();
        if (ui instanceof BasicFileChooserUI) {
            // Workaround for bug 4528663. This is necessary to
            // pick up the contents of the file chooser text field.
            // This will trigger an APPROVE_SELECTION action.
            ((BasicFileChooserUI) ui).getApproveSelectionAction().
                    actionPerformed(null);
        } else {
            next();
        }
    } else if (src == closeButton) {
        close();
    } else if (APPROVE_SELECTION.equals(cmd)) {
        next();
    } else if (CANCEL_SELECTION.equals(cmd)) {
        close();
    }
}
 
Example #11
Source File: JFileChooser.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Resets the UI property to a value from the current look and feel.
 *
 * @see JComponent#updateUI
 */
public void updateUI() {
    if (isAcceptAllFileFilterUsed()) {
        removeChoosableFileFilter(getAcceptAllFileFilter());
    }
    FileChooserUI ui = ((FileChooserUI)UIManager.getUI(this));
    if (fileSystemView == null) {
        // We were probably deserialized
        setFileSystemView(FileSystemView.getFileSystemView());
    }
    setUI(ui);

    if(isAcceptAllFileFilterUsed()) {
        addChoosableFileFilter(getAcceptAllFileFilter());
    }
}
 
Example #12
Source File: JFileChooser.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Resets the UI property to a value from the current look and feel.
 *
 * @see JComponent#updateUI
 */
public void updateUI() {
    if (isAcceptAllFileFilterUsed()) {
        removeChoosableFileFilter(getAcceptAllFileFilter());
    }
    FileChooserUI ui = ((FileChooserUI)UIManager.getUI(this));
    if (fileSystemView == null) {
        // We were probably deserialized
        setFileSystemView(FileSystemView.getFileSystemView());
    }
    setUI(ui);

    if(isAcceptAllFileFilterUsed()) {
        addChoosableFileFilter(getAcceptAllFileFilter());
    }
}
 
Example #13
Source File: FileChooserDemo.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
public void actionPerformed(ActionEvent evt) {
    Object src = evt.getSource();
    String cmd = evt.getActionCommand();

    if (src == backButton) {
        back();
    } else if (src == nextButton) {
        FileChooserUI ui = chooser.getUI();
        if (ui instanceof BasicFileChooserUI) {
            // Workaround for bug 4528663. This is necessary to
            // pick up the contents of the file chooser text field.
            // This will trigger an APPROVE_SELECTION action.
            ((BasicFileChooserUI) ui).getApproveSelectionAction().
                    actionPerformed(null);
        } else {
            next();
        }
    } else if (src == closeButton) {
        close();
    } else if (APPROVE_SELECTION.equals(cmd)) {
        next();
    } else if (CANCEL_SELECTION.equals(cmd)) {
        close();
    }
}
 
Example #14
Source File: JFileChooser.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Resets the UI property to a value from the current look and feel.
 *
 * @see JComponent#updateUI
 */
public void updateUI() {
    if (isAcceptAllFileFilterUsed()) {
        removeChoosableFileFilter(getAcceptAllFileFilter());
    }
    FileChooserUI ui = ((FileChooserUI)UIManager.getUI(this));
    if (fileSystemView == null) {
        // We were probably deserialized
        setFileSystemView(FileSystemView.getFileSystemView());
    }
    setUI(ui);

    if(isAcceptAllFileFilterUsed()) {
        addChoosableFileFilter(getAcceptAllFileFilter());
    }
}
 
Example #15
Source File: JFileChooser.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Resets the UI property to a value from the current look and feel.
 *
 * @see JComponent#updateUI
 */
public void updateUI() {
    if (isAcceptAllFileFilterUsed()) {
        removeChoosableFileFilter(getAcceptAllFileFilter());
    }
    FileChooserUI ui = ((FileChooserUI)UIManager.getUI(this));
    if (fileSystemView == null) {
        // We were probably deserialized
        setFileSystemView(FileSystemView.getFileSystemView());
    }
    setUI(ui);

    if(isAcceptAllFileFilterUsed()) {
        addChoosableFileFilter(getAcceptAllFileFilter());
    }
}
 
Example #16
Source File: FileChooserDemo.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
public void actionPerformed(ActionEvent evt) {
    Object src = evt.getSource();
    String cmd = evt.getActionCommand();

    if (src == backButton) {
        back();
    } else if (src == nextButton) {
        FileChooserUI ui = chooser.getUI();
        if (ui instanceof BasicFileChooserUI) {
            // Workaround for bug 4528663. This is necessary to
            // pick up the contents of the file chooser text field.
            // This will trigger an APPROVE_SELECTION action.
            ((BasicFileChooserUI) ui).getApproveSelectionAction().
                    actionPerformed(null);
        } else {
            next();
        }
    } else if (src == closeButton) {
        close();
    } else if (APPROVE_SELECTION.equals(cmd)) {
        next();
    } else if (CANCEL_SELECTION.equals(cmd)) {
        close();
    }
}
 
Example #17
Source File: MultiFileChooserUI.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Invokes the <code>getFileView</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public FileView getFileView(JFileChooser a) {
    FileView returnValue =
        ((FileChooserUI) (uis.elementAt(0))).getFileView(a);
    for (int i = 1; i < uis.size(); i++) {
        ((FileChooserUI) (uis.elementAt(i))).getFileView(a);
    }
    return returnValue;
}
 
Example #18
Source File: MultiFileChooserUI.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Invokes the <code>getFileView</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public FileView getFileView(JFileChooser a) {
    FileView returnValue =
        ((FileChooserUI) (uis.elementAt(0))).getFileView(a);
    for (int i = 1; i < uis.size(); i++) {
        ((FileChooserUI) (uis.elementAt(i))).getFileView(a);
    }
    return returnValue;
}
 
Example #19
Source File: MultiFileChooserUI.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
/**
 * Invokes the <code>getDialogTitle</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public String getDialogTitle(JFileChooser a) {
    String returnValue =
        ((FileChooserUI) (uis.elementAt(0))).getDialogTitle(a);
    for (int i = 1; i < uis.size(); i++) {
        ((FileChooserUI) (uis.elementAt(i))).getDialogTitle(a);
    }
    return returnValue;
}
 
Example #20
Source File: MultiFileChooserUI.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Invokes the <code>getFileView</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public FileView getFileView(JFileChooser a) {
    FileView returnValue =
        ((FileChooserUI) (uis.elementAt(0))).getFileView(a);
    for (int i = 1; i < uis.size(); i++) {
        ((FileChooserUI) (uis.elementAt(i))).getFileView(a);
    }
    return returnValue;
}
 
Example #21
Source File: MultiFileChooserUI.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Invokes the <code>getAcceptAllFileFilter</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public FileFilter getAcceptAllFileFilter(JFileChooser a) {
    FileFilter returnValue =
        ((FileChooserUI) (uis.elementAt(0))).getAcceptAllFileFilter(a);
    for (int i = 1; i < uis.size(); i++) {
        ((FileChooserUI) (uis.elementAt(i))).getAcceptAllFileFilter(a);
    }
    return returnValue;
}
 
Example #22
Source File: MultiFileChooserUI.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Invokes the <code>getFileView</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public FileView getFileView(JFileChooser a) {
    FileView returnValue =
        ((FileChooserUI) (uis.elementAt(0))).getFileView(a);
    for (int i = 1; i < uis.size(); i++) {
        ((FileChooserUI) (uis.elementAt(i))).getFileView(a);
    }
    return returnValue;
}
 
Example #23
Source File: MultiFileChooserUI.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Invokes the <code>getFileView</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public FileView getFileView(JFileChooser a) {
    FileView returnValue =
        ((FileChooserUI) (uis.elementAt(0))).getFileView(a);
    for (int i = 1; i < uis.size(); i++) {
        ((FileChooserUI) (uis.elementAt(i))).getFileView(a);
    }
    return returnValue;
}
 
Example #24
Source File: MultiFileChooserUI.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Invokes the <code>getApproveButtonText</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public String getApproveButtonText(JFileChooser a) {
    String returnValue =
        ((FileChooserUI) (uis.elementAt(0))).getApproveButtonText(a);
    for (int i = 1; i < uis.size(); i++) {
        ((FileChooserUI) (uis.elementAt(i))).getApproveButtonText(a);
    }
    return returnValue;
}
 
Example #25
Source File: MultiFileChooserUI.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Invokes the <code>getDialogTitle</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public String getDialogTitle(JFileChooser a) {
    String returnValue =
        ((FileChooserUI) (uis.elementAt(0))).getDialogTitle(a);
    for (int i = 1; i < uis.size(); i++) {
        ((FileChooserUI) (uis.elementAt(i))).getDialogTitle(a);
    }
    return returnValue;
}
 
Example #26
Source File: MultiFileChooserUI.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Invokes the <code>getAcceptAllFileFilter</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public FileFilter getAcceptAllFileFilter(JFileChooser a) {
    FileFilter returnValue =
        ((FileChooserUI) (uis.elementAt(0))).getAcceptAllFileFilter(a);
    for (int i = 1; i < uis.size(); i++) {
        ((FileChooserUI) (uis.elementAt(i))).getAcceptAllFileFilter(a);
    }
    return returnValue;
}
 
Example #27
Source File: JFileChooser.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Creates and returns a new <code>JDialog</code> wrapping
 * <code>this</code> centered on the <code>parent</code>
 * in the <code>parent</code>'s frame.
 * This method can be overriden to further manipulate the dialog,
 * to disable resizing, set the location, etc. Example:
 * <pre>
 *     class MyFileChooser extends JFileChooser {
 *         protected JDialog createDialog(Component parent) throws HeadlessException {
 *             JDialog dialog = super.createDialog(parent);
 *             dialog.setLocation(300, 200);
 *             dialog.setResizable(false);
 *             return dialog;
 *         }
 *     }
 * </pre>
 *
 * @param   parent  the parent component of the dialog;
 *                  can be <code>null</code>
 * @return a new <code>JDialog</code> containing this instance
 * @exception HeadlessException if GraphicsEnvironment.isHeadless()
 * returns true.
 * @see java.awt.GraphicsEnvironment#isHeadless
 * @since 1.4
 */
protected JDialog createDialog(Component parent) throws HeadlessException {
    FileChooserUI ui = getUI();
    String title = ui.getDialogTitle(this);
    putClientProperty(AccessibleContext.ACCESSIBLE_DESCRIPTION_PROPERTY,
                      title);

    JDialog dialog;
    Window window = JOptionPane.getWindowForComponent(parent);
    if (window instanceof Frame) {
        dialog = new JDialog((Frame)window, title, true);
    } else {
        dialog = new JDialog((Dialog)window, title, true);
    }
    dialog.setComponentOrientation(this.getComponentOrientation());

    Container contentPane = dialog.getContentPane();
    contentPane.setLayout(new BorderLayout());
    contentPane.add(this, BorderLayout.CENTER);

    if (JDialog.isDefaultLookAndFeelDecorated()) {
        boolean supportsWindowDecorations =
        UIManager.getLookAndFeel().getSupportsWindowDecorations();
        if (supportsWindowDecorations) {
            dialog.getRootPane().setWindowDecorationStyle(JRootPane.FILE_CHOOSER_DIALOG);
        }
    }
    dialog.pack();
    dialog.setLocationRelativeTo(parent);

    return dialog;
}
 
Example #28
Source File: MultiFileChooserUI.java    From Java8CN with Apache License 2.0 5 votes vote down vote up
/**
 * Invokes the <code>getFileView</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public FileView getFileView(JFileChooser a) {
    FileView returnValue =
        ((FileChooserUI) (uis.elementAt(0))).getFileView(a);
    for (int i = 1; i < uis.size(); i++) {
        ((FileChooserUI) (uis.elementAt(i))).getFileView(a);
    }
    return returnValue;
}
 
Example #29
Source File: MultiFileChooserUI.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Invokes the <code>getDialogTitle</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public String getDialogTitle(JFileChooser a) {
    String returnValue =
        ((FileChooserUI) (uis.elementAt(0))).getDialogTitle(a);
    for (int i = 1; i < uis.size(); i++) {
        ((FileChooserUI) (uis.elementAt(i))).getDialogTitle(a);
    }
    return returnValue;
}
 
Example #30
Source File: MultiFileChooserUI.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Invokes the <code>getDialogTitle</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public String getDialogTitle(JFileChooser a) {
    String returnValue =
        ((FileChooserUI) (uis.elementAt(0))).getDialogTitle(a);
    for (int i = 1; i < uis.size(); i++) {
        ((FileChooserUI) (uis.elementAt(i))).getDialogTitle(a);
    }
    return returnValue;
}