-
Bug
-
Resolution: Won't Fix
-
P4
-
None
-
5.0
-
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---------------
======================================================================
- duplicates
-
JDK-4916223 PopupMenus do not remain showing after mouse click on Unix platforms
-
- Closed
-
- relates to
-
JDK-4791953 JCK1.4a-runtime api/java_awt/interactive/event/EventTests.html#EventTest0015 fai
-
- Closed
-