8058704: Nimbus does not honor JTextPane background color

6789980: JEditorPane background color not honored with Nimbus L&F

Reviewed-by: aivanov, serb
This commit is contained in:
Prasanta Sadhukhan 2021-08-13 05:12:59 +00:00
parent 020aec5318
commit 0c4be76f7f
2 changed files with 114 additions and 2 deletions

View File

@ -25751,7 +25751,7 @@
<visible>true</visible>
<shapes>
<rectangle x1="0.0" x2="100.0" y1="0.0" y2="30.0" rounding="0.0">
<matte red="255" green="255" blue="255" alpha="255" uiDefaultParentName="nimbusLightBackground" hueOffset="0.0" saturationOffset="0.0" brightnessOffset="0.0" alphaOffset="0"/>
<matte red="255" green="255" blue="255" alpha="255" componentPropertyName="background" uiDefaultParentName="nimbusLightBackground" hueOffset="0.0" saturationOffset="0.0" brightnessOffset="0.0" alphaOffset="0"/>
<paintPoints x1="0.25" y1="0.0" x2="0.2" y2="0.1"/>
</rectangle>
</shapes>
@ -25857,7 +25857,7 @@
<visible>true</visible>
<shapes>
<rectangle x1="0.0" x2="100.0" y1="0.0" y2="30.0" rounding="0.0">
<matte red="255" green="255" blue="255" alpha="255" uiDefaultParentName="nimbusLightBackground" hueOffset="0.0" saturationOffset="0.0" brightnessOffset="0.0" alphaOffset="0"/>
<matte red="255" green="255" blue="255" alpha="255" componentPropertyName="background" uiDefaultParentName="nimbusLightBackground" hueOffset="0.0" saturationOffset="0.0" brightnessOffset="0.0" alphaOffset="0"/>
<paintPoints x1="0.25" y1="0.0" x2="0.2" y2="0.1"/>
</rectangle>
</shapes>

View File

@ -0,0 +1,112 @@
/*
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 8058704 6789980
* @key headful
* @summary Verifies if Nimbus honor JTextPane and JEditorPane background color
* @run main TestNimbusBGColor
*/
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Point;
import java.awt.Rectangle;
import java.awt.Robot;
import javax.swing.JFrame;
import javax.swing.JTextPane;
import javax.swing.JEditorPane;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
import javax.swing.text.JTextComponent;
public class TestNimbusBGColor {
static JFrame frame;
static volatile Point pt;
static volatile Rectangle bounds;
static Robot robot;
public static void main(String[] args) throws Exception {
robot = new Robot();
testTextPane();
testEditorPane();
}
private interface ComponentCreator<T extends JTextComponent> {
T createComponent();
}
private static void testTextPane() throws Exception {
testComponent(JTextPane::new);
}
private static void testEditorPane() throws Exception {
testComponent(() -> {
JEditorPane ep = new JEditorPane();
ep.setContentType("text/plain");
return ep;
});
}
private static void testComponent(ComponentCreator<? extends JTextComponent> creator)
throws Exception {
try {
SwingUtilities.invokeAndWait(() -> {
try {
UIManager.setLookAndFeel("javax.swing.plaf.nimbus.NimbusLookAndFeel");
} catch (Exception checkedExceptionsPleaseDie) {
throw new RuntimeException(checkedExceptionsPleaseDie);
}
JTextComponent tc = creator.createComponent();
tc.setEditable(false);
tc.setForeground(Color.GREEN);
tc.setBackground(Color.RED);
tc.setText("This text should be green on red");
frame = new JFrame(tc.getClass().getName());
frame.setDefaultCloseOperation(frame.DISPOSE_ON_CLOSE);
frame.add(tc);
frame.setSize(new Dimension(480, 360));
frame.setLocationRelativeTo(null);
frame.setVisible(true);
});
robot.waitForIdle();
robot.delay(1000);
SwingUtilities.invokeAndWait(() -> {
pt = frame.getLocationOnScreen();
bounds = frame.getBounds();
});
if (!(robot.getPixelColor(pt.x + bounds.width/2,
pt.y + bounds.height/2)
.equals(Color.RED))) {
throw new RuntimeException("bg Color not same as the color being set");
}
} finally {
SwingUtilities.invokeAndWait(() -> {
if (frame != null) {
frame.dispose();
}
});
}
}
}