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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
|
/*
* Copyright (c) 2001, 2025, 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.Button;
import java.awt.Color;
import java.awt.Dialog;
import java.awt.Dimension;
import java.awt.Frame;
import java.awt.GraphicsConfiguration;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;
import java.awt.GridLayout;
import java.awt.Label;
import java.awt.Panel;
import java.awt.Point;
import java.awt.ScrollPane;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.WindowConstants;
import jtreg.SkippedException;
/*
* @test
* @bug 4368500
* @key multimon
* @summary Dialog needs a constructor with GraphicsConfiguration
* @library /java/awt/regtesthelpers /test/lib
* @build PassFailJFrame
* @run main/manual DialogTest
*/
public class DialogTest {
static GraphicsDevice[] gds;
private static Frame f;
private static Frame dummyFrame = new Frame();
private static Dialog dummyDialog = new Dialog(dummyFrame);
public static void main(String[] args) throws Exception {
gds = GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices();
if (gds.length < 2) {
throw new SkippedException("You have only one monitor in your system" +
" - test skipped");
}
String INSTRUCTIONS = """
This test tests the multiscreen functionality of Dialogs and JDialogs.
You should see the message "X screens detected", where X
is the number of screens on your system. If X is incorrect, press Fail.
In the test window, there are a list of buttons representing each
type of dialog for each screen.
If there aren't buttons for every screen in your system, press Fail.
Press each button, and the indicated type of dialog should appear
on the indicated screen.
Modal dialogs should not allow to click on the Instructions or
DialogTest windows.
The buttons turn yellow once they have been pressed, to keep track
of test progress.
If all Dialogs appear correctly, press Pass.
If Dialogs appear on the wrong screen or don't behave in
proper modality, press Fail.""";
PassFailJFrame.builder()
.instructions(INSTRUCTIONS)
.columns(40)
.logArea(5)
.testUI(DialogTest::init)
.build()
.awaitAndCheck();
}
public static Frame init() {
PassFailJFrame.log(gds.length + " screens detected.");
f = new Frame("DialogTest UI");
f.setSize(400, 400);
MyScrollPane sp = new MyScrollPane();
Panel p = new Panel();
p.setLayout(new GridLayout(0, 1));
for (int i = 0; i < gds.length; i++) {
Button btn;
//screen # , modal, frame-owned, swing
btn = new MyButton(new DialogInfo(i, false, false, false));
p.add(btn);
btn = new MyButton(new DialogInfo(i, true, false, false));
p.add(btn);
btn = new MyButton(new DialogInfo(i, false, true, false));
p.add(btn);
btn = new MyButton(new DialogInfo(i, true, true, false));
p.add(btn);
btn = new MyButton(new DialogInfo(i, false, false, true));
p.add(btn);
btn = new MyButton(new DialogInfo(i, true, false, true));
p.add(btn);
btn = new MyButton(new DialogInfo(i, false, true, true));
p.add(btn);
btn = new MyButton(new DialogInfo(i, true, true, true));
p.add(btn);
}
sp.add(p);
f.add(sp);
return f;
}
static class MyScrollPane extends ScrollPane {
@Override
public Dimension getPreferredSize() {
return f.getSize();
}
}
static class MyButton extends Button {
public MyButton(DialogInfo info) {
setLabel(info.toString());
addActionListener(new PutupDialog(info));
}
}
static class PutupDialog implements ActionListener {
DialogInfo info;
public PutupDialog(DialogInfo info) {
this.info = info;
}
@Override
public void actionPerformed(ActionEvent e) {
((Button) (e.getSource())).setBackground(Color.yellow);
Dialog d = info.createDialog();
d.show();
}
}
static class DialogInfo {
int num;
boolean modal;
boolean frameOwned;
boolean swing;
public DialogInfo(int num, boolean modal, boolean frameOwned, boolean swing) {
this.num = num;
this.modal = modal;
this.frameOwned = frameOwned;
this.swing = swing;
}
public Dialog createDialog() {
GraphicsConfiguration gc = gds[num].getDefaultConfiguration();
Dialog d;
if (swing) {
if (frameOwned) {
d = new JDialog(dummyFrame, toString(), modal, gc);
} else {
d = new JDialog(dummyDialog, toString(), modal, gc);
}
((JDialog) d).setDefaultCloseOperation(WindowConstants.HIDE_ON_CLOSE);
if (modal) {
((JDialog) d).getContentPane().add(new JLabel("Check that I am modal!"));
}
} else {
if (frameOwned) {
d = new Dialog(dummyFrame, toString(), modal, gc);
} else {
d = new Dialog(dummyDialog, toString(), modal, gc);
}
d.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
e.getComponent().hide();
}
});
if (modal) {
d.add(new Label("Check that I am modal!"));
}
}
d.setLocation(new Point((int) (gc.getBounds().getX() + 20)
, (int) (gc.getBounds().getY() + 20)));
d.setSize(300, 100);
return d;
}
public String toString() {
return "Screen " + num + (frameOwned ? " Frame-owned" : " Dialog-owned")
+ (modal ? " modal " : " non-modal ")
+ (swing ? "JDialog" : "Dialog");
}
}
}
|