1/*
2 * Copyright (c) 2012, 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/*
25 * Portions Copyright (c) 2012 IBM Corporation
26 */
27
28/*
29 * @test
30 * @bug 4310381 8075918
31 * @summary Text in multi-row/col JTabbedPane tabs can be truncated/clipped
32 * @author Charles Lee
33   @run applet/manual=yesno bug4310381.html
34 */
35
36
37import javax.swing.*;
38import java.awt.*;
39import java.lang.reflect.InvocationTargetException;
40
41public class bug4310381 extends JApplet {
42    public static void main(String[] args) throws Exception {
43        SwingUtilities.invokeLater(new Runnable() {
44            public void run() {
45                JFrame frame = new JFrame();
46
47                frame.setContentPane(createContentPane());
48                frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
49                frame.setSize(150, 200);
50                frame.setLocationRelativeTo(null);
51
52                frame.setVisible(true);
53
54            }
55        });
56    }
57
58    @Override
59    public void init() {
60        try {
61            SwingUtilities.invokeAndWait(new Runnable() {
62                @Override
63                public void run() {
64                    setContentPane(createContentPane());
65                }
66            });
67        } catch (InterruptedException | InvocationTargetException e) {
68            throw new RuntimeException(e);
69        }
70    }
71
72    private static Container createContentPane() {
73        JTabbedPane tab = new JTabbedPane();
74        String a2z = "abcdefghijklmnopqrstuvwxyz";
75
76        tab.addTab("0" + a2z + a2z, new JLabel("0"));
77        tab.addTab("1" + a2z, new JLabel("1" + a2z));
78        tab.addTab("2" + a2z, new JLabel("2" + a2z));
79        tab.addTab("3", new JLabel("3" + a2z)); // The last tab in Metal isn't truncated, that's ok
80
81        return tab;
82    }
83}
84