1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
/*
* Copyright (c) 2002, 2025, 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.
*/
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Frame;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Panel;
import java.awt.RenderingHints;
import java.awt.image.VolatileImage;
import java.lang.reflect.InvocationTargetException;
/*
* @test
* @bug 4505650
* @summary Check that you can render solid text after doing XOR mode
* @library /java/awt/regtesthelpers
* @build PassFailJFrame
* @run main/manual TextAfterXor
*/
public class TextAfterXor extends Panel {
public static final int TESTW = 300;
public static final int TESTH = 100;
static String INSTRUCTIONS = """
In the window called "Text After XOR Test" there should be two
composite components, at the bottom of each component the green text
"Test passes if this is green!" should be visible.
On the top component this text should be green on all platforms.
On the bottom component it is possible that on non-Windows
platforms text can be of other color or not visible at all.
That does not constitute a problem.
So if platform is Windows and green text appears twice or on any
other platform green text appears at least once press "Pass",
otherwise press "Fail".
""";
VolatileImage vimg;
public void paint(Graphics g) {
render(g);
g.drawString("(Drawing to screen)", 10, 60);
if (vimg == null) {
vimg = createVolatileImage(TESTW, TESTH);
}
do {
vimg.validate(null);
Graphics g2 = vimg.getGraphics();
render(g2);
String not = vimg.getCapabilities().isAccelerated() ? "" : "not ";
g2.drawString("Image was " + not + "accelerated", 10, 55);
g2.drawString("(only matters on Windows)", 10, 65);
g2.dispose();
g.drawImage(vimg, 0, TESTH, null);
} while (vimg.contentsLost());
}
public void render(Graphics g) {
g.setColor(Color.black);
g.fillRect(0, 0, TESTW, TESTH);
g.setColor(Color.white);
g.fillRect(5, 5, TESTW-10, TESTH-10);
g.setColor(Color.black);
g.drawString("Test only passes if green string appears", 10, 20);
g.setColor(Color.white);
g.setXORMode(Color.blue);
g.drawRect(30, 30, 10, 10);
g.setPaintMode();
g.setColor(Color.green);
((Graphics2D) g).setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING,
RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
g.drawString("Test passes if this is green!", 10, 80);
g.setColor(Color.black);
}
public Dimension getPreferredSize() {
return new Dimension(TESTW, TESTH*2);
}
public static Frame createFrame() {
Frame f = new Frame("Text After XOR Test");
f.add(new TextAfterXor());
f.pack();
return f;
}
public static void main(String[] args) throws InterruptedException,
InvocationTargetException {
PassFailJFrame.builder()
.title("Text After XOR Instructions")
.instructions(INSTRUCTIONS)
.testUI(TextAfterXor::createFrame)
.build()
.awaitAndCheck();
}
}
|