<AWT Dev> [9] Review Request: 8160270 dual-screen issue with java.awt.Choice

Sergey Bylokhov sergey.bylokhov at oracle.com
Thu Mar 16 16:44:56 UTC 2017


Hello,
Please review the fix for jdk9.

This bug was caused by the change in JDK8137571 where we started to use graphic configuration for each component to calculate the preferred size on the screen.
The problem is that in the code we had a few assumptions that the left-top corner of the screen is 0.0. Moreover for the Menu we do not update the GC when the window is moved to another screen(I’ll file a separate bug for this).

Fix description:
- Menu components now tries to take the graphics configuration from the frame.
- All calculations are updated to take into account that the left-top corner is screenBounds.x/y.
- The choice component now updates the GC of its popup when its own gc is updated.
- I intentionally do not reformat the change to simplify review.

I have started the jck/jtreg tests, they are still in progress I'll notify if some new issues will be found.

Bug: https://bugs.openjdk.java.net/browse/JDK-8160270
Webrev can be found at: http://cr.openjdk.java.net/~serb/8160270/webrev.00



More information about the awt-dev mailing list