Lines Matching refs:fc

147         JFileChooser fc = getFileChooser();
151 if (!fc.isMultiSelectionEnabled()) {
155 int mode = fc.getFileSelectionMode();
205 public void ensureFileIsVisible(JFileChooser fc, File f) {
209 public void rescanCurrentDirectory(JFileChooser fc) {
221 public FileView getFileView(JFileChooser fc) {
367 public ListSelectionListener createListSelectionListener(JFileChooser fc) {
416 protected MouseListener createDoubleClickListener(JFileChooser fc, JList list) {
502 public void installComponents(JFileChooser fc) {
503 super.installComponents(fc);
505 boolean leftToRight = fc.getComponentOrientation().isLeftToRight();
507 fc.setLayout(new BorderLayout());
508 fc.setAlignmentX(JComponent.CENTER_ALIGNMENT);
541 fc.add(topButtonPanel, BorderLayout.NORTH);
550 fc.add(interior, BorderLayout.CENTER);
566 directoryComboBoxModel = createDirectoryComboBoxModel(fc);
632 JComponent accessory = fc.getAccessory();
658 File currentDirectory = fc.getCurrentDirectory();
707 fc.addPropertyChangeListener(filterComboBoxModel);
723 JButton cancelButton = getCancelButton(fc);
728 JButton approveButton = getApproveButton(fc);
735 if (fc.getControlButtonsAreShown()) {
736 fc.add(bottomButtonPanel, BorderLayout.SOUTH);
740 protected void installListeners(JFileChooser fc) {
741 super.installListeners(fc);
744 fc.addPropertyChangeListener(gtkFCPropertyChangeListener);
751 protected void uninstallListeners(JFileChooser fc) {
752 super.uninstallListeners(fc);
755 fc.removePropertyChangeListener(gtkFCPropertyChangeListener);
770 protected void installDefaults(JFileChooser fc) {
771 super.installDefaults(fc);
774 Boolean.TRUE.equals(fc.getClientProperty("GTKFileChooser.showDirectoryIcons"));
776 Boolean.TRUE.equals(fc.getClientProperty("GTKFileChooser.showFileIcons"));
779 protected void installIcons(JFileChooser fc) {
784 protected void installStrings(JFileChooser fc) {
785 super.installStrings(fc);
787 Locale l = fc.getLocale();
823 protected void uninstallStrings(JFileChooser fc) {
824 super.uninstallStrings(fc);
1080 protected DirectoryComboBoxModel createDirectoryComboBoxModel(JFileChooser fc) {
1185 JFileChooser fc = getFileChooser();
1186 File currentDirectory = fc.getCurrentDirectory();
1187 String dirName = JOptionPane.showInputDialog(fc,
1193 JOptionPane.showMessageDialog(fc,
1199 File newDir = fc.getFileSystemView().createFileObject
1202 JOptionPane.showMessageDialog(fc,
1207 fc.rescanCurrentDirectory();
1251 JFileChooser fc = getFileChooser();
1252 File currentDirectory = fc.getCurrentDirectory();
1254 (fc, new MessageFormat(renameFileDialogText).format
1260 File oldFile = fc.getFileSystemView().createFileObject
1262 File newFile = fc.getFileSystemView().createFileObject
1266 JOptionPane.showMessageDialog(fc,
1272 fc.rescanCurrentDirectory();