Skip to content

Commit d0c365a

Browse files
committedJul 25, 2022
8170794: [macosx] Error when using setDesktopManager on a JDesktopPane on MacOS X with Look and Feel Aqua
Reviewed-by: prr
1 parent 80dc6ce commit d0c365a

File tree

2 files changed

+106
-1
lines changed

2 files changed

+106
-1
lines changed
 

‎src/java.desktop/share/classes/javax/swing/RepaintManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@ public Image getVolatileOffscreenBuffer(Component c,
10851085

10861086
// If the window is non-opaque, it's double-buffered at peer's level
10871087
Window w = (c instanceof Window) ? (Window)c : SwingUtilities.getWindowAncestor(c);
1088-
if (!w.isOpaque()) {
1088+
if (w != null && !w.isOpaque()) {
10891089
Toolkit tk = Toolkit.getDefaultToolkit();
10901090
if ((tk instanceof SunToolkit) && (((SunToolkit)tk).needUpdateWindow())) {
10911091
return null;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
/*
2+
* Copyright (c) 2022, 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+
/* @test
25+
* @bug 8170794
26+
* @key headful
27+
* @summary Verifies iconifying internalframe after setting DesktopManager
28+
* does not return NPE
29+
* @run main TestDesktopManagerNPE
30+
*/
31+
32+
import java.awt.Dimension;
33+
import java.awt.Robot;
34+
import java.awt.Toolkit;
35+
import javax.swing.DefaultDesktopManager;
36+
import javax.swing.JInternalFrame;
37+
import javax.swing.JDesktopPane;
38+
import javax.swing.JFrame;
39+
import javax.swing.JMenu;
40+
import javax.swing.JMenuItem;
41+
import javax.swing.JMenuBar;
42+
import javax.swing.KeyStroke;
43+
import javax.swing.SwingUtilities;
44+
45+
public class TestDesktopManagerNPE {
46+
47+
static JDesktopPane desktop;
48+
static JInternalFrame internalFrame;
49+
static JFrame frame;
50+
51+
//Create a new internal frame.
52+
protected static void createFrame() {
53+
internalFrame = new JInternalFrame();
54+
internalFrame.setSize(300, 300);
55+
internalFrame.setLocation(30, 30);
56+
internalFrame.setVisible(true); //necessary as of 1.3
57+
desktop.add(internalFrame);
58+
try {
59+
internalFrame.setSelected(true);
60+
} catch (java.beans.PropertyVetoException e) {}
61+
}
62+
63+
/**
64+
* Create the GUI and show it. For thread safety,
65+
* this method should be invoked from the
66+
* event-dispatching thread.
67+
*/
68+
private static void createAndShowGUI() {
69+
JFrame.setDefaultLookAndFeelDecorated(true);
70+
71+
int inset = 50;
72+
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
73+
frame = new JFrame("Test");
74+
frame.setBounds(inset, inset,
75+
screenSize.width - inset*2,
76+
screenSize.height - inset*2);
77+
78+
//Set up the GUI.
79+
desktop = new JDesktopPane(); //a specialized layered pane
80+
81+
// If you add this line, iconification will fail
82+
desktop.setDesktopManager(new DefaultDesktopManager());
83+
84+
createFrame(); //create first "window"
85+
frame.setContentPane(desktop);
86+
//Display the window.
87+
frame.setVisible(true);
88+
}
89+
90+
public static void main(String[] args) throws Exception {
91+
try {
92+
SwingUtilities.invokeAndWait(() -> createAndShowGUI());
93+
Robot robot = new Robot();
94+
robot.delay(1000);
95+
internalFrame.setIcon(true);
96+
robot.delay(1000);
97+
} finally {
98+
SwingUtilities.invokeAndWait(() -> {
99+
if (frame != null) {
100+
frame.dispose();
101+
}
102+
});
103+
}
104+
}
105+
}

0 commit comments

Comments
 (0)
Please sign in to comment.