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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
/*
* Copyright (c) 2008, 2024, 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
* @key headful
* @bug 6725409
* @requires (os.family == "windows")
* @summary Checks that JInternalFrame's system menu
* can be localized during run-time
* @modules java.desktop/com.sun.java.swing.plaf.windows
* @run main bug6725409
*/
import java.awt.Robot;
import javax.swing.JDesktopPane;
import javax.swing.JFrame;
import javax.swing.JInternalFrame;
import javax.swing.JMenuItem;
import javax.swing.JPopupMenu;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
import com.sun.java.swing.plaf.windows.WindowsClassicLookAndFeel;
import com.sun.java.swing.plaf.windows.WindowsInternalFrameTitlePane;
public class bug6725409 {
private JFrame frame;
private JInternalFrame iFrame;
private static TestTitlePane testTitlePane;
private static volatile boolean passed;
private static Robot robot;
public static void main(String[] args) throws Exception {
UIManager.setLookAndFeel(
new WindowsClassicLookAndFeel());
robot = new Robot();
final bug6725409 bug6725409 = new bug6725409();
try {
SwingUtilities.invokeAndWait(bug6725409::setupUIStep1);
sync();
SwingUtilities.invokeAndWait(bug6725409::setupUIStep2);
sync();
SwingUtilities.invokeAndWait(bug6725409::test);
sync();
bug6725409.checkResult();
} finally {
SwingUtilities.invokeAndWait(() -> {
if (bug6725409.frame != null) {
bug6725409.frame.dispose();
}
});
}
}
private void setupUIStep1() {
frame = new JFrame("bug6725409");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JDesktopPane desktop = new JDesktopPane();
iFrame = new JInternalFrame("Internal Frame", true, true, true, true);
iFrame.setSize(200, 100);
desktop.add(iFrame);
frame.add(desktop);
iFrame.setVisible(true);
frame.setSize(500, 300);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
private void setupUIStep2() {
UIManager.put("InternalFrameTitlePane.restoreButtonText",
"CUSTOM.restoreButtonText");
UIManager.put("InternalFrameTitlePane.moveButtonText",
"CUSTOM.moveButtonText");
UIManager.put("InternalFrameTitlePane.sizeButtonText",
"CUSTOM.sizeButtonText");
UIManager.put("InternalFrameTitlePane.minimizeButtonText",
"CUSTOM.minimizeButtonText");
UIManager.put("InternalFrameTitlePane.maximizeButtonText",
"CUSTOM.maximizeButtonText");
UIManager.put("InternalFrameTitlePane.closeButtonText",
"CUSTOM.closeButtonText");
SwingUtilities.updateComponentTreeUI(frame);
}
// The test depends on the order of the menu items in
// WindowsInternalFrameTitlePane.systemPopupMenu
private void test() {
testTitlePane = new TestTitlePane(iFrame);
passed = true;
checkMenuItemText(0, "CUSTOM.restoreButtonText");
checkMenuItemText(1, "CUSTOM.moveButtonText");
checkMenuItemText(2, "CUSTOM.sizeButtonText");
checkMenuItemText(3, "CUSTOM.minimizeButtonText");
checkMenuItemText(4, "CUSTOM.maximizeButtonText");
// Skip separator
checkMenuItemText(6, "CUSTOM.closeButtonText");
}
private void checkMenuItemText(int index, String text) {
JMenuItem menuItem = (JMenuItem)
testTitlePane.getSystemPopupMenu().getComponent(index);
if (!text.equals(menuItem.getText())) {
passed = false;
}
}
private void checkResult() {
if (passed) {
System.out.println("Test passed");
} else {
throw new RuntimeException("Unable to localize " +
"JInternalFrame's system menu during run-time");
}
}
private static void sync() {
robot.waitForIdle();
}
// Extend WindowsInternalFrameTitlePane to get access to systemPopupMenu
private class TestTitlePane extends WindowsInternalFrameTitlePane {
private JPopupMenu systemPopupMenu;
public TestTitlePane(JInternalFrame f) {
super(f);
}
public JPopupMenu getSystemPopupMenu() {
return systemPopupMenu;
}
protected void addSystemMenuItems(JPopupMenu menu) {
super.addSystemMenuItems(menu);
systemPopupMenu = menu;
}
}
}
|