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

With MToolkit, Popup menu does not stay open after a triggering click

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Won't Fix
    • Icon: P4 P4
    • None
    • 5.0
    • client-libs
    • None
    • generic, sparc
    • generic, solaris_8



      Name: ynR10250 Date: 09/09/2003


      This is Unix-specific bug.
      Run the following test with AWT_TOOLKIT set to sun.awt.motif.MToolkit.
      In Tiger, on Solaris it is a default toolkit, and on Linux it may be
      forced.
      Click anywhere in the frame (press and release right mouse button
      quickly without drag). Popup menu will open and immediately
      close. Sometimes, not often, depending on the native events order,
      it will stay open.
      According to Java L&F guidelines, expected behavior of such a Popup
      is to stay open always after a triggering click.


      //-----------start test code-------------
      import java.awt.*;
      import java.awt.event.*;


      public class PopupTest {
          public PopupTest() {
              final Frame fr = new Frame();
              fr.setSize(300,300);
              fr.setLocation(300,300);
              fr.setVisible( true );

              final PopupMenu pom = new PopupMenu();
              pom.add("Bobok");
              pom.getItem(0).addActionListener( new ActionListener() {
                  public void actionPerformed( ActionEvent ae ) {
                      System.out.println("action bobok performed");
                  }
              });

              pom.add("Bobok, again");

              fr.add(pom);
              fr.addMouseListener ( new MouseAdapter() {
                  public void mousePressed( MouseEvent me ) {
                      pom.show( fr, me.getX(), me.getY());
                  }
                  public void mouseReleased( MouseEvent me ) {
                  }
                  public void mouseClicked( MouseEvent me ) {
                  }
                  public void mouseEntered( MouseEvent me ) {
                  }
                  public void mouseExited( MouseEvent me ) {
                  }
                  
              });
          }
          public static void main( String args[] ) {
              PopupTest prd = new PopupTest ();

          }
      }
      //-----------end test code---------------

      ======================================================================

            yan Yuri Nesterenko
            yan Yuri Nesterenko
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: