1
1
/*
2
- * Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
21
21
* questions.
22
22
*/
23
23
24
- /*
25
- * @test
26
- * @bug 7093691
27
- * @summary Tests if JComboBox has correct font color when disabled/enabled
28
- * @run main/othervm -Dsun.java2d.uiScale=1 DisabledComboBoxFontTestAuto
29
- */
30
-
31
24
import java .awt .Color ;
32
25
import java .awt .Graphics2D ;
33
26
import java .awt .image .BufferedImage ;
44
37
45
38
import static java .awt .image .BufferedImage .TYPE_INT_ARGB ;
46
39
40
+ /*
41
+ * @test
42
+ * @bug 7093691 8310072
43
+ * @summary Tests if JComboBox has correct font color when disabled/enabled
44
+ * @key headful
45
+ * @run main/othervm -Dsun.java2d.uiScale=1 DisabledComboBoxFontTestAuto
46
+ */
47
+
47
48
public class DisabledComboBoxFontTestAuto {
48
49
private static JComboBox combo , combo2 ;
49
50
private static BufferedImage enabledImage , disabledImage , enabledImage2 , disabledImage2 ;
50
- private static Path testDir ;
51
51
private static String lafName ;
52
52
private static StringBuffer failingLafs ;
53
53
private static int COMBO_HEIGHT , COMBO_WIDTH , COMBO2_HEIGHT , COMBO2_WIDTH ;
54
54
55
55
private static void createCombo () {
56
56
combo = new JComboBox ();
57
- combo .addItem ("Simple JComboBox" );
57
+ combo .addItem ("\u2588 " .repeat (5 ));
58
+ combo .setFont (combo .getFont ().deriveFont (50.0f ));
58
59
combo .setRenderer (new DefaultListCellRenderer ());
59
60
combo2 = new JComboBox ();
60
- combo2 .addItem ("Simple JComboBox" );
61
+ combo2 .addItem ("\u2588 " .repeat (5 ));
62
+ combo2 .setFont (combo2 .getFont ().deriveFont (50.0f ));
61
63
COMBO_WIDTH = (int ) combo .getPreferredSize ().getWidth ();
62
64
COMBO_HEIGHT = (int ) combo .getPreferredSize ().getHeight ();
63
65
COMBO2_WIDTH = (int ) combo2 .getPreferredSize ().getWidth ();
@@ -90,53 +92,38 @@ private static void paintCombo() {
90
92
}
91
93
92
94
private static void testMethod () throws IOException {
93
- ImageIO .write (enabledImage , "png" , new File (testDir
94
- + "/" + lafName + "Enabled.png" ));
95
- ImageIO .write (disabledImage , "png" , new File (testDir
96
- + "/" + lafName + "Disabled.png" ));
97
- ImageIO .write (enabledImage2 , "png" , new File (testDir
98
- + "/" + lafName + "EnabledDLCR.png" ));
99
- ImageIO .write (disabledImage2 , "png" , new File (testDir
100
- + "/" + lafName + "DisabledDLCR.png" ));
101
-
102
- boolean isIdentical = true ;
103
95
Color eColor1 , eColor2 , dColor1 , dColor2 ;
96
+ Path testDir = Path .of (System .getProperty ("test.classes" , "." ));
104
97
105
98
// Use center line to compare RGB values
106
- int y = 10 ;
99
+ int y = enabledImage . getHeight () / 2 ;
107
100
for (int x = (enabledImage .getWidth () / 2 ) - 20 ;
108
101
x < (enabledImage .getWidth () / 2 ) + 20 ; x ++) {
109
- // Nimbus has a pixel offset in coordinates since Nimbus is 2px
110
- // smaller in width than other L&F's
111
- if (lafName .equals ("Nimbus" )) {
112
- eColor1 = new Color (enabledImage .getRGB (x + 1 , y ));
113
- eColor2 = new Color (enabledImage2 .getRGB (x , y ));
114
- dColor1 = new Color (disabledImage .getRGB (x + 1 , y ));
115
- dColor2 = new Color (disabledImage2 .getRGB (x , y ));
116
- } else {
117
- eColor1 = new Color (enabledImage .getRGB (x , y ));
118
- eColor2 = new Color (enabledImage2 .getRGB (x , y ));
119
- dColor1 = new Color (disabledImage .getRGB (x , y ));
120
- dColor2 = new Color (disabledImage2 .getRGB (x , y ));
121
- }
102
+ eColor1 = new Color (enabledImage .getRGB (x , y ));
103
+ eColor2 = new Color (enabledImage2 .getRGB (x , y ));
104
+ dColor1 = new Color (disabledImage .getRGB (x , y ));
105
+ dColor2 = new Color (disabledImage2 .getRGB (x , y ));
106
+
122
107
if ((!isColorMatching (eColor1 , eColor2 )) || (!isColorMatching (dColor1 , dColor2 ))) {
123
- isIdentical = false ;
124
- break ;
108
+ failingLafs .append (lafName + ", " );
109
+ ImageIO .write (enabledImage , "png" , new File (testDir
110
+ + "/" + lafName + "Enabled.png" ));
111
+ ImageIO .write (disabledImage , "png" , new File (testDir
112
+ + "/" + lafName + "Disabled.png" ));
113
+ ImageIO .write (enabledImage2 , "png" , new File (testDir
114
+ + "/" + lafName + "EnabledDLCR.png" ));
115
+ ImageIO .write (disabledImage2 , "png" , new File (testDir
116
+ + "/" + lafName + "DisabledDLCR.png" ));
117
+ return ;
125
118
}
126
119
}
127
-
128
- if (isIdentical ) {
129
- System .out .println ("PASSED" );
130
- } else {
131
- failingLafs .append (lafName + ", " );
132
- }
120
+ System .out .println ("Test Passed: " + lafName );
133
121
}
134
122
135
123
private static boolean isColorMatching (Color c1 , Color c2 ) {
136
124
if ((c1 .getRed () != c2 .getRed ())
137
- || (c1 .getBlue () != c2 .getBlue ())
138
- || (c1 .getGreen () != c2 .getGreen ())) {
139
-
125
+ || (c1 .getBlue () != c2 .getBlue ())
126
+ || (c1 .getGreen () != c2 .getGreen ())) {
140
127
System .out .println (lafName + " Enabled RGB failure: "
141
128
+ c1 .getRed () + ", "
142
129
+ c1 .getBlue () + ", "
@@ -163,7 +150,6 @@ private static void setLookAndFeel(UIManager.LookAndFeelInfo laf) {
163
150
public static void main (String [] args ) throws Exception {
164
151
lafName = "null" ;
165
152
failingLafs = new StringBuffer ();
166
- testDir = Path .of (System .getProperty ("test.classes" , "." ));
167
153
for (UIManager .LookAndFeelInfo laf : UIManager .getInstalledLookAndFeels ()) {
168
154
// Change Motif LAF name to avoid using slash in saved image file path
169
155
lafName = laf .getName ().equals ("CDE/Motif" ) ? "Motif" : laf .getName ();
5 commit comments
openjdk-notifier[bot] commentedon Apr 19, 2024
Review
Issues
mrserb commentedon May 30, 2024
/backport jdk22u
mrserb commentedon May 30, 2024
/backport jdk21u-dev
openjdk[bot] commentedon May 30, 2024
@mrserb the backport was successfully created on the branch backport-mrserb-eb60822a in my personal fork of openjdk/jdk21u-dev. To create a pull request with this backport targeting openjdk/jdk21u-dev:master, just click the following link:
➡️ Create pull request
The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:
If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk21u-dev:
openjdk[bot] commentedon May 30, 2024
@mrserb the backport was successfully created on the branch backport-mrserb-eb60822a in my personal fork of openjdk/jdk22u. To create a pull request with this backport targeting openjdk/jdk22u:master, just click the following link:
➡️ Create pull request
The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:
If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk22u: