Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4143620

When use JOptionPane,press enter key on any button always yields 0.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P4 P4
    • None
    • 1.2.0
    • client-libs



      Name: el35337 Date: 05/28/98


      Steps:
      1. run the following program.Use mouse to press "go"
         button. A modal dialog appears.
      2. Press 'Enter' key on the Keyboard. A value '0' is typed
         on the MS-DOS prompt window.
      3. Press the 'go' button again, the dialog appears again.
         This time use the 'Tab' key on the keyboard to move the focus
         to next button, and press 'Enter' key.
      4. A same value of '0' is printed on the MS-DOS prompt window again.
      Conclusion:
      The KeyEvent is not handled properly on JOptionPane.

      Source Code:
      import com.sun.java.swing.*;
      import java.awt.event.*;

      import java.awt.*;
      import java.lang.*;

      public class ProgExample extends JPanel
      implements ActionListener
      {
          JProgressBar bar;
          JButton go;
          Timer ticker;
          
          public ProgExample()
          {
              go = new JButton("Go");
              go.addActionListener(this);
              add(go);
          
              bar = new JProgressBar();
              bar.setMinimum(0);
              bar.setMaximum(100);
              bar.setValue(0);
              
              ticker = new Timer(20,this);
              ticker.setRepeats(true);
              ticker.stop();
          }
          
          public void actionPerformed(ActionEvent e)
          {
              if(e.getSource() == go)
              {
                  int result;
                  Object msg[];
                  Object options[];
                  
                  msg = new Object[2];
                  
                  msg[0] = "Current Load Progress";
                  msg[1] = bar;
                  
                  options = new Object[2];
                  
                  options[0] = "Cancel Load";
                  options[1] = "Leave";
                  
                  bar.setValue(0);
                  ticker.start();
                  
                  result = JOptionPane.showOptionDialog(this
                                               ,msg
                                               ,"Progress"
                                               ,JOptionPane.OK_CANCEL_OPTION
                                               ,JOptionPane.PLAIN_MESSAGE
                                               ,null
                                               ,options
                                               ,options[0]);
                  System.out.println(result);
                  ticker.stop();
              }
              else if(e.getSource() == ticker)
              {
                  int curProg = bar.getValue();
                  
                  if(curProg >= 99)
                  {
                      bar.setValue(100);
                      ticker.stop();
                      getToolkit().beep();
                  }
                  else
                  {
                      bar.setValue(curProg+1);
                  }
              }
          }
         
          public Dimension getPreferredSize()
          {
              return new Dimension(100, 60);
          }
          
          public static void main(String s[])
          {
              JFrame frame = new JFrame("Progress");
              ProgExample panel = new ProgExample();
              
              frame.setForeground(Color.black);
              frame.setBackground(Color.lightGray);
              frame.addWindowListener(new WindowCloser());
              frame.getContentPane().add(panel,"Center");
              
              frame.setSize(panel.getPreferredSize());
              frame.setVisible(true);
          }
      }

      class WindowCloser extends WindowAdapter
      {
          public void windowClosing(WindowEvent e)
          {
              Window win = e.getWindow();
              win.setVisible(false);
              System.exit(0);
          }
      }
      (Review ID: 32630)
      ======================================================================

            amfowler Anne Fowler (Inactive)
            elarsen Erik Larsen (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: