60713463c7
Reviewed-by: honkar, prr
72 lines
2.6 KiB
Java
72 lines
2.6 KiB
Java
/*
|
|
* Copyright (c) 2003, 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.
|
|
*/
|
|
|
|
import java.awt.Dialog;
|
|
import java.awt.Frame;
|
|
|
|
/*
|
|
* @test
|
|
* @bug 4964237
|
|
* @requires (os.family == "windows")
|
|
* @summary Win: Changing theme changes java dialogs title icon
|
|
* @library /java/awt/regtesthelpers
|
|
* @build PassFailJFrame
|
|
* @run main/manual DefaultIconTest
|
|
*/
|
|
|
|
public class DefaultIconTest {
|
|
static String instructions = """
|
|
This test shows frame and two dialogs
|
|
Change windows theme. Resizable dialog should retain default icon
|
|
Non-resizable dialog should retain no icon
|
|
Press PASS if icons look correct, FAIL otherwise
|
|
""";
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
PassFailJFrame.builder()
|
|
.title("ShownModalDialogSerializationTest Instructions")
|
|
.instructions(instructions)
|
|
.testTimeOut(5)
|
|
.rows(10)
|
|
.columns(35)
|
|
.testUI(DefaultIconTest::createGUIs)
|
|
.build()
|
|
.awaitAndCheck();
|
|
}
|
|
|
|
public static Frame createGUIs() {
|
|
Frame f = new Frame("DefaultIconTest");
|
|
f.setSize(200, 100);
|
|
Dialog d1 = new Dialog(f, "Resizable Dialog, should show default icon");
|
|
d1.setSize(200, 100);
|
|
d1.setVisible(true);
|
|
d1.setLocation(0, 150);
|
|
Dialog d2 = new Dialog(f, "Non-resizable dialog, should have no icon");
|
|
d2.setSize(200, 100);
|
|
d2.setVisible(true);
|
|
d2.setResizable(false);
|
|
d2.setLocation(0, 300);
|
|
return f;
|
|
}
|
|
}
|