-
Bug
-
Resolution: Fixed
-
P2
-
6
-
b89
-
generic
-
generic
-
Verified
This is reproducible with XToolkit on Solaris and Linux platforms. Reproducible only with b85 PIT build.
When the Choice is placed at the cornor of the screen, such a way that the Choice popup appears right above the choice, an ItemEvent gets triggered when the Choice is clicked to show the popup. ItemEvent is triggered for the already selected item. The popup remains visible even after triggering the ItemEvent.
This could be a result of the fix for bug 6414552. The following testcase could be used to reproduce it.
import java.awt.*;
import java.awt.event.*;
public class ChoiceTest extends Frame implements ItemListener {
Choice ch = new Choice();
Panel p = new Panel ();
public ChoiceTest () {
super ("ChoiceTest");
for (int i = 0; i < 10; i++) {
ch.add("Choice item " + i);
}
ch.addItemListener(this);
p.add(ch);
add("South", p);
setSize(200, 200);
setVisible(true);
}
public void itemStateChanged (ItemEvent ie) {
System.out.println(ie);
}
public static void main (String args[]) {
ChoiceTest test = new ChoiceTest();
}
}
The testcase shows a frame with a Choice. Move the frame to the bottom right cornor of the screen in such a way that the choice appears at the cornor of the screen with popup appearing above the Choice. Click the Choice so that the popup items appears right under the mouse pointer. If itemStateChanged is triggered when the popup comes up, the bug is reproduced.
When the Choice is placed at the cornor of the screen, such a way that the Choice popup appears right above the choice, an ItemEvent gets triggered when the Choice is clicked to show the popup. ItemEvent is triggered for the already selected item. The popup remains visible even after triggering the ItemEvent.
This could be a result of the fix for bug 6414552. The following testcase could be used to reproduce it.
import java.awt.*;
import java.awt.event.*;
public class ChoiceTest extends Frame implements ItemListener {
Choice ch = new Choice();
Panel p = new Panel ();
public ChoiceTest () {
super ("ChoiceTest");
for (int i = 0; i < 10; i++) {
ch.add("Choice item " + i);
}
ch.addItemListener(this);
p.add(ch);
add("South", p);
setSize(200, 200);
setVisible(true);
}
public void itemStateChanged (ItemEvent ie) {
System.out.println(ie);
}
public static void main (String args[]) {
ChoiceTest test = new ChoiceTest();
}
}
The testcase shows a frame with a Choice. Move the frame to the bottom right cornor of the screen in such a way that the choice appears at the cornor of the screen with popup appearing above the Choice. Click the Choice so that the popup items appears right under the mouse pointer. If itemStateChanged is triggered when the popup comes up, the bug is reproduced.
- relates to
-
JDK-5044150 REGRESSION: java.awt.Choice closes immedeaitely if it extends beyond the screen
-
- Closed
-
-
JDK-6414552 REG: Choice drop-down appears at a wrong location when font size of the items are bigger, XToolkit
-
- Closed
-