VAqua.src.org.violetlib.aqua.fc.FileChooserView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaqua Show documentation
Show all versions of vaqua Show documentation
An improved native Swing look and feel for macOS
The newest version!
/*
* Copyright (c) 2014-2015 Alan Snyder.
* All rights reserved.
*
* You may not use, copy or modify this file, except in compliance with the license agreement. For details see
* accompanying license terms.
*/
package org.violetlib.aqua.fc;
import javax.swing.event.ChangeListener;
import javax.swing.tree.TreePath;
import java.util.List;
/**
* The common methods of the file chooser views (list and browser).
*/
public interface FileChooserView {
void setActive(boolean b);
void setModel(SubtreeTreeModel m);
void setFileRenderer(GenericCellRenderer r);
void setMultipleSelection(boolean b);
void setSelection(TreePath path);
void setSelection(List paths);
List getSelection();
void ensurePathIsVisible(TreePath path);
void ensureSelectionIsVisible();
/**
* Add a listener to be called when the selection changes.
*/
void addSelectionChangeListener(ChangeListener l);
/**
* Add a listener to be called when the user selects a file or directory in a way
* that has an effect beyond the view.
*/
void addSelectListener(SelectListener l);
interface SelectListener {
void select(TreePath path);
}
/**
* Update the view in response to a change in the file chooser configuration.
*/
void reconfigure();
boolean requestFocusInWindow();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy