|
| 1 | +/* |
| 2 | + * Copyright (c) 2001, 2024, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | + |
| 24 | +import java.awt.Color; |
| 25 | +import java.awt.Dimension; |
| 26 | +import java.awt.Font; |
| 27 | +import java.awt.Graphics; |
| 28 | +import java.awt.Graphics2D; |
| 29 | +import java.awt.font.FontRenderContext; |
| 30 | +import java.awt.font.TextLayout; |
| 31 | + |
| 32 | +import javax.swing.JPanel; |
| 33 | + |
| 34 | +/* |
| 35 | + * @test |
| 36 | + * @bug 4427483 |
| 37 | + * @summary Arabic text followed by newline should have no missing glyphs |
| 38 | + * @library /java/awt/regtesthelpers |
| 39 | + * @build PassFailJFrame |
| 40 | + * @run main/manual ArabicBox |
| 41 | + */ |
| 42 | +public final class ArabicBox { |
| 43 | + |
| 44 | + private static final String TEXT = |
| 45 | + "\u0627\u0644\u0639\u0631\u0628\u064A\u0629\n"; |
| 46 | + |
| 47 | + private static final String FONT_NAME = Font.DIALOG; |
| 48 | + |
| 49 | + private static final String INSTRUCTIONS = """ |
| 50 | + In the below panel, you should see the following text: |
| 51 | +
|
| 52 | + """ |
| 53 | + + TEXT + """ |
| 54 | + (It's \u2018Arabic\u2019 in Arabic.) |
| 55 | +
|
| 56 | + If there are no 'box glyphs' for missing glyphs, |
| 57 | + press Pass; otherwise, press Fail."""; |
| 58 | + |
| 59 | + public static void main(String[] args) throws Exception { |
| 60 | + final Font font = new Font(FONT_NAME, Font.PLAIN, 24); |
| 61 | + System.out.println("asked for " + FONT_NAME + " and got: " + font.getFontName()); |
| 62 | + |
| 63 | + PassFailJFrame.builder() |
| 64 | + .title("Arabic Box") |
| 65 | + .instructions(INSTRUCTIONS) |
| 66 | + .rows(7) |
| 67 | + .columns(40) |
| 68 | + .splitUIBottom(() -> createPanel(font)) |
| 69 | + .build() |
| 70 | + .awaitAndCheck(); |
| 71 | + } |
| 72 | + |
| 73 | + private static JPanel createPanel(Font font) { |
| 74 | + return new TextPanel(font); |
| 75 | + } |
| 76 | + |
| 77 | + private static final class TextPanel extends JPanel { |
| 78 | + private TextLayout layout; |
| 79 | + |
| 80 | + private TextPanel(Font font) { |
| 81 | + setForeground(Color.black); |
| 82 | + setBackground(Color.white); |
| 83 | + setFont(font); |
| 84 | + setPreferredSize(new Dimension(300, 150)); |
| 85 | + } |
| 86 | + |
| 87 | + @Override |
| 88 | + public void paint(Graphics g) { |
| 89 | + super.paint(g); |
| 90 | + Graphics2D g2d = (Graphics2D)g; |
| 91 | + if (layout == null) { |
| 92 | + Font font = g2d.getFont(); |
| 93 | + FontRenderContext frc = g2d.getFontRenderContext(); |
| 94 | + |
| 95 | + layout = new TextLayout(TEXT, font, frc); |
| 96 | + System.out.println(layout.getBounds()); |
| 97 | + } |
| 98 | + |
| 99 | + layout.draw(g2d, 10, 50); |
| 100 | + g2d.drawString(TEXT, 10, 100); |
| 101 | + } |
| 102 | + } |
| 103 | +} |
0 commit comments