AWT FileDialog filename copy/paste keystrokes?










0















I don't normally write java GUI apps, but I needed a simple utility and I managed to write it using Swing and AWT. The utility needs to open and save files, and it's mainly used on Macos. Apple recommends using AWT's FileDialog instead of the Swing file chooser because FileDialog acts more like the native Macos file dialog. So that's what I did.



The finished utility works fine, except for one thing that I haven't been able to resolve. The dialog for saving a file includes a text box to type in a filename. Right-clicking on the text box reveals a menu with copy and paste options. But the associated keystrokes (Cmd-C, Cmd-V) don't do anything.



The following program demonstrates the problem:



import java.awt.BorderLayout;
import java.awt.FileDialog;
import java.awt.Frame;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;

public class Scratch extends JPanel implements ActionListener
private static final long serialVersionUID = 1L;
JButton saveButton;
FileDialog fd;

public Scratch(Frame aFrame)
super(new BorderLayout());
fd = new FileDialog(aFrame, "Save", FileDialog.SAVE);
saveButton = new JButton("Save a File...");
saveButton.addActionListener(this);
this.add(saveButton);


public void actionPerformed(ActionEvent e)
if (e.getSource() == saveButton)
fd.setVisible(true);
String file = fd.getFile();
System.out.println(file);



private static void createAndShowGUI()
JFrame frame = new JFrame("Scratch");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new Scratch(frame));
frame.pack();
frame.setVisible(true);


public static void main(String args)
SwingUtilities.invokeLater(new Runnable()
public void run()
createAndShowGUI();

);




When you run it it opens a window with a save button. Clicking the button opens a FileDialog with a "Save as" field. You can type into the field, and you can right-click on the field and select "copy" or "paste" from the popup menu. But you can't use Cmd-V to paste into the field--there don't seem to be any keystrokes bound to the copy or paste actions.



Is there a straightforward way to bind keystrokes to the filename box inside the FileDialog?










