Searched refs:FilePane (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsFileChooserUI.java70 private FilePane filePane;
157 private class WindowsFileChooserUIAccessor implements FilePane.FileChooserUIAccessor {
205 filePane = new FilePane(new WindowsFileChooserUIAccessor());
294 filePane.getViewTypeAction(FilePane.VIEWTYPE_LIST));
295 listViewMenuItem.setSelected(filePane.getViewType() == FilePane.VIEWTYPE_LIST);
300 filePane.getViewTypeAction(FilePane.VIEWTYPE_DETAILS));
301 detailsViewMenuItem.setSelected(filePane.getViewType() == FilePane.VIEWTYPE_DETAILS);
362 case FilePane.VIEWTYPE_LIST:
366 case FilePane.VIEWTYPE_DETAILS:
497 if (FilePane
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicFileChooserUI.java229 Action refreshAction = new UIAction(FilePane.ACTION_REFRESH) {
235 map.put(FilePane.ACTION_APPROVE_SELECTION, getApproveSelectionAction());
236 map.put(FilePane.ACTION_CANCEL, getCancelSelectionAction());
237 map.put(FilePane.ACTION_REFRESH, refreshAction);
238 map.put(FilePane.ACTION_CHANGE_TO_PARENT_DIRECTORY,
757 super(FilePane.ACTION_NEW_FOLDER);
810 putValue(Action.ACTION_COMMAND_KEY, FilePane.ACTION_CHANGE_TO_PARENT_DIRECTORY);
822 super(FilePane.ACTION_APPROVE_SELECTION);
1149 if (dir != null && FilePane.usesShellFolder(fc)) {
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DSynthFileChooserUIImpl.java71 private FilePane filePane;
142 private class SynthFileChooserUIAccessor implements FilePane.FileChooserUIAccessor {
233 filePane = new FilePane(new SynthFileChooserUIAccessor());
303 listViewButton.addActionListener(filePane.getViewTypeAction(FilePane.VIEWTYPE_LIST));
314 detailsViewButton.addActionListener(filePane.getViewTypeAction(FilePane.VIEWTYPE_DETAILS));
323 case FilePane.VIEWTYPE_LIST:
326 case FilePane.VIEWTYPE_DETAILS:
643 FilePane.addActionsToMap(map, filePane.getActions());
766 boolean useShellFolder = FilePane.usesShellFolder(chooser);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalFileChooserUI.java69 private FilePane filePane;
162 private class MetalFileChooserUIAccessor implements FilePane.FileChooserUIAccessor {
215 filePane = new FilePane(new MetalFileChooserUIAccessor());
322 listViewButton.addActionListener(filePane.getViewTypeAction(FilePane.VIEWTYPE_LIST));
334 detailsViewButton.addActionListener(filePane.getViewTypeAction(FilePane.VIEWTYPE_DETAILS));
343 case FilePane.VIEWTYPE_LIST:
347 case FilePane.VIEWTYPE_DETAILS:
508 FilePane.addActionsToMap(map, filePane.getActions());
940 boolean useShellFolder = FilePane.usesShellFolder(chooser);
/openjdk7/jdk/src/share/classes/sun/swing/
H A DFilePane.java61 public class FilePane extends JPanel implements PropertyChangeListener { class in inherits:JPanel,PropertyChangeListener
63 // and as keys in the action maps for FilePane and the corresponding UI classes
288 public FilePane(FileChooserUIAccessor fileChooserUIAccessor) { method in class:FilePane
466 * Fetches the command list for the FilePane. These commands
800 if (FilePane.this.getModel().renameFile(f, f2)) {
951 return FilePane.this.getModel().getElementAt(row);
1457 putValue(Action.ACTION_COMMAND_KEY, FilePane.ACTION_NEW_FOLDER);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKFileChooserUI.java47 import sun.swing.FilePane;
1179 super(FilePane.ACTION_NEW_FOLDER);
1245 super(FilePane.ACTION_EDIT_FILE_NAME);

Completed in 107 milliseconds