share|improve this question


























    0















    I don't normally write java GUI apps, but I needed a simple utility and I managed to write it using Swing and AWT. The utility needs to open and save files, and it's mainly used on Macos. Apple recommends using AWT's FileDialog instead of the Swing file chooser because FileDialog acts more like the native Macos file dialog. So that's what I did.



    The finished utility works fine, except for one thing that I haven't been able to resolve. The dialog for saving a file includes a text box to type in a filename. Right-clicking on the text box reveals a menu with copy and paste options. But the associated keystrokes (Cmd-C, Cmd-V) don't do anything.



    The following program demonstrates the problem:



    import java.awt.BorderLayout;
    import java.awt.FileDialog;
    import java.awt.Frame;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;

    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;

    public class Scratch extends JPanel implements ActionListener
    private static final long serialVersionUID = 1L;
    JButton saveButton;
    FileDialog fd;

    public Scratch(Frame aFrame)
    super(new BorderLayout());
    fd = new FileDialog(aFrame, "Save", FileDialog.SAVE);
    saveButton = new JButton("Save a File...");
    saveButton.addActionListener(this);
    this.add(saveButton);


    public void actionPerformed(ActionEvent e)
    if (e.getSource() == saveButton)
    fd.setVisible(true);
    String file = fd.getFile();
    System.out.println(file);



    private static void createAndShowGUI()
    JFrame frame = new JFrame("Scratch");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.add(new Scratch(frame));
    frame.pack();
    frame.setVisible(true);


    public static void main(String args)
    SwingUtilities.invokeLater(new Runnable()
    public void run()
    createAndShowGUI();

    );




    When you run it it opens a window with a save button. Clicking the button opens a FileDialog with a "Save as" field. You can type into the field, and you can right-click on the field and select "copy" or "paste" from the popup menu. But you can't use Cmd-V to paste into the field--there don't seem to be any keystrokes bound to the copy or paste actions.



    Is there a straightforward way to bind keystrokes to the filename box inside the FileDialog?










    share|improve this question
























      0












      0








      0








      I don't normally write java GUI apps, but I needed a simple utility and I managed to write it using Swing and AWT. The utility needs to open and save files, and it's mainly used on Macos. Apple recommends using AWT's FileDialog instead of the Swing file chooser because FileDialog acts more like the native Macos file dialog. So that's what I did.



      The finished utility works fine, except for one thing that I haven't been able to resolve. The dialog for saving a file includes a text box to type in a filename. Right-clicking on the text box reveals a menu with copy and paste options. But the associated keystrokes (Cmd-C, Cmd-V) don't do anything.



      The following program demonstrates the problem:



      import java.awt.BorderLayout;
      import java.awt.FileDialog;
      import java.awt.Frame;
      import java.awt.event.ActionEvent;
      import java.awt.event.ActionListener;

      import javax.swing.JButton;
      import javax.swing.JFrame;
      import javax.swing.JPanel;
      import javax.swing.SwingUtilities;

      public class Scratch extends JPanel implements ActionListener
      private static final long serialVersionUID = 1L;
      JButton saveButton;
      FileDialog fd;

      public Scratch(Frame aFrame)
      super(new BorderLayout());
      fd = new FileDialog(aFrame, "Save", FileDialog.SAVE);
      saveButton = new JButton("Save a File...");
      saveButton.addActionListener(this);
      this.add(saveButton);


      public void actionPerformed(ActionEvent e)
      if (e.getSource() == saveButton)
      fd.setVisible(true);
      String file = fd.getFile();
      System.out.println(file);



      private static void createAndShowGUI()
      JFrame frame = new JFrame("Scratch");
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      frame.add(new Scratch(frame));
      frame.pack();
      frame.setVisible(true);


      public static void main(String args)
      SwingUtilities.invokeLater(new Runnable()
      public void run()
      createAndShowGUI();

      );




      When you run it it opens a window with a save button. Clicking the button opens a FileDialog with a "Save as" field. You can type into the field, and you can right-click on the field and select "copy" or "paste" from the popup menu. But you can't use Cmd-V to paste into the field--there don't seem to be any keystrokes bound to the copy or paste actions.



      Is there a straightforward way to bind keystrokes to the filename box inside the FileDialog?










      share|improve this question














      I don't normally write java GUI apps, but I needed a simple utility and I managed to write it using Swing and AWT. The utility needs to open and save files, and it's mainly used on Macos. Apple recommends using AWT's FileDialog instead of the Swing file chooser because FileDialog acts more like the native Macos file dialog. So that's what I did.



      The finished utility works fine, except for one thing that I haven't been able to resolve. The dialog for saving a file includes a text box to type in a filename. Right-clicking on the text box reveals a menu with copy and paste options. But the associated keystrokes (Cmd-C, Cmd-V) don't do anything.



      The following program demonstrates the problem:



      import java.awt.BorderLayout;
      import java.awt.FileDialog;
      import java.awt.Frame;
      import java.awt.event.ActionEvent;
      import java.awt.event.ActionListener;

      import javax.swing.JButton;
      import javax.swing.JFrame;
      import javax.swing.JPanel;
      import javax.swing.SwingUtilities;

      public class Scratch extends JPanel implements ActionListener
      private static final long serialVersionUID = 1L;
      JButton saveButton;
      FileDialog fd;

      public Scratch(Frame aFrame)
      super(new BorderLayout());
      fd = new FileDialog(aFrame, "Save", FileDialog.SAVE);
      saveButton = new JButton("Save a File...");
      saveButton.addActionListener(this);
      this.add(saveButton);


      public void actionPerformed(ActionEvent e)
      if (e.getSource() == saveButton)
      fd.setVisible(true);
      String file = fd.getFile();
      System.out.println(file);



      private static void createAndShowGUI()
      JFrame frame = new JFrame("Scratch");
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      frame.add(new Scratch(frame));
      frame.pack();
      frame.setVisible(true);


      public static void main(String args)
      SwingUtilities.invokeLater(new Runnable()
      public void run()
      createAndShowGUI();

      );




      When you run it it opens a window with a save button. Clicking the button opens a FileDialog with a "Save as" field. You can type into the field, and you can right-click on the field and select "copy" or "paste" from the popup menu. But you can't use Cmd-V to paste into the field--there don't seem to be any keystrokes bound to the copy or paste actions.



      Is there a straightforward way to bind keystrokes to the filename box inside the FileDialog?







      java macos awt






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 14 '18 at 22:29









      KensterKenster

      13.5k105070




      13.5k105070






















          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53309692%2fawt-filedialog-filename-copy-paste-keystrokes%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53309692%2fawt-filedialog-filename-copy-paste-keystrokes%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Top Tejano songwriter Luis Silva dead of heart attack at 64

          ReactJS Fetched API data displays live - need Data displayed static

          政党